diff options
| author | Robert Hak <adiamas@rockbox.org> | 2003-07-24 18:56:30 +0000 |
|---|---|---|
| committer | Robert Hak <adiamas@rockbox.org> | 2003-07-24 18:56:30 +0000 |
| commit | c4ec0a2a3d6ba807fa39a844699bb555a6ef6964 (patch) | |
| tree | 568401b4ec50520ff79366f777433e441d691933 /apps/plugin.h | |
| parent | fe18ca56a5f63ced7221717c0e4f1805516c4846 (diff) | |
| download | rockbox-c4ec0a2a3d6ba807fa39a844699bb555a6ef6964.zip rockbox-c4ec0a2a3d6ba807fa39a844699bb555a6ef6964.tar.gz rockbox-c4ec0a2a3d6ba807fa39a844699bb555a6ef6964.tar.bz2 rockbox-c4ec0a2a3d6ba807fa39a844699bb555a6ef6964.tar.xz | |
#defining around each function is not a good idea after all
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3881 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 47f226a..3d6859b 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -125,11 +125,7 @@ struct plugin_api { /* file */ int (*open)(const char* pathname, int flags); int (*close)(int fd); -#ifdef SIMULATOR - ssize_t (*read)(int fd, void* buf, int count); -#else int (*read)(int fd, void* buf, int count); -#endif int (*lseek)(int fd, int offset, int whence); int (*creat)(const char *pathname, int mode); int (*write)(int fd, void* buf, int count); |