mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-13 01:29:11 +01:00
d14efe561b
long become wxWidgets 2.9.2, which in turn is expected to be the last 2.9 release before the 3.0 stable release. Since the full wxWidgets distribution is rather large, I have imported only the parts that we use, on a subdirectory basis: art include/wx/*.* include/wx/aui include/wx/cocoa include/wx/generic include/wx/gtk include/wx/meta include/wx/msw include/wx/osx include/wx/persist include/wx/private include/wx/protocol include/wx/unix src/aui src/common src/generic src/gtk src/msw src/osx src/unix git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7380 8ced0084-cf51-0410-be5f-012b33b47a6e
44 lines
766 B
C
44 lines
766 B
C
/*
|
|
* Name: wx/msw/genrcdefs.h
|
|
* Purpose: Emit preprocessor symbols into rcdefs.h for resource compiler
|
|
* Author: Mike Wetherell
|
|
* RCS-ID: $Id: genrcdefs.h 46936 2007-06-25 14:04:34Z VS $
|
|
* Copyright: (c) 2005 Mike Wetherell
|
|
* Licence: wxWindows licence
|
|
*/
|
|
|
|
#define EMIT(line) line
|
|
|
|
EMIT(#ifndef _WX_RCDEFS_H)
|
|
EMIT(#define _WX_RCDEFS_H)
|
|
|
|
#ifdef _MSC_FULL_VER
|
|
EMIT(#define WX_MSC_FULL_VER _MSC_FULL_VER)
|
|
#endif
|
|
|
|
#ifdef _M_AMD64
|
|
EMIT(#define WX_CPU_AMD64)
|
|
#endif
|
|
|
|
#ifdef _M_ARM
|
|
EMIT(#define WX_CPU_ARM)
|
|
#endif
|
|
|
|
#ifdef _M_IA64
|
|
EMIT(#define WX_CPU_IA64)
|
|
#endif
|
|
|
|
#if defined _M_IX86 || defined _X86_
|
|
EMIT(#define WX_CPU_X86)
|
|
#endif
|
|
|
|
#ifdef _M_PPC
|
|
EMIT(#define WX_CPU_PPC)
|
|
#endif
|
|
|
|
#ifdef _M_SH
|
|
EMIT(#define WX_CPU_SH)
|
|
#endif
|
|
|
|
EMIT(#endif)
|