summaryrefslogtreecommitdiff
path: root/plugins/SimpleAR/src/Common.h
blob: 7eb0b069d7e7e1a37daad49ae8738d46ffa370dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#define _CRT_SECURE_NO_WARNINGS

#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_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 INT OptInit(WPARAM wParam, LPARAM lParam);