* fix for Mantis 16195, Delphi compatibility resource handle types were not 64-bit proof.

git-svn-id: trunk@15117 -
This commit is contained in:
marco 2010-04-08 09:03:50 +00:00
parent bc735a639f
commit 0ba6c22b28

View File

@ -1,9 +1,9 @@
type
//Obsolete types, kept for backwards compatibility
TResourceHandle = Cardinal;
HMODULE = Cardinal;
HGLOBAL = Cardinal;
TResourceHandle = PtrUint;
HMODULE = PtrUint;
HGLOBAL = PtrUint;
//New types
TFPResourceHandle = PtrUInt;
TFPResourceHMODULE = PtrUInt;