HikoGUI
Select Version:
main (latest dev)
0.8.1 (latest)
0.8.0
0.7.0
0.6.0
0.5.1
0.5.0
0.4.0
0.3.0
0.2.3
0.2.2
0.2.1
0.2.0
0.1.0
theme-value
theme-tag
text
ranged-int
phrase-mask-chars
new-window-widget
msvs-bug-20230517
msvs-bug-20230503
msvs-bug-20230428
msvc-c1001-20231106
msvc-bug-20230706
msvc-bug-20221214
modules-part1
label-delegate
bug-msvs-20220928
attribute-parser
⚠️ This documents the
main
development branch of HikoGUI. It might differ from release versions.
A low latency retained GUI
Toggle main menu visibility
Main Page
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
Variables
c
d
g
i
l
o
p
r
s
t
x
Typedefs
Enumerations
a
b
c
d
f
g
h
k
l
p
s
t
u
v
w
Concepts
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
Related Symbols
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
Files
File List
Globals
All
Functions
Macros
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Concepts
Loading...
Searching...
No Matches
src
hikogui
win32_headers.hpp
Go to the documentation of this file.
1
// Copyright Take Vos 2022.
2
// Distributed under the Boost Software License, Version 1.0.
3
// (See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt)
4
16
#pragma once
17
18
#ifndef WIN32_NO_STATUS
19
#error "-DWIN32_NO_STATUS must be defined as a compile option"
20
#endif
21
22
#include <Windows.h>
23
#undef WIN32_NO_STATUS
24
#include <ntstatus.h>
25
#define WIN32_NO_STATUS
26
#include <debugapi.h>
27
#include <shellapi.h>
28
#include <intrin.h>
29
#include <winuser.h>
30
31
// Window's registry.
32
#include <winreg.h>
33
#include <Uxtheme.h>
34
35
// Cryptography
36
#include <bcrypt.h>
37
38
// Threading
39
#include <synchapi.h>
40
41
// File IO
42
#include <ShlObj_core.h>
43
44
// Networking
45
#define IN
46
#define OUT
47
#include <WinSock2.h>
48
49
// DirectX.
50
#include <windowsx.h>
51
#include <ddraw.h>
52
#include <dwmapi.h>
53
#include <dxgi.h>
54
#include <dxgi1_6.h>
55
56
// initguid allows some of the header files to define actual implementations of the GUID.
57
// However this is incompatible with other headers which causes some values to become undefined.
58
#include <initguid.h>
59
60
// Multimedia and audio.
61
#include <mmsystem.h>
62
#include <mmeapi.h>
63
#include <mmddk.h>
64
#include <mmreg.h>
65
#include <winioctl.h>
66
#include <propsys.h>
67
#include <ks.h>
68
#include <ksmedia.h>
69
#include <functiondiscoverykeys_devpkey.h>
70
#include <mmdeviceapi.h>
71
#include <endpointvolume.h>
72
#include <audioclient.h>
73
74
// The windows headers create all sort of insane macros.
75
#undef IN
76
#undef OUT
77
#undef small
Generated on Mon Apr 22 2024 12:51:38 for HikoGUI by
1.10.0