diff options
author | George Hazan <ghazan@miranda.im> | 2018-05-16 20:48:02 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-05-16 20:48:09 +0300 |
commit | 91bf98433bfabfb2274511525b5be97d8e8d27f7 (patch) | |
tree | 71c0ece3bcad56671caa56f4e54e031b46359d0e /plugins/Scriver/src/stdafx.h | |
parent | 20cead9e5014a830b52d74ebdfb1833eda015777 (diff) |
Scriver -> CMPlugin
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
|