1
0
Fork 0
forked from len0rd/rockbox

Win32 file functions were not being redefined correctly for plugins.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3890 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Hardeep Sidhu 2003-07-25 23:28:32 +00:00
parent 1f6021ba89
commit 113ac0701b

View file

@ -31,9 +31,9 @@ extern int _commit( int handle );
int win32_rename(char *oldpath, char *newpath);
int win32_filesize(int fd);
#define rename(x,y) win32_rename(x,y)
#define filesize(x) win32_filesize(x)
#define fsync(x) _commit(x)
#define rename win32_rename
#define filesize win32_filesize
#define fsync _commit
#include "../../firmware/include/file.h"