Sunshine/sunshine/platform/windows/misc.h

13 lines
281 B
C
Raw Normal View History

2021-07-01 10:17:10 +00:00
#ifndef SUNSHINE_WINDOWS_MISC_H
#define SUNSHINE_WINDOWS_MISC_H
2022-02-16 23:23:56 +00:00
#include <string_view>
2021-07-01 10:17:10 +00:00
#include <windows.h>
#include <winnt.h>
namespace platf {
void print_status(const std::string_view &prefix, HRESULT status);
HDESK syncThreadDesktop();
2022-02-16 23:23:56 +00:00
} // namespace platf
2021-07-01 10:17:10 +00:00
#endif