summaryrefslogtreecommitdiff
path: root/plugins/SimpleAR/src/stdafx.h
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2015-07-26 12:33:08 +0000
committerKirill Volinsky <mataes2007@gmail.com>2015-07-26 12:33:08 +0000
commit4a966be3c32e745b2567e51c27766942f798f77d (patch)
tree82f066d0b5d6d3e90350382101810cb6f8da0677 /plugins/SimpleAR/src/stdafx.h
parentfffcd98b6f25af8d7a7895302e3b1ff64344d526 (diff)
common projects
git-svn-id: http://svn.miranda-ng.org/main/trunk@14724 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SimpleAR/src/stdafx.h')
-rw-r--r--plugins/SimpleAR/src/stdafx.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/plugins/SimpleAR/src/stdafx.h b/plugins/SimpleAR/src/stdafx.h
new file mode 100644
index 0000000000..99e944ebe6
--- /dev/null
+++ b/plugins/SimpleAR/src/stdafx.h
@@ -0,0 +1,30 @@
+#include <windows.h>
+#include <time.h>
+
+#include <newpluginapi.h>
+#include <m_clist.h>
+#include <m_langpack.h>
+#include <m_database.h>
+#include <m_options.h>
+#include <m_protosvc.h>
+#include <m_string.h>
+
+#include <m_variables.h>
+
+#include "Resource.h"
+#include "Version.h"
+
+#define protocolname "SimpleAutoReplier" //no spaces here :)
+
+#define KEY_ENABLED "Enabled"
+#define KEY_HEADING "Heading"
+#define KEY_REPEATINTERVAL "RepeatInterval"
+
+//General
+extern HINSTANCE hinstance;
+extern INT interval;
+extern TCHAR *ptszDefaultMsg[6];
+extern HGENMENU hEnableMenu;
+extern IconItemT iconList[];
+
+extern INT OptInit(WPARAM wParam, LPARAM lParam);