diff options
Diffstat (limited to 'plugins/SimpleAR/src/stdafx.h')
-rw-r--r-- | plugins/SimpleAR/src/stdafx.h | 30 |
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);
|