define ULONG_PTR for non-windows and 2.0.2

git-svn-id: trunk@9233 -
This commit is contained in:
micha 2006-05-03 17:40:41 +00:00
parent df4cb19ad7
commit 9662961394

View File

@ -113,6 +113,8 @@ type
LPARAM = type PtrInt; //LongInt;
LRESULT = type PtrInt; //LongInt;
ULONG_PTR = type PtrUInt;
{$else}
HKEY = Windows.HKEY;
HDC = Windows.HDC;
@ -137,6 +139,10 @@ type
WPARAM = Windows.WPARAM;
LPARAM = Windows.LPARAM;
LRESULT = Windows.LRESULT;
{$if defined(VER2_0_2)}
ULONG_PTR = type PtrUInt;
{$endif}
{$endif}
TLCLIntfHandle = type THandle;