module Ole::Types

The Types module contains all the serialization and deserialization code for standard ole types.

It also defines all the variant type constants, and symbolic names.

Constants

FROM_UTF16
TO_UTF16

Public Class Methods

load_guid(str) click to toggle source

deprecated aliases, kept mostly for the benefit of ruby-msg, until i release a new version.

# File lib/ole/types/base.rb, line 271
def self.load_guid str
  Variant.load VT_CLSID, str
end
load_time(str) click to toggle source
# File lib/ole/types/base.rb, line 275
def self.load_time str
  Variant.load VT_FILETIME, str
end