//============================================================================ // // SSSS tt lll lll // SS SS tt ll ll // SS tttttt eeee ll ll aaaa // SSSS tt ee ee ll ll aa // SS tt eeeeee ll ll aaaaa -- "An Atari 2600 VCS Emulator" // SS SS tt ee ll ll aa aa // SSSS ttt eeeee llll llll aaaaa // // Copyright (c) 1995-2007 by Bradford W. Mott and the Stella team // // See the file "license" for information on usage and redistribution of // this file, and for a DISCLAIMER OF ALL WARRANTIES. // // Windows CE Port by Kostas Nakos // $Id: missing.h,v 1.6 2007/01/23 09:44:55 knakos Exp $ //============================================================================ #ifndef _WCE_MISSING_H_ #define _WCE_MISSING_H_ #include // WCE 300 does not support exception handling well // so we remove all catch blocks #define try if (1) #define catch(a) else if (0) extern char *msg; #define throw // #define stricmp _stricmp #define strdup _strdup #pragma warning(disable: 4800) #pragma warning(disable: 4244) #pragma warning(disable: 4786) typedef unsigned int uintptr_t; int time(int dummy); char *getcwd(void); #endif