Flowdock
method

create

Importance_1
v2_1_10 - Show latest stable - 0 notes - Class: CStructBuilder
create(klass, types, members) public

Construct a new class given a C:

  • class klass (CUnion, CStruct, or other that provide an #entity_class)

  • types (DL:TYPE_INT, DL::TYPE_SIZE_T, etc., see the C types constants)

  • corresponding members

DL::Importer#struct and DL::Importer#union wrap this functionality in an easy-to-use manner.

Example:

require 'dl/struct'
require 'dl/cparser'

include DL::CParser

types, members = parse_struct_signature(['int i','char c'])

MyStruct = DL::CStructBuilder.create(CUnion, types, members)

obj = MyStruct.allocate
Show source
Register or log in to add new notes.