4 * Copyright 2004 Develer S.r.l. (http://www.develer.com/)
5 * Copyright 1999, 2000, 2001, 2003 Bernardo Innocenti <bernie@develer.com>
6 * This file is part of DevLib - See devlib/README for information.
9 * \brief Virtual KFile I/O interface.
12 * \author Bernardo Innocenti <bernie@develer.com>
17 * Revision 1.1 2004/08/04 02:40:25 bernie
18 * Add virtual file I/O interface.
29 typedef size_t (*ReadFunc_t) (struct _KFile *fd, char *buf, size_t size);
30 typedef size_t (*WriteFunc_t) (struct _KFile *fd, const char *buf, size_t size);
31 typedef bool (*SeekFunc_t) (struct _KFile *fd, int32_t offset);
32 typedef bool (*OpenFunc_t) (struct _KFile *fd, const char *name, int mode);
33 typedef bool (*CloseFunc_t) (struct _KFile *fd);
36 /* Context data for callback functions which operate on
47 /* NOTE: these must _NOT_ be size_t on 16bit CPUs! */
52 #endif /* MWARE_KFILE_H */