mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-08-10 00:52:16 +00:00
40 lines
865 B
C++
40 lines
865 B
C++
/**
|
|
* @file src/platform/windows/misc.h
|
|
* @brief todo
|
|
*/
|
|
#pragma once
|
|
|
|
#include <chrono>
|
|
#include <string_view>
|
|
#include <windows.h>
|
|
#include <winnt.h>
|
|
|
|
namespace platf {
|
|
void
|
|
print_status(const std::string_view &prefix, HRESULT status);
|
|
HDESK
|
|
syncThreadDesktop();
|
|
|
|
int64_t
|
|
qpc_counter();
|
|
|
|
std::chrono::nanoseconds
|
|
qpc_time_difference(int64_t performance_counter1, int64_t performance_counter2);
|
|
|
|
/**
|
|
* @brief Converts a UTF-8 string into a UTF-16 wide string.
|
|
* @param string The UTF-8 string.
|
|
* @return The converted UTF-16 wide string.
|
|
*/
|
|
std::wstring
|
|
from_utf8(const std::string &string);
|
|
|
|
/**
|
|
* @brief Converts a UTF-16 wide string into a UTF-8 string.
|
|
* @param string The UTF-16 wide string.
|
|
* @return The converted UTF-8 string.
|
|
*/
|
|
std::string
|
|
to_utf8(const std::wstring &string);
|
|
} // namespace platf
|