00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #define FILE_FLUSH 0
00030 #define FILE_SEEK 1
00031 #define FILE_TRUNCATE 2
00032 #define FILE_POS 3
00033 #define XSB_FILE_OPEN 4
00034 #define FILE_CLOSE 5
00035 #define FILE_GET 6
00036 #define FILE_PUT 7
00037 #define FILE_GETBUF 8
00038 #define FILE_PUTBUF 9
00039 #define FILE_READ_LINE 10
00040 #define FILE_WRITE_LINE 11
00041 #define FILE_REOPEN 12
00042 #define FILE_CLONE 13
00043 #define PIPE_OPEN 14
00044 #define FD2IOPORT 15
00045 #define FILE_CLEARERR 16
00046 #define TMPFILE_OPEN 17
00047 #define IS_VALID_STREAM 18
00048 #define FILE_READ_LINE_LIST 19
00049 #define STREAM_PROPERTY 20
00050 #define PRINT_OPENFILES 21
00051 #define FILE_END_OF_FILE 22
00052 #define FILE_PEEK 23
00053 #define XSB_STREAM_LOCK_B 24
00054 #define XSB_STREAM_UNLOCK_B 25
00055
00056
00057 #define STREAM_FILE_NAME 0
00058 #define STREAM_MODE 1
00059 #define STREAM_INPUT 2
00060 #define STREAM_OUTPUT 3
00061 #define STREAM_POSITION 4
00062 #define STREAM_END_OF_STREAM 5
00063 #define STREAM_REPOSITIONABLE 6
00064 #define STREAM_CLASS 7
00065 #define STREAM_TYPE 8
00066 #define STREAM_EOF_ACTION 9
00067
00068
00069 #define MAX_OPEN_FILES 55
00070 #define MIN_USR_OPEN_FILE 7
00071
00072
00073
00074 #define FMT_WRITE 1
00075 #define FMT_WRITE_STRING 2
00076 #define FMT_READ 3
00077
00078 #define READ_MODE 0
00079 #define WRITE_MODE 1
00080 #define APPEND_MODE 2
00081
00082 #define FORCE_FILE_CLOSE 0
00083 #define NOFORCE_FILE_CLOSE 1
00084
00085
00086
00087
00088 #define TEXT_FILE_STREAM 1
00089 #define BINARY_FILE_STREAM 2
00090 #define STRING_STREAM 3
00091 #define PIPE_STREAM 4
00092 #define CONSOLE_STREAM 5