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/file.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 uisimulator/win32/file.h (limited to 'uisimulator/win32/file.h') 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 + * + * 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 +#include + +int win32_rename(char *oldpath, char *newpath); + +#define rename(x,y) win32_rename(x,y) + +#include "../../firmware/common/file.h" + -- cgit v1.2.3