summaryrefslogtreecommitdiff
path: root/plugins/Dbx_sqlite/src/stdafx.h
blob: bcf4e9811f32567a23e990baf30d596fa6935e8c (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 <m_core.h>
#include <m_system.h>
#include <m_database.h>
#include <m_db_int.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;
};