diff options
Diffstat (limited to 'plugins/Spamotron/src/stdafx.h')
-rw-r--r-- | plugins/Spamotron/src/stdafx.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/Spamotron/src/stdafx.h b/plugins/Spamotron/src/stdafx.h index 64f97f4c96..859d41a792 100644 --- a/plugins/Spamotron/src/stdafx.h +++ b/plugins/Spamotron/src/stdafx.h @@ -150,6 +150,13 @@ void queue_message(MCONTACT hContact, DWORD msgtime, wchar_t *message); void bayes_approve_contact(MCONTACT hContact);
void dequeue_messages();
+struct CMPlugin : public PLUGIN<CMPlugin>
+{
+ CMPlugin() :
+ PLUGIN<CMPlugin>(PLUGIN_NAME)
+ {}
+};
+
#ifdef _DEBUG
extern sqlite3 *bayesdbg;
#define BAYESDBG_FILENAME "bayes.dbg"
|