blob: ff1f9c2588e7b59e58d14625dbb2c7c4c1d3bc36 (
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
|
#define _CRT_SECURE_NO_DEPRECATE
#include <windows.h>
#include <time.h>
#include <direct.h>
#include <process.h>
#include <string>
#include <map>
#include <set>
#include <vector>
#include "newpluginapi.h"
#include "m_options.h"
#include "m_skin.h"
#include "m_langpack.h"
#include "m_database.h"
#include "m_popup.h"
#include "m_LogService.h"
#include "resource.h"
#include "Version.h"
extern HINSTANCE hInst;
const char PlugName[] = "NotifyAnything";
//---------------------------
//---Internal Hooks (see main.c)
//---(Workaround till CallServiceSync is available)
struct NASettings {
enum sound_t { never, always, request };
bool local_only, debug_messages, log_to_file, use_pcspeaker, allow_execute;
sound_t sound;
int port;
std::string password, log_filename;
};
extern NASettings g_settings;
void stop_threads();
void start_threads();
void save_settings();
void load_settings();
int OptionsInitialize(WPARAM wParam, LPARAM lParam);
extern std::string g_mirandaDir;
extern bool IsLogService;
#define LOG_ID LPGEN("NotifyAnything")
|