From bfeb3e801afa1c482654f702a7c61642dae8a441 Mon Sep 17 00:00:00 2001 From: Jonathan Li Date: Sat, 27 Feb 2016 00:30:06 +0000 Subject: [PATCH] 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. --- common/include/PS2Edefs.h | 10 ---------- plugins/GSnull/Windows/GS.def | 1 - plugins/GSnull/Windows/GSwin.cpp | 5 ----- 3 files changed, 16 deletions(-) diff --git a/common/include/PS2Edefs.h b/common/include/PS2Edefs.h index 587bb3dc61..e73c620ff6 100644 --- a/common/include/PS2Edefs.h +++ b/common/include/PS2Edefs.h @@ -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 -typedef struct _winInfo { // unsupported values must be set to zero - HWND hWnd; - HMENU hMenu; - HWND hStatusWnd; -} winInfo; -#endif - #ifdef __cplusplus extern "C" { #endif diff --git a/plugins/GSnull/Windows/GS.def b/plugins/GSnull/Windows/GS.def index 3834690536..ad89477abc 100644 --- a/plugins/GSnull/Windows/GS.def +++ b/plugins/GSnull/Windows/GS.def @@ -33,7 +33,6 @@ EXPORTS GSreset @28 GSwriteCSR @29 GSgetDriverInfo @30 - GSsetWindowInfo @31 GSfreeze @32 GSconfigure @33 GSabout @34 diff --git a/plugins/GSnull/Windows/GSwin.cpp b/plugins/GSnull/Windows/GSwin.cpp index b7b48416e9..508ba40347 100644 --- a/plugins/GSnull/Windows/GSwin.cpp +++ b/plugins/GSnull/Windows/GSwin.cpp @@ -68,8 +68,3 @@ void GSProcessMessages() void HandleKeyEvent(keyEvent *ev) { } - -EXPORT_C_(s32) GSsetWindowInfo(winInfo *info) -{ - return 0; -}