blob: 4f6659b40c1b0b731baaacd54557df8924f8cde3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
/*
* WARN:
* including this header does not make a lot of sense.
* You should just #include all necessary headers from Windows SDK,
* and then #include <util/system/win_undef.h> in order to undefine some common macros.
*/
#include <util/system/platform.h>
#if defined(_win_)
#include <windows.h>
#endif
#include <util/system/win_undef.h>
|