First Commit of my working state
[simh.git] / sim_fio.h
1 /* sim_fio.h: simulator file I/O library headers
2
3 Copyright (c) 1993-2006, Robert M Supnik
4
5 Permission is hereby granted, free of charge, to any person obtaining a
6 copy of this software and associated documentation files (the "Software"),
7 to deal in the Software without restriction, including without limitation
8 the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 and/or sell copies of the Software, and to permit persons to whom the
10 Software is furnished to do so, subject to the following conditions:
11
12 The above copyright notice and this permission notice shall be included in
13 all copies or substantial portions of the Software.
14
15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 ROBERT M SUPNIK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19 IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
22 Except as contained in this notice, the name of Robert M Supnik shall not be
23 be used in advertising or otherwise to promote the sale, use or other dealings
24 in this Software without prior written authorization from Robert M Supnik.
25
26 15-May-06 RMS Added sim_fsize_name
27 16-Aug-05 RMS Fixed C++ declaration and cast problems
28 02-Jan-04 RMS Split out from SCP
29 */
30
31 #ifndef _SIM_FIO_H_
32 #define _SIM_FIO_H_ 0
33
34 #define FLIP_SIZE (1 << 16) /* flip buf size */
35 #define fxread(a,b,c,d) sim_fread (a, b, c, d)
36 #define fxwrite(a,b,c,d) sim_fwrite (a, b, c, d)
37
38 int32 sim_finit (void);
39 FILE *sim_fopen (const char *file, const char *mode);
40 int sim_fseek (FILE *st, t_addr offset, int whence);
41 size_t sim_fread (void *bptr, size_t size, size_t count, FILE *fptr);
42 size_t sim_fwrite (void *bptr, size_t size, size_t count, FILE *fptr);
43 uint32 sim_fsize (FILE *fptr);
44 uint32 sim_fsize_name (char *fname);
45
46 #endif