mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-18 20:09:54 +00:00
13 lines
262 B
C
13 lines
262 B
C
|
#ifndef SUNSHINE_WINDOWS_MISC_H
|
||
|
#define SUNSHINE_WINDOWS_MISC_H
|
||
|
|
||
|
#include <windows.h>
|
||
|
#include <winnt.h>
|
||
|
#include <string_view>
|
||
|
|
||
|
namespace platf {
|
||
|
void print_status(const std::string_view &prefix, HRESULT status);
|
||
|
HDESK syncThreadDesktop();
|
||
|
}
|
||
|
|
||
|
#endif
|