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 MIDDLELIBRARY_EXPORTS
11#pragma message("DLL EXPORTING...")
12#define DLL_DECLSPEC __declspec(dllexport)
13#else
14#define DLL_DECLSPEC __declspec(dllimport)
15#pragma comment(lib, "MiddleLibrary")
16#pragma message("MiddleLibrary is now importing...")
17#pragma comment(lib, "WindowsLibrary")
18#pragma message("WindowsLibrary is now importing...")
19#endif
20
21#include <windows.h>
22#include <tchar.h>
23#include <limits.h>
24#include <WinSock2.h>
25#include <exception>
26#include <vector>
27#include <memory>
28#include <functional>
29#include <map>
30#include <string>
31#include <queue>
32#include <shlobj.h>
33#include <shellapi.h>