diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-06-10 13:29:52 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-06-10 13:29:52 +0000 |
| commit | a6142ab7ab58f69a3f1a034db4bdf1eff24d3dd6 (patch) | |
| tree | ef00c3ec8074ccb080b221c7d1dd4b3d03c8fd87 /uisimulator/common/file.h | |
| parent | 5fc1b64ae051e454d2b3bf3a20be5d88937e55e7 (diff) | |
| download | rockbox-a6142ab7ab58f69a3f1a034db4bdf1eff24d3dd6.zip rockbox-a6142ab7ab58f69a3f1a034db4bdf1eff24d3dd6.tar.gz rockbox-a6142ab7ab58f69a3f1a034db4bdf1eff24d3dd6.tar.bz2 rockbox-a6142ab7ab58f69a3f1a034db4bdf1eff24d3dd6.tar.xz | |
Finally, the archos directory sandbox works in the same way for both X11 and win32 simulators. Unfortunately, this breaks the VC++ compatibility. Also, the plugin API now supports DEBUGF. Last, but not least, we have a new plugin, vbrfix.rock.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4726 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/common/file.h')
| -rw-r--r-- | uisimulator/common/file.h | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/uisimulator/common/file.h b/uisimulator/common/file.h new file mode 100644 index 0000000..8d91b61 --- /dev/null +++ b/uisimulator/common/file.h @@ -0,0 +1,71 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2002 by Daniel Stenberg <daniel@haxx.se> + * + * All files in this archive are subject to the GNU General Public License. + * See the file COPYING in the source tree root for full license agreement. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ + +#ifndef _SIM_FILE_H_ +#define _SIM_FILE_H_ + +#ifdef WIN32 +#include <io.h> +#include <fcntl.h> +#else +#include <stdio.h> +#endif + +#include <sys/types.h> + +#ifdef WIN32 +#ifndef _commit +extern int _commit( int handle ); +#endif +#endif + +int sim_open(const char *name, int opts); +int sim_close(int fd); +int sim_rename(const char *oldpath, const char *newpath); +int sim_filesize(int fd); +int sim_creat(const char *name, mode_t mode); +int sim_remove(const char *name); + +#ifndef NO_REDEFINES_PLEASE +#define open(x,y) sim_open(x,y) +#define close(x) sim_close(x) +#define filesize(x) sim_filesize(x) +#define creat(x,y) sim_creat(x,y) +#define remove(x) sim_remove(x) +#define rename(x,y) sim_rename(x,y) +#ifdef WIN32 +#define fsync _commit +#endif +#endif + +#include "../../firmware/include/file.h" + +#ifndef WIN32 +int open(const char* pathname, int flags); +int close(int fd); +int printf(const char *format, ...); +int ftruncate(int fd, off_t length); +int fsync(int fd); + +off_t lseek(int fildes, off_t offset, int whence); +ssize_t read(int fd, void *buf, size_t count); +ssize_t write(int fd, const void *buf, size_t count); +#endif + +#endif |