systemh.inc 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619
  1. {
  2. $Id$
  3. This file is part of the Free Pascal Run time library.
  4. Copyright (c) 1999-2000 by the Free Pascal development team
  5. This File contains the OS independent declarations of the system unit
  6. See the File COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. {****************************************************************************
  13. Needed switches
  14. ****************************************************************************}
  15. {$I-,Q-,H-,R-,V-}
  16. {$mode objfpc}
  17. { don't use FPU registervariables on the i386 }
  18. {$ifdef i386}
  19. {$maxfpuregisters 0}
  20. {$endif i386}
  21. { needed for insert,delete,readln }
  22. {$P+}
  23. { Stack check gives a note under linux }
  24. {$ifndef unix}
  25. {$S-}
  26. {$endif}
  27. {****************************************************************************
  28. Global Types and Constants
  29. ****************************************************************************}
  30. Type
  31. ShortInt = -128..127;
  32. SmallInt = -32768..32767;
  33. { can't use -2147483648 because of a bug in 1.0.2's val() procedure (JM) }
  34. Longint = +(-2147483647-1)..$7fffffff;
  35. Byte = 0..255;
  36. Word = 0..65535;
  37. DWord = Cardinal;
  38. LongWord = Cardinal;
  39. Integer = SmallInt;
  40. { at least declare Turbo Pascal real types }
  41. {$ifdef i386}
  42. StrLenInt = LongInt;
  43. {$define DEFAULT_EXTENDED}
  44. {$define SUPPORT_SINGLE}
  45. {$define SUPPORT_DOUBLE}
  46. {$define SUPPORT_EXTENDED}
  47. {$define SUPPORT_COMP}
  48. ValSInt = Longint;
  49. ValUInt = Cardinal;
  50. ValReal = Extended;
  51. {$endif}
  52. {$ifdef m68k}
  53. StrLenInt = Longint;
  54. ValSInt = Longint;
  55. ValUInt = Cardinal;
  56. ValReal = Real;
  57. { Comp type does not exist on fpu }
  58. Comp = int64;
  59. {$define SUPPORT_SINGLE}
  60. {$endif}
  61. { Zero - terminated strings }
  62. PChar = ^Char;
  63. PPChar = ^PChar;
  64. TAnsiChar = Char;
  65. AnsiChar = TAnsiChar;
  66. PAnsiChar = ^TAnsiChar;
  67. PPAnsiChar = ^PAnsiChar;
  68. UCS4Char = Cardinal;
  69. PUCS4Char = ^UCS4Char;
  70. Currency = Int64;
  71. HRESULT = Longint;
  72. TDateTime = Double;
  73. Error = Longint;
  74. PSingle = ^Single;
  75. PDouble = ^Double;
  76. PCurrency = ^Currency;
  77. {$ifdef SUPPORT_COMP}
  78. PComp = ^Comp;
  79. {$endif SUPPORT_COMP}
  80. {$ifdef SUPPORT_EXTENDED}
  81. PExtended = ^Extended;
  82. {$endif SUPPORT_EXTENDED}
  83. PSmallInt = ^Smallint;
  84. PInteger = ^Longint;
  85. PByte = ^Byte;
  86. PWord = ^word;
  87. PDWord = ^DWord;
  88. PLongWord = ^LongWord;
  89. PLongint = ^Longint;
  90. PCardinal = ^Cardinal;
  91. PQWord = ^QWord;
  92. PInt64 = ^Int64;
  93. PPointer = ^Pointer;
  94. PPPointer = ^PPointer;
  95. PBoolean = ^Boolean;
  96. PWordBool = ^WordBool;
  97. PLongBool = ^LongBool;
  98. PShortString = ^ShortString;
  99. PAnsiString = ^AnsiString;
  100. PDate = ^TDateTime;
  101. PError = ^Error;
  102. {$ifdef HASVARIANT}
  103. PVariant = ^Variant;
  104. {$endif HASVARIANT}
  105. {$ifdef HASWIDECHAR}
  106. PWideChar = ^WideChar;
  107. PPWideChar = ^PWideChar;
  108. {$endif HASWIDECHAR}
  109. {$ifdef HASWIDESTRING}
  110. PWideString = ^WideString;
  111. {$endif HASWIDESTRING}
  112. TTextLineBreakStyle = (tlbsLF,tlbsCRLF,tlbsCR);
  113. { procedure type }
  114. TProcedure = Procedure;
  115. { Text file }
  116. TextFile = Text;
  117. const
  118. { Maximum value of the biggest signed and unsigned integer type available}
  119. MaxSIntValue = High(ValSInt);
  120. MaxUIntValue = High(ValUInt);
  121. { max. values for longint and int}
  122. maxLongint = $7fffffff;
  123. maxSmallint = 32767;
  124. const
  125. maxint = maxsmallint;
  126. { Compatibility With TP }
  127. const
  128. { code to use comps in int64mul and div code is commented out! (JM) }
  129. FPUInt64 : boolean = false; { set this to false if you don't want that }
  130. { the fpu does int64*int64 and }
  131. { int64 div int64, if the * is overflow }
  132. { checked, it is done in software }
  133. {$ifdef i386}
  134. Test8086 : byte = 2; { Always i386 or newer }
  135. Test8087 : byte = 3; { Always 387 or newer. Emulated if needed. }
  136. {$endif i386}
  137. {$ifdef m68k}
  138. Test68000 : byte = 0; { Must be determined at startup for both }
  139. Test68881 : byte = 0;
  140. {$endif}
  141. { max level in dumping on error }
  142. Max_Frame_Dump : Word = 8;
  143. { Exit Procedure handling consts and types }
  144. ExitProc : pointer = nil;
  145. Erroraddr: pointer = nil;
  146. Errorcode: Word = 0;
  147. { file input modes }
  148. fmClosed = $D7B0;
  149. fmInput = $D7B1;
  150. fmOutput = $D7B2;
  151. fmInOut = $D7B3;
  152. fmAppend = $D7B4;
  153. Filemode : byte = 2;
  154. CmdLine : PChar = nil;
  155. var
  156. { Standard In- and Output }
  157. Output,
  158. Input,
  159. StdOut,
  160. StdErr : Text;
  161. ExitCode : Word;
  162. StackBottom,
  163. LowestStack,
  164. RandSeed : Cardinal;
  165. { Delphi compatible }
  166. IsLibrary,IsMultiThreaded,IsConsole : boolean;
  167. {$ifdef MT}
  168. ThreadVar
  169. {$else MT}
  170. Var
  171. {$endif MT}
  172. InOutRes : Word;
  173. {****************************************************************************
  174. Processor specific routines
  175. ****************************************************************************}
  176. Procedure Move(const source;var dest;count:Longint);
  177. Procedure FillChar(Var x;count:Longint;Value:Boolean);
  178. Procedure FillChar(Var x;count:Longint;Value:Char);
  179. Procedure FillChar(Var x;count:Longint;Value:Byte);
  180. procedure FillByte(var x;count:longint;value:byte);
  181. Procedure FillWord(Var x;count:Longint;Value:Word);
  182. procedure FillDWord(var x;count:longint;value:DWord);
  183. function IndexChar(const buf;len:longint;b:char):longint;
  184. function IndexByte(const buf;len:longint;b:byte):longint;
  185. function Indexword(const buf;len:longint;b:word):longint;
  186. function IndexDWord(const buf;len:longint;b:DWord):longint;
  187. function CompareChar(const buf1,buf2;len:longint):longint;
  188. function CompareByte(const buf1,buf2;len:longint):longint;
  189. function CompareWord(const buf1,buf2;len:longint):longint;
  190. function CompareDWord(const buf1,buf2;len:longint):longint;
  191. procedure MoveChar0(const buf1;var buf2;len:longint);
  192. function IndexChar0(const buf;len:longint;b:char):longint;
  193. function CompareChar0(const buf1,buf2;len:longint):longint;
  194. {****************************************************************************
  195. Math Routines
  196. ****************************************************************************}
  197. Function lo(w:Word):byte;
  198. Function lo(l:Longint):Word;
  199. Function lo(l:DWord):Word;
  200. Function lo(i:Integer):byte;
  201. Function lo(B: Byte):Byte;
  202. Function hi(w:Word):byte;
  203. Function hi(i:Integer):byte;
  204. Function hi(l:Longint):Word;
  205. Function hi(b : Byte) : Byte;
  206. Function hi(l: DWord): Word;
  207. Function Swap (X:Word):Word;
  208. Function Swap (X:Integer):Integer;
  209. Function Swap (X:Cardinal):Cardinal;
  210. Function Swap (X:LongInt):LongInt;
  211. Function lo(q : QWord) : DWord;
  212. Function lo(i : Int64) : DWord;
  213. Function hi(q : QWord) : DWord;
  214. Function hi(i : Int64) : DWord;
  215. Function Swap (X:QWord):QWord;
  216. Function Swap (X:Int64):Int64;
  217. Function Random(l:cardinal):cardinal;
  218. Function Random(l:longint):longint;
  219. Function Random: extended;
  220. Procedure Randomize;
  221. Function abs(l:Longint):Longint;
  222. Function sqr(l:Longint):Longint;
  223. Function odd(l:Longint):Boolean;
  224. Function odd(l:Cardinal):Boolean;
  225. Function odd(l:Int64):Boolean;
  226. Function odd(l:QWord):Boolean;
  227. { float math routines }
  228. {$I mathh.inc}
  229. {****************************************************************************
  230. Addr/Pointer Handling
  231. ****************************************************************************}
  232. Function ptr(sel,off:Longint):farpointer;
  233. Function Cseg:Word;
  234. Function Dseg:Word;
  235. Function Sseg:Word;
  236. {****************************************************************************
  237. PChar and String Handling
  238. ****************************************************************************}
  239. function strpas(p:pchar):shortstring;
  240. function strlen(p:pchar):longint;
  241. { Shortstring functions }
  242. {$ifndef INTERNSETLENGTH}
  243. Procedure SetLength (Var S:ShortString;len:StrLenInt);
  244. {$endif INTERNSETLENGTH}
  245. Function Copy(const s:shortstring;index:StrLenInt;count:StrLenInt):shortstring;
  246. Procedure Delete(Var s:shortstring;index:StrLenInt;count:StrLenInt);
  247. Procedure Insert(const source:shortstring;Var s:shortstring;index:StrLenInt);
  248. Procedure Insert(source:Char;Var s:shortstring;index:StrLenInt);
  249. Function Pos(const substr:shortstring;const s:shortstring):StrLenInt;
  250. Function Pos(C:Char;const s:shortstring):StrLenInt;
  251. Procedure SetString (Var S : Shortstring; Buf : PChar; Len : Longint);
  252. Procedure SetString (Var S : AnsiString; Buf : PChar; Len : Longint);
  253. {$ifndef INTERNLENGTH}
  254. Function Length(s:string):byte;
  255. {$endif INTERNLENGTH}
  256. Function upCase(const s:shortstring):shortstring;
  257. Function lowerCase(const s:shortstring):shortstring;
  258. Function Space(b:byte):shortstring;
  259. Function hexStr(Val:Longint;cnt:byte):shortstring;
  260. Function binStr(Val:Longint;cnt:byte):shortstring;
  261. Function hexStr(Val:int64;cnt:byte):shortstring;
  262. Function binStr(Val:int64;cnt:byte):shortstring;
  263. { Char functions }
  264. Function Chr(b:byte):Char;
  265. Function upCase(c:Char):Char;
  266. Function lowerCase(c:Char):Char;
  267. function copy(c:char;index : StrLenInt;count : StrLenInt): shortstring;
  268. function pos(const substr : shortstring;c:char): StrLenInt;
  269. {$ifndef INTERNLENGTH}
  270. function length(c:char):byte;
  271. {$endif INTERNLENGTH}
  272. {****************************************************************************
  273. AnsiString Handling
  274. ****************************************************************************}
  275. {$ifndef INTERNSETLENGTH}
  276. Procedure SetLength (Var S : AnsiString; l : Longint);
  277. {$endif INTERNSETLENGTH}
  278. Procedure UniqueString (Var S : AnsiString);
  279. {$ifndef INTERNLENGTH}
  280. Function Length (Const S : AnsiString) : Longint;
  281. {$endif INTERNLENGTH}
  282. Function Copy (Const S : AnsiString; Index,Size : Longint) : AnsiString;
  283. Function Pos (Const Substr : AnsiString; Const Source : AnsiString) : Longint;
  284. Function Pos (c : Char; Const s : AnsiString) : Longint;
  285. Procedure Insert (Const Source : AnsiString; Var S : AnsiString; Index : Longint);
  286. Procedure Delete (Var S : AnsiString; Index,Size: Longint);
  287. Function StringOfChar(c : char;l : longint) : AnsiString;
  288. function upcase(const s : ansistring) : ansistring;
  289. function lowercase(const s : ansistring) : ansistring;
  290. {****************************************************************************
  291. WideString Handling
  292. ****************************************************************************}
  293. {$ifdef HASWIDESTRING}
  294. {$ifndef INTERNSETLENGTH}
  295. Procedure SetLength (Var S : WideString; l : Longint);
  296. {$endif INTERNSETLENGTH}
  297. Procedure UniqueString (Var S : WideString);
  298. {$ifndef INTERNLENGTH}
  299. Function Length (Const S : WideString) : Longint;
  300. {$endif INTERNLENGTH}
  301. Function Copy (Const S : WideString; Index,Size : Longint) : WideString;
  302. Function Pos (Const Substr : WideString; Const Source : WideString) : Longint;
  303. Function Pos (c : Char; Const s : WideString) : Longint;
  304. Function Pos (c : WideChar; Const s : WideString) : Longint;
  305. Procedure Insert (Const Source : WideString; Var S : WideString; Index : Longint);
  306. Procedure Delete (Var S : WideString; Index,Size: Longint);
  307. {$endif HASWIDESTRING}
  308. {****************************************************************************
  309. Untyped File Management
  310. ****************************************************************************}
  311. Procedure Assign(Var f:File;const Name:string);
  312. Procedure Assign(Var f:File;p:pchar);
  313. Procedure Assign(Var f:File;c:char);
  314. Procedure Rewrite(Var f:File;l:Longint);
  315. Procedure Rewrite(Var f:File);
  316. Procedure Reset(Var f:File;l:Longint);
  317. Procedure Reset(Var f:File);
  318. Procedure Close(Var f:File);
  319. Procedure BlockWrite(Var f:File;Const Buf;Count:Longint;Var Result:Longint);
  320. Procedure BlockWrite(Var f:File;Const Buf;Count:Cardinal;var Result:Cardinal);
  321. Procedure BlockWrite(Var f:File;Const Buf;Count:Word;Var Result:Word);
  322. Procedure BlockWrite(Var f:File;Const Buf;Count:Word;Var Result:Integer);
  323. Procedure BlockWrite(Var f:File;Const Buf;Count:Longint);
  324. Procedure BlockRead(Var f:File;Var Buf;count:Longint;Var Result:Longint);
  325. Procedure BlockRead(Var f:File;Var Buf;count:Cardinal;Var Result:Cardinal);
  326. Procedure BlockRead(Var f:File;Var Buf;count:Word;Var Result:Word);
  327. Procedure BlockRead(Var f:File;Var Buf;count:Word;Var Result:Integer);
  328. Procedure BlockRead(Var f:File;Var Buf;count:Longint);
  329. Function FilePos(Var f:File):Longint;
  330. Function FileSize(Var f:File):Longint;
  331. Procedure Seek(Var f:File;Pos:Longint);
  332. Function EOF(Var f:File):Boolean;
  333. Procedure Erase(Var f:File);
  334. Procedure Rename(Var f:File;const s:string);
  335. Procedure Rename(Var f:File;p:pchar);
  336. Procedure Rename(Var f:File;c:char);
  337. Procedure Truncate (Var F:File);
  338. {****************************************************************************
  339. Typed File Management
  340. ****************************************************************************}
  341. Procedure Assign(Var f:TypedFile;const Name:string);
  342. Procedure Assign(Var f:TypedFile;p:pchar);
  343. Procedure Assign(Var f:TypedFile;c:char);
  344. Procedure Rewrite(Var f:TypedFile);
  345. Procedure Reset(Var f:TypedFile);
  346. {****************************************************************************
  347. Text File Management
  348. ****************************************************************************}
  349. Procedure Assign(Var t:Text;const s:string);
  350. Procedure Assign(Var t:Text;p:pchar);
  351. Procedure Assign(Var t:Text;c:char);
  352. Procedure Close(Var t:Text);
  353. Procedure Rewrite(Var t:Text);
  354. Procedure Reset(Var t:Text);
  355. Procedure Append(Var t:Text);
  356. Procedure Flush(Var t:Text);
  357. Procedure Erase(Var t:Text);
  358. Procedure Rename(Var t:Text;const s:string);
  359. Procedure Rename(Var t:Text;p:pchar);
  360. Procedure Rename(Var t:Text;c:char);
  361. Function EOF(Var t:Text):Boolean;
  362. Function EOF:Boolean;
  363. Function EOLn(Var t:Text):Boolean;
  364. Function EOLn:Boolean;
  365. Function SeekEOLn (Var t:Text):Boolean;
  366. Function SeekEOF (Var t:Text):Boolean;
  367. Function SeekEOLn:Boolean;
  368. Function SeekEOF:Boolean;
  369. Procedure SetTextBuf(Var f:Text; Var Buf);
  370. Procedure SetTextBuf(Var f:Text; Var Buf; Size:Longint);
  371. {****************************************************************************
  372. Directory Management
  373. ****************************************************************************}
  374. Procedure chdir(const s:string);
  375. Procedure mkdir(const s:string);
  376. Procedure rmdir(const s:string);
  377. Procedure getdir(drivenr:byte;Var dir:shortstring);
  378. Procedure getdir(drivenr:byte;Var dir:ansistring);
  379. {*****************************************************************************
  380. Miscelleaous
  381. *****************************************************************************}
  382. { os independent calls to allow backtraces }
  383. function get_frame:longint;
  384. function get_caller_addr(framebp:longint):longint;
  385. function get_caller_frame(framebp:longint):longint;
  386. Function IOResult:Word;
  387. Function Sptr:Longint;
  388. {*****************************************************************************
  389. Init / Exit / ExitProc
  390. *****************************************************************************}
  391. Function Paramcount:Longint;
  392. Function ParamStr(l:Longint):string;
  393. Procedure Dump_Stack(var f : text;bp:Longint);
  394. Procedure RunError(w:Word);
  395. Procedure RunError;
  396. Procedure halt(errnum:byte);
  397. Procedure AddExitProc(Proc:TProcedure);
  398. Procedure halt;
  399. {*****************************************************************************
  400. Abstract/Assert/Error Handling
  401. *****************************************************************************}
  402. procedure AbstractError;
  403. Function SysBackTraceStr(Addr: Longint): ShortString;
  404. Procedure SysAssert(Const Msg,FName:ShortString;LineNo,ErrorAddr:Longint);
  405. { Error handlers }
  406. Type
  407. TBackTraceStrFunc = Function (Addr: Longint): ShortString;
  408. TErrorProc = Procedure (ErrNo : Longint; Address,Frame : Pointer);
  409. TAbstractErrorProc = Procedure;
  410. TAssertErrorProc = Procedure(const msg,fname:ShortString;lineno,erroraddr:longint);
  411. const
  412. BackTraceStrFunc : TBackTraceStrFunc = @SysBackTraceStr;
  413. ErrorProc : TErrorProc = nil;
  414. AbstractErrorProc : TAbstractErrorProc = nil;
  415. AssertErrorProc : TAssertErrorProc = @SysAssert;
  416. {*****************************************************************************
  417. SetJmp/LongJmp
  418. *****************************************************************************}
  419. {$i setjumph.inc}
  420. {*****************************************************************************
  421. Object Pascal support
  422. *****************************************************************************}
  423. {$i objpash.inc}
  424. {
  425. $Log$
  426. Revision 1.28 2001-07-15 11:57:16 peter
  427. * merged m68k updates
  428. Revision 1.27 2001/07/10 18:04:37 peter
  429. * merged textfile, readlink and concat ansistring fixes
  430. Revision 1.26 2001/07/09 21:15:41 peter
  431. * Length made internal
  432. * Add array support for Length
  433. Revision 1.25 2001/07/08 21:00:18 peter
  434. * various widestring updates, it works now mostly without charset
  435. mapping supported
  436. Revision 1.24 2001/06/04 11:43:51 peter
  437. * Formal const to var fixes
  438. * Hexstr(int64) added
  439. Revision 1.23 2001/06/03 20:17:06 peter
  440. * ucs4char added
  441. Revision 1.22 2001/05/16 17:44:25 jonas
  442. + odd() for cardinal, int64 and qword (merged)
  443. Revision 1.21 2001/05/09 19:57:07 peter
  444. *** empty log message ***
  445. Revision 1.20 2001/04/23 18:25:45 peter
  446. * m68k updates
  447. Revision 1.19 2001/04/13 18:06:07 peter
  448. * upcase, lowercase for ansistring
  449. Revision 1.18 2001/03/22 23:26:05 florian
  450. * some new types added like PBoolean
  451. Revision 1.17 2001/03/21 23:29:40 florian
  452. + sLineBreak and misc. stuff for Kylix compatiblity
  453. Revision 1.16 2001/01/24 21:47:18 florian
  454. + more MT stuff added
  455. Revision 1.15 2000/12/16 15:56:19 jonas
  456. - removed all ifdef cardinalmulfix code
  457. Revision 1.14 2000/12/08 14:04:43 jonas
  458. + added pos(char,ansistring), because there is also a pos(char,shortstring)
  459. and without the ansistring version, the shortstring version is always
  460. called when calling pos(char,pchar), even when using $h+ (because the
  461. first parameter matches exactly) (merged)
  462. Revision 1.13 2000/12/07 17:19:47 jonas
  463. * new constant handling: from now on, hex constants >$7fffffff are
  464. parsed as unsigned constants (otherwise, $80000000 got sign extended
  465. and became $ffffffff80000000), all constants in the longint range
  466. become longints, all constants >$7fffffff and <=cardinal($ffffffff)
  467. are cardinals and the rest are int64's.
  468. * added lots of longint typecast to prevent range check errors in the
  469. compiler and rtl
  470. * type casts of symbolic ordinal constants are now preserved
  471. * fixed bug where the original resulttype wasn't restored correctly
  472. after doing a 64bit rangecheck
  473. Revision 1.12 2000/11/13 13:40:04 marco
  474. * Renamefest
  475. Revision 1.11 2000/11/11 16:12:01 peter
  476. * ptr returns farpointer
  477. Revision 1.10 2000/11/06 21:35:59 peter
  478. * removed some warnings
  479. Revision 1.9 2000/11/06 20:34:24 peter
  480. * changed ver1_0 defines to temporary defs
  481. Revision 1.8 2000/10/23 16:15:40 jonas
  482. * renamed strlenint to longint since 1.0 doesn't know that type
  483. Revision 1.7 2000/10/23 14:00:59 florian
  484. * setlength export declaration for 1.0.2 fixed
  485. Revision 1.6 2000/10/21 18:20:17 florian
  486. * a lot of small changes:
  487. - setlength is internal
  488. - win32 graph unit extended
  489. ....
  490. Revision 1.5 2000/08/13 17:55:15 michael
  491. + Added some delphi compatibility types
  492. Revision 1.4 2000/08/08 22:11:45 sg
  493. * Added declarations for WideString utility functions
  494. Revision 1.3 2000/07/14 10:33:10 michael
  495. + Conditionals fixed
  496. Revision 1.2 2000/07/13 11:33:45 michael
  497. + removed logs
  498. }