blob: 0cf1b89f3d606e40dd04b963f1b198f454911846 (
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
|
#pragma once
#include <windows.h>
#include <sqlite3.h>
#include <memory>
#include <newpluginapi.h>
#include <win2k.h>
#include <m_core.h>
#include <m_system.h>
#include <m_database.h>
#include <m_db_int.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;
};
|