mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
Fix warnings
This commit is contained in:
parent
e443e318f7
commit
923f48795f
16
src/webui.c
16
src/webui.c
@ -480,7 +480,7 @@ static void _webui_send_client_ws(_webui_window_t* win, struct mg_connection* cl
|
||||
size_t connection_id, char* packet, size_t packets_size);
|
||||
static void _webui_window_event(
|
||||
_webui_window_t* win, size_t connection_id, int event_type, char* element, size_t event_number,
|
||||
size_t client_id, char* cookies
|
||||
size_t client_id, const char* cookies
|
||||
);
|
||||
static int _webui_cmd_sync(_webui_window_t* win, char* cmd, bool show);
|
||||
static int _webui_cmd_async(_webui_window_t* win, char* cmd, bool show);
|
||||
@ -7124,7 +7124,7 @@ static bool _webui_show_window(_webui_window_t* win, struct mg_connection* clien
|
||||
|
||||
static void _webui_window_event(
|
||||
_webui_window_t* win, size_t connection_id, int event_type, char* element,
|
||||
size_t event_number, size_t client_id, char* cookies) {
|
||||
size_t event_number, size_t client_id, const char* cookies) {
|
||||
|
||||
#ifdef WEBUI_LOG
|
||||
printf("[Core]\t\t_webui_window_event([%zu], [%zu], [%s])\n",
|
||||
@ -7139,7 +7139,7 @@ static void _webui_window_event(
|
||||
e.event_number = event_number;
|
||||
e.connection_id = connection_id;
|
||||
e.client_id = client_id;
|
||||
e.cookies = cookies;
|
||||
e.cookies = (char*)cookies;
|
||||
|
||||
// Check for all events-bind functions
|
||||
if (!_webui_mutex_is_exit_now(WEBUI_MUTEX_NONE) && win->has_all_events) {
|
||||
@ -7381,7 +7381,7 @@ static bool _webui_get_cb_index(_webui_window_t* win, const char* element, size_
|
||||
if (win->html_elements[i] != NULL) {
|
||||
if (strcmp(win->html_elements[i], element) == 0) {
|
||||
#ifdef WEBUI_LOG_VERBOSE
|
||||
printf("[Core]\t\t_webui_get_cb_index() -> Found at %d\n", i);
|
||||
printf("[Core]\t\t_webui_get_cb_index() -> Found at %zu\n", i);
|
||||
#endif
|
||||
_webui_mutex_unlock(&_webui.mutex_bridge);
|
||||
*id = i;
|
||||
@ -9119,7 +9119,7 @@ static void _webui_ws_process(
|
||||
e.event_number = event_num;
|
||||
e.connection_id = connection_id;
|
||||
e.client_id = _webui_client_get_id(win, client);
|
||||
e.cookies = _webui_get_cookies_full(client); // Full cookies
|
||||
e.cookies = (char*)_webui_get_cookies_full(client); // Full cookies
|
||||
|
||||
// Call user function
|
||||
size_t cb_index = 0;
|
||||
@ -9233,7 +9233,7 @@ static void _webui_ws_process(
|
||||
|
||||
// Send the packet
|
||||
_webui_send_client(
|
||||
win, client, packet_id, WEBUI_CMD_CHECK_TK, &status, 1
|
||||
win, client, packet_id, WEBUI_CMD_CHECK_TK, (const char*)&status, 1
|
||||
);
|
||||
|
||||
if (status == 0x01) {
|
||||
@ -9374,7 +9374,7 @@ static void _webui_ws_process(
|
||||
else {
|
||||
printf(
|
||||
"[Core]\t\t_webui_ws_process(%zu) -> UNKNOWN EVENT "
|
||||
"TYPE (%zu)\n",
|
||||
"TYPE (%d)\n",
|
||||
recvNum, event_type
|
||||
);
|
||||
}
|
||||
@ -9718,7 +9718,7 @@ static int _webui_system_win32(_webui_window_t* win, char* cmd, bool show) {
|
||||
static bool _webui_get_windows_reg_value(HKEY key, LPCWSTR reg, LPCWSTR value_name, char value[WEBUI_MAX_PATH]) {
|
||||
|
||||
#ifdef WEBUI_LOG
|
||||
printf("[Core]\t\t_webui_get_windows_reg_value([%Ls])\n", reg);
|
||||
printf("[Core]\t\t_webui_get_windows_reg_value([%ls])\n", reg);
|
||||
#endif
|
||||
|
||||
HKEY hKey;
|
||||
|
Loading…
x
Reference in New Issue
Block a user