From 8c5e3f833b8d0f92c46679077acd755ed6075e05 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 17 Jan 2003 16:50:36 +0000 Subject: added stub functions for the rename git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3126 a1c6a512-1295-4272-9138-f99709370657 --- uisimulator/win32/io.c | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 uisimulator/win32/io.c (limited to 'uisimulator/win32/io.c') 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; +} -- cgit v1.2.3