Alternate e697dbe9c5997e35395fe158628dd8c5209481da
for Visual Studio 2022 and Windows 11.
読み取り中…
検索中…
一致する文字列を見つけられません
framework.h
[詳解]
1
5
6#pragma once
7
8#define WIN32_LEAN_AND_MEAN // Windows ヘッダーからほとんど使用されていない部分を除外する
9
10#ifdef DBLIBRARY_EXPORTS
11#pragma message("DLL EXPORTING...")
12#ifndef DLL_DECLSPEC
13#define DLL_DECLSPEC __declspec(dllexport)
14#endif
15#else
16#ifndef DLL_DECLSPEC
17#define DLL_DECLSPEC __declspec(dllimport)
18#endif
19#pragma comment(lib, "DBLibrary")
20#pragma message("DBLibrary is now importing...")
21#endif
22
23#include <windows.h>
24
25#pragma comment(lib, "sqlite3.lib")