From 5793f2037fe42dcd180c1827d104e51d15cb54ef Mon Sep 17 00:00:00 2001 From: florian Date: Sun, 6 Feb 2005 08:50:22 +0000 Subject: [PATCH] + added the new types from linux --- rtl/bsd/ctypes.inc | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/rtl/bsd/ctypes.inc b/rtl/bsd/ctypes.inc index d45d7992e9..448ac2f54a 100644 --- a/rtl/bsd/ctypes.inc +++ b/rtl/bsd/ctypes.inc @@ -40,6 +40,7 @@ Type {$endif} cuchar = byte; + cchar = shortint; cInt = longint; { minimum range is : 32-bit } cUInt = Cardinal; { minimum range is : 32-bit } {$ifdef CPU64} @@ -68,10 +69,18 @@ Type pculong = ^cuLong; pcshort = ^cshort; pcushort= ^cushort; + pcchar = ^cchar; + pcuchar = ^cuchar; + + cunsigned = cuint; + pcunsigned = ^cunsigned; { $Log$ - Revision 1.4 2004-09-09 20:29:06 jonas + Revision 1.5 2005-02-06 08:50:22 florian + + added the new types from linux + + Revision 1.4 2004/09/09 20:29:06 jonas * fixed definition of pthread_mutex_t for non-linux targets (and for linux as well, actually). * base libpthread definitions are now in ptypes.inc, included in unixtype