-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWindowsPlus.h
55 lines (47 loc) · 1 KB
/
WindowsPlus.h
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#pragma once
#define STRICT
#define WIN32_LEAN_AND_MEAN
#define NOMINMAX
#include <Windows.h>
#include <vector>
inline bool AllSet(DWORD v, DWORD set)
{
return (v & set) == set;
}
inline bool NoneSet(DWORD v, DWORD set)
{
return (v & set) == 0;
}
void SendHotKey(_In_ UINT fsModifiers, _In_ UINT vk);
inline DWORD MySendMessageTimeout(
_In_ HWND hWnd,
_In_ UINT Msg,
_In_ WPARAM wParam,
_In_ LPARAM lParam,
_In_ UINT fuFlags,
_In_ UINT uTimeout)
{
DWORD_PTR dwResult = 0;
SendMessageTimeout(
hWnd,
Msg,
wParam,
lParam,
fuFlags,
uTimeout,
&dwResult);
return static_cast<DWORD>(dwResult);
}
inline LONG Width(RECT r)
{
return r.right - r.left;
}
inline LONG Height(RECT r)
{
return r.bottom - r.top;
}
void SetWindowBlur(HWND hWnd);
std::vector<HWND> GetWindows();
std::vector<HWND> GetWindows(HWND hWndParent);
std::vector<HMONITOR> GetMonitors();
HMONITOR GetPrimaryMonitor(const std::vector<HMONITOR>& ms);