// Emacs style mode select -*- C++ -*- //----------------------------------------------------------------------------- // // Copyright (C) 2004 by Sonic Team Jr. // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; either version 2 // of the License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // DESCRIPTION: // stub and replacement "ANSI" C functions for use under OpenXDK // //----------------------------------------------------------------------------- #include "../../doomdef.h" #include "xboxhelp.h" #ifdef __GNUC__ #include #else #include #endif char *getcwd(char *_buf, size_t _size ) { (void)_buf; (void)_size; return _buf; } #ifdef _MSC_VER int mkdir(const char *path) { (void)path; return 0; } #elif 0 //__GNUC__? int mkdir(const char *path, mode_t _mode) { (void)path; (void)_mode; return 0; } #endif int chdir (const char *__path ) { (void)__path; return 0; } time_t time(time_t *T) { long returntime = 0; (void)T; /* SYSTEMTIME st; FILETIME stft; INT64 ftli; if (!T) return returntime; GetSystemTime(&st); SystemTimeToFileTime(&st,&stft); CopyMemory(&ftli,&stft,sizeof (LARGE_INTEGER)); returntime = (long)ftli; *T = returntime; */ return returntime; } #ifdef _MSC_VER #include void __cdecl _RTC_Initialize(void) { } char *getenv(const char *__env) { __env = NULL; return NULL; } int putenv(const char *__env) { __env = NULL; return 0; } #endif