From 45ed50343cf77c40cf309f60d5b59cf9827f47fc Mon Sep 17 00:00:00 2001 From: inoussa Date: Fri, 22 Jul 2011 12:31:45 +0000 Subject: [PATCH] Add "UInt32" definition git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1755 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- wst/trunk/wst_types.pas | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wst/trunk/wst_types.pas b/wst/trunk/wst_types.pas index 9efcbfcb6..e18b3cb82 100644 --- a/wst/trunk/wst_types.pas +++ b/wst/trunk/wst_types.pas @@ -22,6 +22,10 @@ uses type +{$ifdef fpc} + UInt32 = Cardinal; +{$endif fpc} + { reprents an array of Byte } {$IFDEF WST_UNICODESTRING} TBinaryString = {$IFDEF FPC}ansistring{$ELSE}RawByteString{$ENDIF};