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
| #pragma once
|
| #ifndef NOMINMAX
| #define NOMINMAX
| #endif
| #ifndef WIN32_LEAN_AND_MEAN
| #define WIN32_LEAN_AND_MEAN 1
| #endif
| #define INC_OLE2 1
| #include <Windows.h>
| #include <Objidl.h>
|
| #if IL2CPP_TARGET_WINDOWS_DESKTOP || IL2CPP_TARGET_WINRT
| #include <wincrypt.h>
| #include <winsock2.h>
| #include <Iphlpapi.h>
| #endif
|
| #if !IL2CPP_TARGET_WINDOWS_DESKTOP
| #include <bcrypt.h>
| #include <roapi.h>
| #include <robuffer.h>
| #include <winstring.h>
| #endif
|
| #define LINK_TO_WINDOWSRUNTIME_LIBS (!IL2CPP_TARGET_WINDOWS_DESKTOP)
|
|