blob: 76f6c5128c93b4d57c9f6a467c64df2b6d7b020e (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
/*
* Smart Auto Replier (SAR) - auto replier plugin for Miranda IM
*
* Copyright (C) 2004 - 2012 by Volodymyr M. Shcherbyna <volodymyr@shcherbyna.com>
*
* This file is part of SAR.
*
* SAR is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* SAR is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with SAR. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include "AggressiveOptimize.h"
#undef _WIN32_WINNT
#define _WIN32_WINNT 0x0500
#define WIN32_LEAN_AND_MEAN
#define _MERGE_RDATA_
/// windows and crt headers (win32 api)
#include <windows.h>
#include <string>
#include <prsht.h>
#include <crtdbg.h>
#include "resource.h"
#include <tchar.h>
#include <windowsx.h>
#include <commctrl.h>
/// shell's headers... (windows shell)
#include <shlwapi.h>
#include <shellapi.h>
#pragma comment(lib, "shlwapi.lib")
#pragma comment(lib, "shell32.lib")
#pragma warning(disable:4312)
#pragma warning(disable:4267)
#pragma warning(disable:4356)
/// miranda's headers...
#include "../miranda32/newpluginapi.h"
#include "../miranda32/m_system.h"
#include "../miranda32/m_protomod.h"
#include "../miranda32/m_protosvc.h"
#include "../miranda32/m_clist.h"
#include "../miranda32/m_skin.h"
#include "../miranda32/m_database.h"
#include "../miranda32/m_options.h"
#include "../miranda32/m_langpack.h"
/// plugin's specific headers...
#include "messageshandler.h" /// messages handler
#include "settingshandler.h" /// settings handler
#include "GUI/optionsDlg.h" /// options handler
#include "comlogging.h" /// common loggin helper macroses
#include "crushlog.h" /// crush log handler
#define REFRESH_OPTS_MSG WM_USER + 666
void OnRefreshSettings(void);
|