System.TModuleUnloadRec

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TModuleUnloadRec = record
    Next: PModuleUnloadRec;
    Proc: TModuleUnloadProcLW;
  end;

C++

struct DECLSPEC_DRECORD TModuleUnloadRec
{
public:
    TModuleUnloadRec *Next;
    TModuleUnloadProcLW Proc;
};

Properties

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

Description

Is a node in the module unload linked list.

TModuleUnloadRec represents a node in the module unload linked list. The following table lists the fields of the TModuleUnloadRec structure.


Field Meaning

Next

Is a pointer to the next TModuleUnloadRec structure in the unload linked list.

Proc

Contains an address of the procedure to be executed.


Note: Do not add elements of type TModuleUnloadRec directly to the list. Use the RemoveModuleUnloadProc routine instead.

See Also