// MIT License, Copyright (c) 2021 Marvin Borner #include #include #include #include #define WM_PATH "/bin/wm" s32 gui_new_window(struct gui_window *win) { struct message_new_window msg = { 0 }; if (msg_send(pidof(WM_PATH), GUI_NEW_WINDOW, &msg, sizeof(msg)) > 0 && msg_receive(&msg, sizeof(msg)) > 0 && msg.header.type == (GUI_NEW_WINDOW | MSG_SUCCESS)) { win->id = msg.id; win->ctx = msg.ctx; return win->id; } return -1; } s32 gui_redraw_window(u32 id) { struct message_redraw_window msg = { .id = id }; if (msg_send(pidof(WM_PATH), GUI_REDRAW_WINDOW, &msg, sizeof(msg)) > 0 && msg_receive(&msg, sizeof(msg)) > 0 && msg.header.type == (GUI_REDRAW_WINDOW | MSG_SUCCESS)) return id; return -1; }