blob: ca873cb2aecded828216f04f77140edf498e8026 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#define MIRANDA_VER 0x0A00
#define _CRT_SECURE_NO_WARNINGS
// 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);
|