1 |
|
/* |
2 |
|
* extfs.h - MacOS file system for access native file system access |
3 |
|
* |
4 |
< |
* Basilisk II (C) 1997-1999 Christian Bauer |
4 |
> |
* Basilisk II (C) 1997-2000 Christian Bauer |
5 |
|
* |
6 |
|
* This program is free software; you can redistribute it and/or modify |
7 |
|
* it under the terms of the GNU General Public License as published by |
40 |
|
extern uint32 get_rfork_size(const char *path); |
41 |
|
extern int open_rfork(const char *path, int flag); |
42 |
|
extern void close_rfork(const char *path, int fd); |
43 |
< |
extern size_t extfs_read(int fd, void *buffer, size_t length); |
44 |
< |
extern size_t extfs_write(int fd, void *buffer, size_t length); |
43 |
> |
extern ssize_t extfs_read(int fd, void *buffer, size_t length); |
44 |
> |
extern ssize_t extfs_write(int fd, void *buffer, size_t length); |
45 |
> |
extern bool extfs_remove(const char *path); |
46 |
> |
extern bool extfs_rename(const char *old_path, const char *new_path); |
47 |
|
|
48 |
|
// Maximum length of full path name |
49 |
|
const int MAX_PATH_LENGTH = 1024; |