22#include <winpr/synch.h>
23#include <winpr/wlog.h>
25#include <freerdp/settings.h>
33#include <sdl_common_utils.hpp>
35template <
typename T>
using deleted_unique_ptr = std::unique_ptr<T, std::function<void(T*)>>;
39 SDL_EVENT_USER_UPDATE = SDL_EVENT_USER + 1,
40 SDL_EVENT_USER_CREATE_WINDOWS,
41 SDL_EVENT_USER_WINDOW_RESIZEABLE,
42 SDL_EVENT_USER_WINDOW_FULLSCREEN,
43 SDL_EVENT_USER_WINDOW_MINIMIZE,
44 SDL_EVENT_USER_POINTER_NULL,
45 SDL_EVENT_USER_POINTER_DEFAULT,
46 SDL_EVENT_USER_POINTER_POSITION,
47 SDL_EVENT_USER_POINTER_SET,
49 SDL_EVENT_USER_CERT_DIALOG,
50 SDL_EVENT_USER_SHOW_DIALOG,
51 SDL_EVENT_USER_AUTH_DIALOG,
52 SDL_EVENT_USER_SCARD_DIALOG,
53 SDL_EVENT_USER_RETRY_DIALOG,
55 SDL_EVENT_USER_CERT_RESULT,
56 SDL_EVENT_USER_SHOW_RESULT,
57 SDL_EVENT_USER_AUTH_RESULT,
58 SDL_EVENT_USER_SCARD_RESULT
72[[nodiscard]]
bool sdl_push_user_event(Uint32 type, ...);
74[[nodiscard]]
bool sdl_push_quit();
76[[nodiscard]]
const char* sdl_error_string(Sint32 res);
78#define sdl_log_error(res, log, what) sdl_log_error_ex(res, log, what, __FILE__, __LINE__, __func__)
79[[nodiscard]] BOOL sdl_log_error_ex(Sint32 res, wLog* log,
const char* what,
const char* file,
80 size_t line,
const char* fkt);
84 [[nodiscard]] std::string touchFlagsToString(Uint32 flags);
85 [[nodiscard]] std::string toString(
enum FreeRDP_DesktopRotationFlags orientation);
86 [[nodiscard]] std::string toString(SDL_DisplayOrientation orientation);
87 [[nodiscard]] std::string toString(
const SDL_DisplayMode* mode);
88 [[nodiscard]] std::string toString(Uint32 type);
90 [[nodiscard]] UINT32 orientaion_to_rdp(SDL_DisplayOrientation orientation);
92 [[nodiscard]] std::string generate_uuid_v4();
101 [[nodiscard]] HighDpiScaleMode platformScaleMode();
103 [[nodiscard]] std::string windowTitle(
const rdpSettings* settings);
120 CONN_DENIED_FIPS = 8,
122 FRESH_CREDENTIALS_REQUIRED = 10,
123 DISCONNECT_BY_USER = 11,
126 LICENSE_INTERNAL = 16,
127 LICENSE_NO_LICENSE_SERVER = 17,
128 LICENSE_NO_LICENSE = 18,
129 LICENSE_BAD_CLIENT_MSG = 19,
130 LICENSE_HWID_DOESNT_MATCH = 20,
131 LICENSE_BAD_CLIENT = 21,
132 LICENSE_CANT_FINISH_PROTOCOL = 22,
133 LICENSE_CLIENT_ENDED_PROTOCOL = 23,
134 LICENSE_BAD_CLIENT_ENCRYPTION = 24,
135 LICENSE_CANT_UPGRADE = 25,
136 LICENSE_NO_REMOTE_CONNECTIONS = 26,
142 PARSE_ARGUMENTS = 128,
149 ACCOUNT_LOCKED_OUT = 135,
150 PRE_CONNECT_FAILED = 136,
151 CONNECT_UNDEFINED = 137,
152 POST_CONNECT_FAILED = 138,
154 DNS_NAME_NOT_FOUND = 140,
155 CONNECT_FAILED = 141,
156 MCS_CONNECT_INITIAL_ERROR = 142,
157 TLS_CONNECT_FAILED = 143,
158 INSUFFICIENT_PRIVILEGES = 144,
159 CONNECT_CANCELLED = 145,
161 CONNECT_TRANSPORT_FAILED = 147,
162 CONNECT_PASSWORD_EXPIRED = 148,
163 CONNECT_PASSWORD_MUST_CHANGE = 149,
164 CONNECT_KDC_UNREACHABLE = 150,
165 CONNECT_ACCOUNT_DISABLED = 151,
166 CONNECT_PASSWORD_CERTAINLY_EXPIRED = 152,
167 CONNECT_CLIENT_REVOKED = 153,
168 CONNECT_WRONG_PASSWORD = 154,
169 CONNECT_ACCESS_DENIED = 155,
170 CONNECT_ACCOUNT_RESTRICTION = 156,
171 CONNECT_ACCOUNT_EXPIRED = 157,
172 CONNECT_LOGON_TYPE_NOT_GRANTED = 158,
173 CONNECT_NO_OR_MISSING_CREDENTIALS = 159,
174 CONNECT_TARGET_BOOTING = 160,
179 [[nodiscard]]
int errorToExitCode(DWORD error);
180 [[nodiscard]]
const char* errorToExitCodeTag(UINT32 error);
181 [[nodiscard]]
const char* exitCodeToTag(
int code);