mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 08:59:26 +02:00
* fix for Mantis 16195, Delphi compatibility resource handle types were not 64-bit proof.
git-svn-id: trunk@15117 -
This commit is contained in:
parent
bc735a639f
commit
0ba6c22b28
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user