This repository has been archived by the owner on Oct 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfileio.h
42 lines (34 loc) · 1.75 KB
/
fileio.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* Xep128: Minimalistic Enterprise-128 emulator with focus on "exotic" hardware
Copyright (C)2015,2016 LGB (Gábor Lénárt) <lgblgblgb@gmail.com>
http://xep128.lgb.hu/
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#ifndef __XEP128_FILEIO_H_INCLUDED
#define __XEP128_FILEIO_H_INCLUDED
extern char fileio_cwd[PATH_MAX + 1];
extern void fileio_init ( const char *dir, const char *subdir );
/* Internal functions between emu ROM interface and fileio: */
extern void fileio_func_not_used_call( void );
extern void fileio_func_open_or_create_channel ( int create );
extern void fileio_func_open_channel_remember( void );
extern void fileio_func_close_channel( void );
extern void fileio_func_destroy_channel(void );
extern void fileio_func_read_character(void );
extern void fileio_func_read_block(void );
extern void fileio_func_write_character( void );
extern void fileio_func_write_block( void );
extern void fileio_func_channel_read_status( void );
extern void fileio_func_set_channel_status( void );
extern void fileio_func_special_function( void );
extern void fileio_func_init( void );
extern void fileio_func_buffer_moved( void );
#endif