mirror of
https://github.com/oliverschmidt/contiki.git
synced 2025-01-18 18:30:29 +00:00
- 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:
parent
bd6cd03c1d
commit
6769e6a99f
@ -30,7 +30,7 @@
|
|||||||
*
|
*
|
||||||
* Author: Oliver Schmidt <ol.sc@web.de>
|
* 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__
|
#ifndef __PFS_H__
|
||||||
@ -39,6 +39,8 @@
|
|||||||
int __fastcall__ pfs_open(const char* name, int flags);
|
int __fastcall__ pfs_open(const char* name, int flags);
|
||||||
void __fastcall__ pfs_close(int fd);
|
void __fastcall__ pfs_close(int fd);
|
||||||
int __fastcall__ pfs_read(int fd, void* buf, unsigned int len);
|
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_seek(int fd, int offset, int whence);
|
||||||
|
int __fastcall__ pfs_remove(const char *name);
|
||||||
|
|
||||||
#endif /* __PFS_H__ */
|
#endif /* __PFS_H__ */
|
Loading…
x
Reference in New Issue
Block a user