- Moved PFS header from Apple2 directory to 6502 directory as we're going to have other PFS implementations.

- Completed declarations.
This commit is contained in:
oliverschmidt 2010-03-27 14:46:08 +00:00
parent bd6cd03c1d
commit 6769e6a99f
1 changed files with 3 additions and 1 deletions

View File

@ -30,7 +30,7 @@
*
* Author: Oliver Schmidt <ol.sc@web.de>
*
* $Id: pfs.h,v 1.2 2009/09/13 19:07:34 oliverschmidt Exp $
* $Id: pfs.h,v 1.1 2010/03/27 14:46:08 oliverschmidt Exp $
*/
#ifndef __PFS_H__
@ -39,6 +39,8 @@
int __fastcall__ pfs_open(const char* name, int flags);
void __fastcall__ pfs_close(int fd);
int __fastcall__ pfs_read(int fd, void* buf, unsigned int len);
int __fastcall__ pfs_write(int fd, void* buf, unsigned int len);
int __fastcall__ pfs_seek(int fd, int offset, int whence);
int __fastcall__ pfs_remove(const char *name);
#endif /* __PFS_H__ */