Name

TModuleUnloadRec Type

Syntax

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

Description

Delphi keeps a singly linked list of TModuleUnloadRec records. Each record stores a pointer to a callback procedure. When Delphi unloads a package or when the project unloads itself, Delphi calls all the procedures in the list, passing the module’s instance handle as an argument.

Example

See AddModuleUnloadProc for an example.

See Also

AddModuleUnloadProc Procedure, ModuleUnloadList Variable, PModuleUnloadRec Type, RemoveModuleUnloadProc Procedure, TModuleUnloadProcLW Type
..................Content has been hidden....................

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