RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
System::TLibModule Record

System::TLibModule describes a module that is compiled with the application.

Pascal
TLibModule = record
  Next: PLibModule;
  Instance: LongWord;
  CodeInstance: LongWord;
  DataInstance: LongWord;
  ResInstance: LongWord;
  Reserved: Integer;
end;
C++
struct TLibModule {
  PLibModule Next;
  LongWord Instance;
  LongWord CodeInstance;
  LongWord DataInstance;
  LongWord ResInstance;
  Integer Reserved;
};

System::TLibModule is an entry in a linked list of data structures that describe the modules in an application.  

Next is a pointer to the next entry in the list. 

The Instance field represents the instance handle of the executable or package and the instance handles of the text, data, and resource associated with that executable instance. 

The additional fields on Linux are used internally to access information in the module header. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!