bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 1 | /* io.h - Virtual disk input/output |
| 2 | |
| 3 | Copyright (C) 1993 Werner Almesberger <werner.almesberger@lrc.di.epfl.ch> |
| 4 | Copyright (C) 1998 Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de> |
Matt Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 5 | Copyright (C) 2008-2014 Daniel Baumann <mail@daniel-baumann.ch> |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 6 | |
| 7 | This program is free software: you can redistribute it and/or modify |
| 8 | it under the terms of the GNU General Public License as published by |
| 9 | the Free Software Foundation, either version 3 of the License, or |
| 10 | (at your option) any later version. |
| 11 | |
| 12 | This program is distributed in the hope that it will be useful, |
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | GNU General Public License for more details. |
| 16 | |
| 17 | You should have received a copy of the GNU General Public License |
| 18 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 19 | |
Matt Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 20 | The complete text of the GNU General Public License |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 21 | can be found in /usr/share/common-licenses/GPL-3 file. |
| 22 | */ |
| 23 | |
| 24 | /* FAT32, VFAT, Atari format support, and various fixes additions May 1998 |
| 25 | * by Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de> */ |
| 26 | |
| 27 | #ifndef _IO_H |
| 28 | #define _IO_H |
| 29 | |
Matt Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 30 | #include <fcntl.h> /* for loff_t */ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 31 | |
| 32 | loff_t llseek(int fd, loff_t offset, int whence); |
| 33 | |
| 34 | /* lseek() analogue for large offsets. */ |
| 35 | |
| 36 | void fs_open(char *path, int rw); |
| 37 | |
Matt Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 38 | /* Opens the filesystem PATH. If RW is zero, the filesystem is opened |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 39 | read-only, otherwise, it is opened read-write. */ |
| 40 | |
| 41 | void fs_read(loff_t pos, int size, void *data); |
| 42 | |
| 43 | /* Reads SIZE bytes starting at POS into DATA. Performs all applicable |
| 44 | changes. */ |
| 45 | |
| 46 | int fs_test(loff_t pos, int size); |
| 47 | |
| 48 | /* Returns a non-zero integer if SIZE bytes starting at POS can be read without |
| 49 | errors. Otherwise, it returns zero. */ |
| 50 | |
| 51 | void fs_write(loff_t pos, int size, void *data); |
| 52 | |
| 53 | /* If write_immed is non-zero, SIZE bytes are written from DATA to the disk, |
| 54 | starting at POS. If write_immed is zero, the change is added to a list in |
| 55 | memory. */ |
| 56 | |
| 57 | int fs_close(int write); |
| 58 | |
Matt Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 59 | /* Closes the filesystem, performs all pending changes if WRITE is non-zero |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 60 | and removes the list of changes. Returns a non-zero integer if the file |
| 61 | system has been changed since the last fs_open, zero otherwise. */ |
| 62 | |
| 63 | int fs_changed(void); |
| 64 | |
Matt Mower | 18794c8 | 2015-11-11 16:22:45 -0600 | [diff] [blame] | 65 | /* Determines whether the filesystem has changed. See fs_close. */ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 66 | |
| 67 | extern unsigned device_no; |
| 68 | |
| 69 | /* Major number of device (0 if file) and size (in 512 byte sectors) */ |
| 70 | |
| 71 | #endif |