System.TLibModule

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TLibModule = record
    Next: PLibModule;
    Instance: HINST;
    CodeInstance: HINST;
    DataInstance: HINST;
    ResInstance: HINST;
    TypeInfo: PPackageTypeInfo;
    Reserved: NativeInt;
{$IF defined(LINUX) or defined(MACOS) or defined(ANDROID)}
    InstanceVar: Pointer platform;
    InitTable: Pointer platform;
    GOT: NativeUInt platform;
{$ENDIF LINUX or MACOS or ANDROID}
{$IFDEF PC_MAPPED_EXCEPTIONS}
    CodeSegStart: NativeUInt platform;
    CodeSegEnd: NativeUInt platform;
{$ENDIF PC_MAPPED_EXCEPTIONS}
  end;

C++

struct DECLSPEC_DRECORD TLibModule
{
public:
    TLibModule *Next;
    NativeUInt Instance;
    NativeUInt CodeInstance;
    NativeUInt DataInstance;
    NativeUInt ResInstance;
    TPackageTypeInfo *TypeInfo;
    NativeInt Reserved;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
System.pas
System.hpp
System System

Description

TLibModule describes a module that is compiled with the application.

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.


See Also