diff options
author | George Hazan <ghazan@miranda.im> | 2018-05-17 20:50:08 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-05-17 20:50:08 +0300 |
commit | 523f3588b6f21adcc4bcf3ec3ffad05e2298863a (patch) | |
tree | 428f9611be9bfdba157f5c2056908ee02c9c7ce6 /plugins/MirandaG15/src/StdAfx.h | |
parent | 11e70d8c4e224d80015fffe0378c53abee5fd824 (diff) |
KeyboardNotify, ListeningTo, MessageState, MirandaG15, MirFox, Msg_Export, MsgPopup, mTextControl => CMPlugin
Diffstat (limited to 'plugins/MirandaG15/src/StdAfx.h')
-rw-r--r-- | plugins/MirandaG15/src/StdAfx.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/plugins/MirandaG15/src/StdAfx.h b/plugins/MirandaG15/src/StdAfx.h index deec9ef894..42620aaa32 100644 --- a/plugins/MirandaG15/src/StdAfx.h +++ b/plugins/MirandaG15/src/StdAfx.h @@ -16,10 +16,7 @@ using namespace std;
-#define __NO_CMPLUGIN_NEEDED
-
#include <newpluginapi.h>
-
#include <m_message.h>
#include <m_protosvc.h>
#include <m_database.h>
@@ -32,17 +29,21 @@ using namespace std; #include <m_metacontacts.h>
#include <m_langpack.h>
-//#define IDF_ISIDLE 0x1 // idle has become active (if not set, inactive)
#define IDF_SHORT 0x2 // short idle mode
#define IDF_LONG 0x4 // long idle mode
-//#define IDF_PRIVACY 0x8 // if set, the information provided shouldn't be given to third parties.
#define IDF_ONFORCE 0x10
#define ASSERT assert
+struct CMPlugin : public PLUGIN<CMPlugin>
+{
+ CMPlugin() :
+ PLUGIN<CMPlugin>(nullptr)
+ {}
+};
+
#include "LCDFramework/LCDFramework.h"
-#include "Miranda.h"
#include "CEvent.h"
#include "resource.h"
|