mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
10 lines
155 B
C
10 lines
155 B
C
#ifdef __APPLE__
|
|
#define __WXMAC__
|
|
#define __WXOSX__
|
|
#include "wx/wxcocoa.h"
|
|
#elif defined _WIN32
|
|
#include "wx/wxmsw.h"
|
|
#else
|
|
#include "wx/wxgtk.h"
|
|
#endif
|