RAD Studio VCL Reference
|
AddModuleUnloadProc adds a call to your defined routine when a package is unloaded.
procedure AddModuleUnloadProc(Proc: TModuleUnloadProc); overload; procedure AddModuleUnloadProc(Proc: TModuleUnloadProcLW); overload;
AddModuleUnloadProc(TModuleUnloadProc Proc); AddModuleUnloadProc(TModuleUnloadProcLW Proc);
Before Delphi unloads a package that was used by your application, it can optionally call your Proc routine. In essence, AddModuleUnloadProc adds your callback routine to the head of the list of internal routines that Delphi invokes to perform the unload.
Use RemoveModuleUnloadProc to reverse the effect of AddModuleUnloadProc.
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
What do you think about this topic? Send feedback!
|