From 16b3108be10c20c54d8ad47e2dac5b7cd908e3eb Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Wed, 1 Aug 2012 13:18:09 +0000 Subject: folders renames git-svn-id: http://svn.miranda-ng.org/main/trunk@1300 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/SimpleAR/src/Common.h | 49 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 plugins/SimpleAR/src/Common.h (limited to 'plugins/SimpleAR/src/Common.h') diff --git a/plugins/SimpleAR/src/Common.h b/plugins/SimpleAR/src/Common.h new file mode 100644 index 0000000000..ca873cb2ae --- /dev/null +++ b/plugins/SimpleAR/src/Common.h @@ -0,0 +1,49 @@ +#define MIRANDA_VER 0x0A00 +#define _CRT_SECURE_NO_WARNINGS + +// Windows Header Files +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +//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 + +#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); -- cgit v1.2.3