- Converting dialog windows to use wxWidgets instead of win32.
- Currently only the about box is converted.
- The debug versions in windows will not compile yet.
- If you want to use the old version, remove #define USE_WXWIDGETS in nJoy.h



git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@85 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Laurence Muller
2008-07-26 12:28:17 +00:00
parent d522d8ad86
commit 82137a0ee9
8 changed files with 4339 additions and 35 deletions

View File

@ -29,6 +29,10 @@
//
//////////////////////////////////////////////////////////////////////////////////////////
// Set this if you want to use the new wxWidgets GUI
#define USE_WXWIDGETS
#ifdef _WIN32
#define _CRT_SECURE_NO_WARNINGS
@ -36,6 +40,10 @@
#include <tchar.h>
#endif
#ifdef USE_WXWIDGETS
#include "GUI/AboutBox.h"
#endif
#include <vector>
#include <stdio.h>
#include <time.h>