mirror of https://github.com/PCSX2/pcsx2.git
gsnull: Remove GSsetWindowInfo
PCSX2 doesn't actually use it. GSnull also seems a bit behind the current GS plugin API - perhaps it should be removed.
This commit is contained in:
parent
6c7cfe9e4d
commit
bfeb3e801a
|
@ -220,16 +220,6 @@ typedef struct _GSdriverInfo {
|
|||
void *common;
|
||||
} GSdriverInfo;
|
||||
|
||||
#ifdef _WIN32
|
||||
// TODO: Only GSNull uses this? Yet it doesn't seem to be used by PCSX2.
|
||||
#include <windows.h>
|
||||
typedef struct _winInfo { // unsupported values must be set to zero
|
||||
HWND hWnd;
|
||||
HMENU hMenu;
|
||||
HWND hStatusWnd;
|
||||
} winInfo;
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
|
|
@ -33,7 +33,6 @@ EXPORTS
|
|||
GSreset @28
|
||||
GSwriteCSR @29
|
||||
GSgetDriverInfo @30
|
||||
GSsetWindowInfo @31
|
||||
GSfreeze @32
|
||||
GSconfigure @33
|
||||
GSabout @34
|
||||
|
|
|
@ -68,8 +68,3 @@ void GSProcessMessages()
|
|||
void HandleKeyEvent(keyEvent *ev)
|
||||
{
|
||||
}
|
||||
|
||||
EXPORT_C_(s32) GSsetWindowInfo(winInfo *info)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue