summaryrefslogtreecommitdiff
path: root/plugins/Dbx_sqlite/src/stdafx.h
blob: a73a36ef538a2f8bbf2cd404facf5895f9b149e8 (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
#pragma once

#include <windows.h>
#include <sqlite3.h>

#include <memory>

#include <malloc.h>
#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;
};