Commit 621c7ac319f634d75386d2ab32827ede04f624fc

Authored by David René
1 parent 213f6377

add data_io.anubis

anubis_dev/library/compil_all.anubis
... ... @@ -3,7 +3,7 @@
3 3  
4 4 *Title* Automatic compilation of all library source files.
5 5  
6   - *Copyright* Copyright (c) Alain Prouté 2005-2006.
  6 + *Copyright* Copyright (c) Alain Prouté & David René 2005-2007.
7 7  
8 8  
9 9  
... ... @@ -68,6 +68,7 @@ read network/sntp.anubis
68 68 read network/tools.anubis
69 69  
70 70 read system/bytearray.anubis
  71 +read system/data_io.anubis
71 72 read system/convert.anubis
72 73 read system/files.anubis
73 74 read system/logger.anubis
... ...
anubis_dev/library/install_released_files.bat
... ... @@ -53,6 +53,7 @@ copy .\network\tools.anubis C:\Anubis_dev\anubis_distrib\lib
53 53  
54 54 copy .\system\bytearray.anubis C:\Anubis_dev\anubis_distrib\library\system\bytearray.anubis
55 55 copy .\system\convert.anubis C:\Anubis_dev\anubis_distrib\library\system\convert.anubis
  56 +copy .\system\data_io.anubis C:\Anubis_dev\anubis_distrib\library\system\data_io.anubis
56 57 copy .\system\files.anubis C:\Anubis_dev\anubis_distrib\library\system\files.anubis
57 58 copy .\system\logger.anubis C:\Anubis_dev\anubis_distrib\library\system\logger.anubis
58 59 copy .\system\muscle.anubis C:\Anubis_dev\anubis_distrib\library\system\muscle.anubis
... ...
anubis_dev/library/system/convert.anubis
1 1 
  2 + *Project* Anubis
  3 +
  4 + *Title* conversion tools
  5 +
  6 + *Copyright* Copyright (c) David René 2006-2007.
  7 +
  8 +
  9 + *Author* David René
  10 + *Created* December 2006
  11 + *Status* Beta
  12 +
2 13 read tools/basis.anubis
3 14 read system/types.anubis
4 15 read system/string.anubis
... ...
anubis_dev/library/system/data_io.anubis
1 1 
  2 + *Project* Anubis
  3 +
  4 + *Title* Data Input/Output functions.
  5 +
  6 + *Copyright* Copyright (c) David René 2007.
  7 +
  8 +
  9 + *Author* David René
  10 + *Created* February 2007
  11 + *Status* Beta
2 12  
3 13 public type Data_IO:...
4 14  
... ...
anubis_dev/library/system/files.anubis
... ... @@ -6,9 +6,6 @@
6 6 *Copyright* Copyright (c) David René 2006-2007.
7 7  
8 8  
9   -
10   -
11   -
12 9 *Author* David René
13 10 *Created* May 2005
14 11 *Status* Released
... ...
anubis_dev/vm/doc/history.txt
... ... @@ -10,6 +10,10 @@
10 10 * Version 1.7.16.0 (27/02/2007) DR *
11 11 ************************************
12 12 [+] add the creation of udp broadcast socket
  13 +[+] reserved keyword __LINE__ __FILE__ and __TIME__ like C preprocessor.
  14 + __LINE__ is an integer which is line number in anubis source file
  15 + __FILE__ is a string which is the file name of current Anubis source file
  16 + __TIME__ is an integer which is the EPOCH time when the Anubis source file was compiled
13 17  
14 18 ***********************************
15 19 * Version 1.7.5.0 (16/09/2006) DR *
... ...