systemh.inc 20 KB

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