Name

TLibModule Type

Syntax

type
  TLibModule = record
    Next: PLibModule;
    Instance: LongWord;
    CodeInstance: LongWord;
    DataInstance: LongWord;
    ResInstance: LongWord;
    Reserved: Integer;
  end;

Description

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.

See Also

LibModuleList Variable, PLibModule Type, RegisterModule Procedure, UnregisterModule Procedure
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset