blob: 91d20b41093b8b0690f9aa3c5e8810a0ca29f53f (
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
|
#pragma once
#include <windows.h>
#include <sqlite3.h>
#include <memory>
#include <newpluginapi.h>
#include <win2k.h>
#include <assert.h>
#include <m_core.h>
#include <m_system.h>
#include <m_database.h>
#include <m_protocols.h>
#include <m_metacontacts.h>
#include "dbintf.h"
#include "resource.h"
#include "version.h"
constexpr auto SQLITE_HEADER_STR = "SQLite format 3";
struct CMPlugin : public PLUGIN<CMPlugin>
{
CMPlugin();
int Load() override;
};
|