TLibModule describes a module that is compiled with the application.
TLibModule = record Next: PLibModule; Instance: LongWord; CodeInstance: LongWord; DataInstance: LongWord; ResInstance: LongWord; Reserved: Integer; end;
struct TLibModule { PLibModule Next; LongWord Instance; LongWord CodeInstance; LongWord DataInstance; LongWord ResInstance; int 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) 2008 CodeGear(TM). All Rights Reserved.
|
What do you think about this topic? Send feedback!
|