mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 20:39:28 +02:00
* more little winapi fixes (largeuint)
git-svn-id: trunk@7821 -
This commit is contained in:
parent
4ff745402e
commit
f885568da9
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user