+ added the win16api shell consts

git-svn-id: trunk@31818 -
This commit is contained in:
nickysn 2015-09-24 15:44:09 +00:00
parent d6fdab5e0e
commit 5c9a09a38b

View File

@ -704,6 +704,15 @@ type
end;
THardwareHookStruct = HARDWAREHOOKSTRUCT;
{ Shell support }
const
{ SetWindowsHook() Shell hook code }
WH_SHELL = 10;
HSHELL_WINDOWCREATED = 1;
HSHELL_WINDOWDESTROYED = 2;
HSHELL_ACTIVATESHELLWINDOW = 3;
function GetFreeSystemResources(SysResource: UINT): UINT; external 'USER';
procedure LogError(err: UINT; lpInfo: FarPointer); external 'KERNEL';