diff options
Diffstat (limited to 'plugins/FloatingContacts/src/stdafx.h')
-rw-r--r-- | plugins/FloatingContacts/src/stdafx.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/plugins/FloatingContacts/src/stdafx.h b/plugins/FloatingContacts/src/stdafx.h index 6eb9a4eaf1..82a8666bb7 100644 --- a/plugins/FloatingContacts/src/stdafx.h +++ b/plugins/FloatingContacts/src/stdafx.h @@ -8,8 +8,6 @@ #include <Shlwapi.h>
#include <CommCtrl.h>
-#define __NO_CMPLUGIN_NEEDED
-
#include <newpluginapi.h>
#include <m_system.h>
#include <m_skin.h>
@@ -34,6 +32,15 @@ /////////////////////////////////////////////////////////////////////////////
+#define MODULE "FloatingContacts"
+
+struct CMPlugin : public PLUGIN<CMPlugin>
+{
+ CMPlugin() :
+ PLUGIN<CMPlugin>(MODULE)
+ {}
+};
+
#endif // #ifndef __STDHDR_H__
/////////////////////////////////////////////////////////////////////////////
|