Sha256: e355bcfebce6037d6cf8a7f976ac33da3f953ffd25f67e33826083b19bbf234a
Contents?: true
Size: 940 Bytes
Versions: 11
Compression:
Stored size: 940 Bytes
Contents
module LibMsPack module MsOab class MsoabCompressor < FFI::Struct layout({ :compress => callback([ :pointer, :string, :string ], :int), :compress_incremental => callback([ :pointer, :string, :string, :string ], :int) }) def compress self[:compress] end def compress_incremental self[:compress_incremental] end end class MsoabDecompressor < FFI::Struct layout({ :decompress => callback([ :pointer, :string, :string ], :int), :decompress_incremental => callback([ :pointer, :string, :string, :string ], :int) }) def decompress self[:decompress] end def decompress_incremental self[:decompress_incremental] end end end end
Version data entries
11 entries across 11 versions & 2 rubygems