1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- {
- $Id$
- This file is part of the Free Pascal Run time library.
- Copyright (c) 2001 by the Free Pascal development team
- This file contains the OS independent declarations of the system unit
- for unix styled systems
- 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.
- **********************************************************************}
- {$define newsignal}
- {$I systemh.inc}
- {$I heaph.inc}
- {$ifdef m68k}
- { used for single computations }
- const
- BIAS4 = $7f-1;
- {$endif}
- {Platform specific information}
- type
- {$ifdef CPU64}
- THandle = Int64;
- {$else CPU64}
- THandle = Longint;
- {$endif CPU64}
- const
- LineEnding = #10;
- LFNSupport = true;
- DirectorySeparator = '/';
- DriveSeparator = ':';
- PathSeparator = ':';
- { FileNameCaseSensitive is defined below! }
- const
- UnusedHandle = -1;
- StdInputHandle = 0;
- StdOutputHandle = 1;
- StdErrorHandle = 2;
- FileNameCaseSensitive : boolean = true;
- sLineBreak = LineEnding;
- DefaultTextLineBreakStyle : TTextLineBreakStyle = tlbsLF;
- var
- argc : longint;
- argv : ppchar;
- envp : ppchar;
- {
- $Log$
- Revision 1.17 2003-10-16 15:43:13 peter
- * THandle is platform dependent
- Revision 1.16 2002/10/15 19:30:15 peter
- * remove threadh.inc include
- Revision 1.15 2002/09/07 16:01:28 peter
- * old logs removed and tabs fixed
- Revision 1.14 2002/07/01 16:29:05 peter
- * sLineBreak changed to normal constant like Kylix
- }
|