diff options
author | mataes2007 <mataes2007@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2011-05-04 19:19:31 +0000 |
---|---|---|
committer | mataes2007 <mataes2007@e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb> | 2011-05-04 19:19:31 +0000 |
commit | e512a30af0c6f0f377f5f463b2cfe647224df3c6 (patch) | |
tree | ec3fc182b6d8e665cc1348c90666a33fd6042ed5 /SimpleAR/Src/Common.h | |
parent | 036428b1f75d480617d5df454dc28a5adb941d26 (diff) |
added SimpleAR
git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@68 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb
Diffstat (limited to 'SimpleAR/Src/Common.h')
-rw-r--r-- | SimpleAR/Src/Common.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/SimpleAR/Src/Common.h b/SimpleAR/Src/Common.h new file mode 100644 index 0000000..8a64cc3 --- /dev/null +++ b/SimpleAR/Src/Common.h @@ -0,0 +1,49 @@ +#define MIRANDA_VER 0x0900
+#define MIRANDA_CUSTOM_LP
+
+// Windows Header Files
+#include <windows.h>
+#include <commctrl.h>
+#include <stdio.h>
+#include <time.h>
+#include <stddef.h>
+#include <process.h>
+#include <string.h>
+#include <winsock.h>
+#include <string>
+#include <winbase.h>
+
+//Miranda SDK headers
+#include "newpluginapi.h"
+#include "m_clist.h"
+#include "m_clui.h"
+#include "m_skin.h"
+#include "m_langpack.h"
+#include "m_protomod.h"
+#include "m_database.h"
+#include "m_system.h"
+#include "m_protocols.h"
+#include "m_userinfo.h"
+#include "m_options.h"
+#include "m_protosvc.h"
+#include "m_utils.h"
+#include "m_ignore.h"
+#include "m_clc.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 BOOL fEnabled;
+extern INT interval;
+extern TCHAR* ptszDefaultMsg[6];
+
+extern INT OptInit(WPARAM wParam,LPARAM lParam);
|