diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-01-17 16:50:36 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-01-17 16:50:36 +0000 |
commit | 8c5e3f833b8d0f92c46679077acd755ed6075e05 (patch) | |
tree | fd0111fbff73d788f2a552eec2e37529dc2c5fb3 /uisimulator | |
parent | 37b0c075cf8007b6bece5e8eaaf9bfa4756273f1 (diff) | |
download | rockbox-8c5e3f833b8d0f92c46679077acd755ed6075e05.tar.gz rockbox-8c5e3f833b8d0f92c46679077acd755ed6075e05.zip |
added stub functions for the rename
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3126 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator')
-rw-r--r-- | uisimulator/win32/Makefile | 2 | ||||
-rw-r--r-- | uisimulator/win32/file.h | 28 | ||||
-rw-r--r-- | uisimulator/win32/io.c | 38 |
3 files changed, 67 insertions, 1 deletions
diff --git a/uisimulator/win32/Makefile b/uisimulator/win32/Makefile index 6e377a9ac6..6daf8d70e1 100644 --- a/uisimulator/win32/Makefile +++ b/uisimulator/win32/Makefile @@ -86,7 +86,7 @@ endif SRCS = button.c dir-win32.c lcd-win32.c panic-win32.c thread-win32.c \ debug-win32.c kernel.c string-win32.c uisw32.c stubs.c \ - $(APPS) $(MENUS) $(FIRMSRCS) strtok.c sim_icons.c + $(APPS) $(MENUS) $(FIRMSRCS) strtok.c sim_icons.c io.c OBJS := $(OBJDIR)/lang.o $(SRCS:%.c=$(OBJDIR)/%.o) $(OBJDIR)/uisw32-res.o diff --git a/uisimulator/win32/file.h b/uisimulator/win32/file.h new file mode 100644 index 0000000000..eb1ab82fa9 --- /dev/null +++ b/uisimulator/win32/file.h @@ -0,0 +1,28 @@ +/*************************************************************************** + * __________ __ ___. + * 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. + * + ****************************************************************************/ + +#include <stdio.h> +#include <string.h> + +int win32_rename(char *oldpath, char *newpath); + +#define rename(x,y) win32_rename(x,y) + +#include "../../firmware/common/file.h" + diff --git a/uisimulator/win32/io.c b/uisimulator/win32/io.c new file mode 100644 index 0000000000..974fdadbbd --- /dev/null +++ b/uisimulator/win32/io.c @@ -0,0 +1,38 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2002 Daniel Stenberg + * + * 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. + * + ****************************************************************************/ + +#include "file.h" +#include "debug.h" + +#define SIMULATOR_ARCHOS_ROOT "archos" + +int win32_rename(char *oldpath, char* newpath) +{ + char buffer1[256]; + char buffer2[256]; + + if(oldpath[0] == '/') { + sprintf(buffer1, "%s%s", SIMULATOR_ARCHOS_ROOT, oldpath); + sprintf(buffer2, "%s%s", SIMULATOR_ARCHOS_ROOT, newpath); + + debugf("We rename the real file '%s' to '%s'\n", buffer1, buffer2); + return rename(buffer1, buffer2); + } + return -1; +} |