Sunshine/sunshine/platform/windows/misc.h

13 lines
262 B
C
Raw Normal View History

2021-07-01 10:17:10 +00:00
#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