* more little winapi fixes (largeuint)

git-svn-id: trunk@7821 -
This commit is contained in:
marco 2007-06-26 14:50:24 +00:00
parent 4ff745402e
commit f885568da9
2 changed files with 7 additions and 0 deletions

View File

@ -32,6 +32,9 @@ type
PBStr = ^TBStr;
TOleEnum = type LongWord;
LargeInt = Types.LargeInt;
LargeUInt = Types.LargeUInt;
PLargeInt = Types.PLargeInt;
PLargeUInt = Types.PLargeUInt;
{Glue types, should be linked to the proper windows unit types}
TYPE

View File

@ -39,6 +39,10 @@ type
PByte = System.PByte;
Largeint = int64;
LARGE_INT = LargeInt;
PLargeInt = ^LargeInt;
LargeUint = qword;
LARGE_UINT= LargeUInt;
PLargeuInt = ^LargeuInt;
TIntegerDynArray = array of Integer;
TCardinalDynArray = array of Cardinal;