From: bernie Date: Fri, 31 Dec 2004 16:43:23 +0000 (+0000) Subject: Move seek function last in VT. X-Git-Tag: 1.0.0~922 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=1b162db6e5316e752fc583017575e25dbc6943a7;p=bertos.git Move seek function last in VT. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@319 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/mware/kfile.h b/mware/kfile.h index 212027fa..e2830054 100755 --- a/mware/kfile.h +++ b/mware/kfile.h @@ -14,6 +14,9 @@ /*#* *#* $Log$ + *#* 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 *#* @@ -43,9 +46,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;