diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-08-01 18:54:33 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-08-01 18:54:33 +0000 |
commit | 1e2b37b3408c3b732e221aadbf92edc13a77005b (patch) | |
tree | a5c205861dadc6c805c37172be3d98893d7d98e3 /plugins/StopSpamMod/src/stdafx.h | |
parent | d6dd9e2ed44526bbf9fc51f3c3e466730da322ae (diff) |
stopspam_mod: common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@14785 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/StopSpamMod/src/stdafx.h')
-rwxr-xr-x | plugins/StopSpamMod/src/stdafx.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/plugins/StopSpamMod/src/stdafx.h b/plugins/StopSpamMod/src/stdafx.h new file mode 100755 index 0000000000..15c247ada0 --- /dev/null +++ b/plugins/StopSpamMod/src/stdafx.h @@ -0,0 +1,37 @@ +#include <windows.h> + +using namespace std; +#include <fstream> +#include <string> + + +#include <newpluginapi.h> +#include <m_database.h> +#include <m_protosvc.h> +#include <m_options.h> +#include <m_langpack.h> +#include <m_clist.h> +#include <m_skin.h> +#include <m_contacts.h> +#include <m_system_cpp.h> + +#include <m_variables.h> +#include <m_folders.h> + +#include <boost\thread.hpp> +#include <boost\regex.hpp> +#include <boost\algorithm\string.hpp> +#include <boost\nondet_random.hpp> +#include <boost\random\variate_generator.hpp> +#include <boost\random\uniform_int.hpp> + +#include "globals.h" +#include "stopspam.h" +#include "eventhooker.h" +#include "version.h" +#include "resource.h" +#include "utilities.h" +#include "include\utf8.h" + +extern HINSTANCE hInst; +extern HANDLE hStopSpamLogDirH; |