Plugin specs change please comment
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1820 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
727cef5fcd
commit
7f7c55d7a1
|
@ -31,7 +31,6 @@
|
||||||
// simulate something that looks like win32
|
// simulate something that looks like win32
|
||||||
// long term, kill these
|
// long term, kill these
|
||||||
|
|
||||||
// glxew defines BOOL. evil.
|
|
||||||
#define HWND void*
|
#define HWND void*
|
||||||
#define HINSTANCE void*
|
#define HINSTANCE void*
|
||||||
#endif
|
#endif
|
||||||
|
@ -45,7 +44,7 @@ extern "C" {
|
||||||
#define PLUGIN_TYPE_DVD 2
|
#define PLUGIN_TYPE_DVD 2
|
||||||
#define PLUGIN_TYPE_PAD 3
|
#define PLUGIN_TYPE_PAD 3
|
||||||
#define PLUGIN_TYPE_AUDIO 4
|
#define PLUGIN_TYPE_AUDIO 4
|
||||||
#define PLUGIN_TYPE_COMPILER 5
|
#define PLUGIN_TYPE_COMPILER 5
|
||||||
#define PLUGIN_TYPE_DSP 6
|
#define PLUGIN_TYPE_DSP 6
|
||||||
#define PLUGIN_TYPE_WIIMOTE 7
|
#define PLUGIN_TYPE_WIIMOTE 7
|
||||||
|
|
||||||
|
@ -61,12 +60,12 @@ typedef struct
|
||||||
char Name[100]; // Name of the DLL
|
char Name[100]; // Name of the DLL
|
||||||
} PLUGIN_INFO;
|
} PLUGIN_INFO;
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
HWND mainWindow;
|
void *eventHandler;
|
||||||
HWND displayWindow;
|
void *config;
|
||||||
HINSTANCE hInstance;
|
void *messageLogger;
|
||||||
} OSData;
|
} PLUGIN_GLOBALS;
|
||||||
|
|
||||||
#if defined(__cplusplus)
|
#if defined(__cplusplus)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue