diff options
author | Kirill Volinsky <KVolinsky@COMMON.EU.CORP.TOYOTA.com> | 2017-09-18 18:00:12 +0300 |
---|---|---|
committer | Kirill Volinsky <KVolinsky@COMMON.EU.CORP.TOYOTA.com> | 2017-09-18 18:00:12 +0300 |
commit | b5de62080a2384e9f66d7bafbf971aa5b4b7c0c1 (patch) | |
tree | 23cdae6f0973126efbedd60b8840867e7b6501ba /plugins/StopSpamPlus/src/stdafx.h | |
parent | 1836e8aa8a20b7339fd27c67acef67b7eb446da4 (diff) |
StopSpamPlus: removed template for hooking events
Diffstat (limited to 'plugins/StopSpamPlus/src/stdafx.h')
-rw-r--r-- | plugins/StopSpamPlus/src/stdafx.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/StopSpamPlus/src/stdafx.h b/plugins/StopSpamPlus/src/stdafx.h index b326d51369..44c3d49d29 100644 --- a/plugins/StopSpamPlus/src/stdafx.h +++ b/plugins/StopSpamPlus/src/stdafx.h @@ -25,7 +25,6 @@ typedef std::wstring tstring;
#define PREF_TCHAR2 PREF_UTF
-#include "eventhooker.h"
#include "version.h"
#include "resource.h"
#include "settings.h"
@@ -54,4 +53,8 @@ tstring trim(tstring const &tstr, tstring const &trimChars = L" \f\n\r\t\v"); INT_PTR IsContactPassed(WPARAM wParam, LPARAM /*lParam*/);
INT_PTR RemoveTempContacts(WPARAM wParam,LPARAM lParam);
int OnSystemModulesLoaded(WPARAM wParam, LPARAM lParam);
+int OnDbEventAdded(WPARAM wParam, LPARAM lParam);
+int OnDbEventFilterAdd(WPARAM w, LPARAM l);
+int OnOptInit(WPARAM w, LPARAM l);
+int OnDbContactSettingchanged(WPARAM hContact, LPARAM l);
#endif
|