1 #include "../window.h"
2 
3 #include <stdbool.h>
4 #include <stddef.h>
5 
native_window_init(void)6 bool native_window_init(void) {
7     return true;
8 }
9 
native_window_create(UTOX_WINDOW * window,char * title,unsigned int class,int x,int y,int w,int h,int min_width,int min_height,void * gui_panel,bool override)10 static UTOX_WINDOW *native_window_create(UTOX_WINDOW *window, char *title, unsigned int class,
11                                   int x, int y, int w, int h, int min_width, int min_height,
12                                   void *gui_panel, bool override)
13 {
14     return NULL;
15 }
16 
native_window_raze(UTOX_WINDOW * window)17 void native_window_raze(UTOX_WINDOW *window) {
18 }
19 
native_window_create_main(int x,int y,int w,int h,char ** argv,int argc)20 UTOX_WINDOW *native_window_create_main(int x, int y, int w, int h, char **argv, int argc) {
21     return NULL;
22 }
23 
native_window_create_video()24 void native_window_create_video() {
25 }
26 
native_window_find_notify(void * window)27 UTOX_WINDOW *native_window_find_notify(void *window) {
28     return NULL;
29 }
30 
native_window_create_notify(int x,int y,int w,int h,PANEL * panel)31 UTOX_WINDOW *native_window_create_notify(int x, int y, int w, int h, PANEL *panel) {
32     return NULL;
33 }
34 
notify_tween_thread(void * obj)35 static void notify_tween_thread(void *obj) {
36 }
37 
native_window_tween(UTOX_WINDOW * win)38 void native_window_tween(UTOX_WINDOW *win) {
39 }
40 
native_window_create_screen_select()41 void native_window_create_screen_select() {
42 }
43 
native_window_set_target(UTOX_WINDOW * new_win)44 bool native_window_set_target(UTOX_WINDOW *new_win) {
45     return true;
46 }
47 
native_screen_grab_desktop(bool video)48 void native_screen_grab_desktop(bool video) {
49 }
50