diff options
Diffstat (limited to 'plugins/Scriver/src/stdafx.h')
-rw-r--r-- | plugins/Scriver/src/stdafx.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/plugins/Scriver/src/stdafx.h b/plugins/Scriver/src/stdafx.h index 6a4765256a..a41e36b9de 100644 --- a/plugins/Scriver/src/stdafx.h +++ b/plugins/Scriver/src/stdafx.h @@ -88,7 +88,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define CFM_WEIGHT 0x00400000
#endif
-extern HINSTANCE g_hInst;
extern HCURSOR hDragCursor;
extern ITaskbarList3 *pTaskbarInterface;
@@ -118,6 +117,13 @@ int StatusIconPressed(WPARAM wParam, LPARAM lParam); #include "statusicon.h"
#include "chat.h"
+struct CMPlugin : public PLUGIN<CMPlugin>
+{
+ CMPlugin() :
+ PLUGIN<CMPlugin>(SRMM_MODULE)
+ {}
+};
+
extern GlobalMessageData g_dat;
#endif
|