March 2000
Intermediate to advanced
576 pages
18h 13m
English
TLibModule Type
type
TLibModule = record
Next: PLibModule;
Instance: LongWord;
CodeInstance: LongWord;
DataInstance: LongWord;
ResInstance: LongWord;
Reserved: Integer;
end;The TLibModule
type stores information about the project
module and every package that the project loads. The records are
stored in a singly linked list, where the Next
member points to the next module in the
list.
Instance is the module’s instance handle.
ResInstance is the module’s resource
instance handle. If the module has a separate resource library,
Delphi automatically loads the language-specific library and saves
the instance handle in ResInstance. Otherwise,
ResInstance is the same as
Instance.
CodeInstance and DataInstance
are used by C++ Builder for libraries.
| LibModuleList Variable, PLibModule Type, RegisterModule Procedure, UnregisterModule Procedure |
Read now
Unlock full access