diff options
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; |