1
0
mirror of synced 2024-11-15 00:43:50 +00:00
unitswitcher/Source/UnSwReg.pas

27 lines
422 B
ObjectPascal
Raw Normal View History

unit UnSwReg;
interface
implementation
uses
SysUtils,
CmpSwClient,
UnSwClient;
var
GComponentSwitcher: TComponentSwitcherHook;
GUnitSwitcher: TUnitSwitcherHook;
initialization
GComponentSwitcher := TComponentSwitcherHook.Create();
GUnitSwitcher := TUnitSwitcherHook.Create();
finalization
FreeAndNil(GUnitSwitcher);
FreeAndNil(GComponentSwitcher);
end.