* hmodule should scale with pointertype on non-windows.

git-svn-id: trunk@15510 -
This commit is contained in:
marco 2010-07-02 20:08:05 +00:00
parent 7d27f4c21d
commit d8707ec5d3

View File

@ -36,7 +36,7 @@ type
TSmallPoint = record
x,y : smallint;
end;
HMODULE = longint;
HMODULE = ptrint; // hmodule is handle on windows. Pointer eq.
{$else}
TSmallPoint = Windows.TSmallPoint;
HModule = System.HModule;