Use appconfig.h instead of cfg/config.h.
[bertos.git] / mware / kfile.h
index 212027facbad52856935f1c63964670d666893af..3e1f469a9bc56354a58b78d83a61c9e9b7417c6c 100755 (executable)
@@ -3,7 +3,7 @@
  * <!--
  * Copyright 2004 Develer S.r.l. (http://www.develer.com/)
  * Copyright 1999, 2000, 2001, 2003 Bernardo Innocenti <bernie@develer.com>
- * This file is part of DevLib - See devlib/README for information.
+ * This file is part of DevLib - See README.devlib for information.
  * -->
  *
  * \brief Virtual KFile I/O interface.
 
 /*#*
  *#* $Log$
+ *#* Revision 1.5  2005/11/04 16:20:02  bernie
+ *#* Fix reference to README.devlib in header.
+ *#*
+ *#* Revision 1.4  2005/04/11 19:10:28  bernie
+ *#* Include top-level headers from cfg/ subdir.
+ *#*
+ *#* Revision 1.3  2004/12/31 16:43:23  bernie
+ *#* Move seek function last in VT.
+ *#*
  *#* Revision 1.2  2004/08/25 14:12:09  rasky
  *#* Aggiornato il comment block dei log RCS
  *#*
@@ -24,7 +33,7 @@
 #ifndef MWARE_KFILE_H
 #define MWARE_KFILE_H
 
-#include <compiler.h>
+#include <cfg/compiler.h>
 
 /* fwd decl */
 struct _KFile;
@@ -43,9 +52,9 @@ typedef struct _KFile
 {
        ReadFunc_t              read;
        WriteFunc_t             write;
-       SeekFunc_t              seek;
        OpenFunc_t              open;
        CloseFunc_t             close;
+       SeekFunc_t              seek;
 
        /* NOTE: these must _NOT_ be size_t on 16bit CPUs! */
        uint32_t                SeekPos;