removed incorrect executable status from files
[lcore.git] / pgtypes.pas
1 {io core originally for linux bworld}\r
2 \r
3 { Copyright (C) 2005 Bas Steendijk and Peter Green\r
4   For conditions of distribution and use, see copyright notice in zlib_license.txt\r
5   which is included in the package\r
6   ----------------------------------------------------------------------------- }\r
7 \r
8 unit pgtypes;\r
9 interface\r
10 \r
11 {$include pgtypes.inc}\r
12 \r
13   type\r
14     {$ifdef i386}\r
15       taddrint=longint;\r
16     {$else}\r
17       taddrint=sizeint;\r
18     {$endif}\r
19     paddrint=^taddrint;\r
20 \r
21     { string type for storing hostnames or IP addresses as strings }\r
22     thostname = ansistring;\r
23     { string type for storing data (bytes) }\r
24     tbufferstring = ansistring;\r
25     \r
26     {another name for a string with bytes, not implying it's to be used for a buffer}\r
27     bytestring = tbufferstring;\r
28 \r
29     {a char that is always one byte}\r
30     bytechar = ansichar;\r
31 \r
32 implementation\r
33 end.\r