blob: c5e790b543150f2dffdee9ca9eda6e58bc05ab21 (
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
75
76
77
78
79
80
81
82
83
84
85
86
|
/*
Copyright (C) 2012 Mataes
This is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this file; see the file license.txt. If
not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
#pragma once
//Windows headers
#include <windows.h>
#include <process.h>
#include <tchar.h>
#include <commctrl.h>
#include <stdio.h>
#include <time.h>
//Miranda headers
#include "newpluginapi.h"
#include "win2k.h"
#include "m_system.h"
//#include "m_plugins.h"
#include "m_clc.h"
//#include "m_clui.h"
#include "m_clist.h"
#include "m_options.h"
#include "m_skin.h"
#include "m_langpack.h"
#include "m_database.h"
#include "m_protocols.h"
#include "m_protosvc.h"
#include "m_utils.h"
#include "m_history.h"
#include "m_button.h"
#include "m_message.h"
#include "m_userinfo.h"
#include "m_icolib.h"
#include "m_fontservice.h"
#include "m_smileyadd.h"
//#include "m_nconvers.h"
//#include "m_MathModule.h"
//#include "m_Snapping_windows.h"
#ifndef MTEXT_NOHELPERS
#define MTEXT_NOHELPERS
#endif // MTEXT_NOHELPERS
#include "m_text.h"
#include "resource.h"
#include "version.h"
#define MODULENAME "NewStory"
#define MODULETITLE "NewStory"
#include "utils.h"
#include "opt_passwords.h"
#include "options.h"
#include "icons.h"
#include "fonts.h"
#include "password.h"
#include "calendartool.h"
#include "history.h"
#include "history_array.h"
#include "history_control.h"
#include "templates.h"
struct CMPlugin : public PLUGIN<CMPlugin>
{
CMPlugin();
int Load() override;
int Unload() override;
};
|