mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 15:39:24 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			72 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
{
 | 
						|
    $Id$
 | 
						|
    This file is part of the Free Pascal run time library.
 | 
						|
    Copyright (c) 2001 by Free Pascal development team
 | 
						|
 | 
						|
    Basic types for C interfacing. Check the 64-bit defines.    
 | 
						|
 | 
						|
    See the file COPYING.FPC, included in this distribution,
 | 
						|
    for details about the copyright.
 | 
						|
 | 
						|
    This program is distributed in the hope that it will be useful,
 | 
						|
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 | 
						|
 | 
						|
 **********************************************************************}
 | 
						|
 | 
						|
{***********************************************************************}
 | 
						|
{                       POSIX TYPE DEFINITIONS                          }
 | 
						|
{***********************************************************************}
 | 
						|
 | 
						|
{ Introduced defines
 | 
						|
    - 64bitarch (for 64-bits Linux systems, test system was idefix
 | 
						|
}
 | 
						|
 | 
						|
Type
 | 
						|
    { the following type definitions are compiler dependant }
 | 
						|
    { and system dependant                                  }
 | 
						|
 | 
						|
    cInt8  = shortint;
 | 
						|
    cUInt8 = byte;
 | 
						|
    cUInt16= word;
 | 
						|
    cInt16 = smallint;
 | 
						|
    cInt32 = longint;
 | 
						|
    cUInt32= cardinal;
 | 
						|
    cInt64 = int64;
 | 
						|
{$ifndef VER_1_0}
 | 
						|
    cUInt64= qword;
 | 
						|
{$else}
 | 
						|
    cUInt64= int64;
 | 
						|
{$endif}
 | 
						|
 | 
						|
    cuchar = byte;
 | 
						|
    cInt   = longint;           { minimum range is : 32-bit    }
 | 
						|
    cUInt  = Cardinal;          { minimum range is : 32-bit    }
 | 
						|
  {$ifdef 64bitarch}
 | 
						|
    cLong  = int64;
 | 
						|
  {$ifdef VER_1_0}
 | 
						|
    cuLong = int64;
 | 
						|
  {$else}
 | 
						|
    cuLong = qword;
 | 
						|
   {$endif}
 | 
						|
  {$else}
 | 
						|
    cLong  = longint;
 | 
						|
    cuLong = Cardinal;
 | 
						|
  {$endif}
 | 
						|
    cshort = integer;
 | 
						|
    cushort= word;
 | 
						|
 | 
						|
    pcInt  = ^cInt;
 | 
						|
 | 
						|
{ 
 | 
						|
   $Log$
 | 
						|
   Revision 1.2  2002-12-18 16:43:26  marco
 | 
						|
    * new unix rtl, linux part.....
 | 
						|
 | 
						|
   Revision 1.1  2002/11/09 22:39:28  marco
 | 
						|
    * first version
 | 
						|
 | 
						|
 | 
						|
}
 | 
						|
 |