--- sourceforge.net/trunk/rdesktop/xwin.c 2002/09/24 07:33:17 190 +++ sourceforge.net/trunk/rdesktop/xwin.c 2002/09/24 07:59:14 192 @@ -217,7 +217,7 @@ } BOOL -ui_init() +ui_init(void) { XPixmapFormatValues *pfm; uint16 test; @@ -293,7 +293,7 @@ } void -ui_deinit() +ui_deinit(void) { if (IM != NULL) XCloseIM(IM); @@ -307,7 +307,7 @@ } BOOL -ui_create_window() +ui_create_window(void) { XSetWindowAttributes attribs; XClassHint *classhints; @@ -381,7 +381,7 @@ } void -ui_destroy_window() +ui_destroy_window(void) { if (IC != NULL) XDestroyIC(IC); @@ -390,7 +390,7 @@ } void -xwin_toggle_fullscreen() +xwin_toggle_fullscreen(void) { Pixmap contents = 0; @@ -416,7 +416,7 @@ /* Process all events in Xlib queue */ static void -xwin_process_events() +xwin_process_events(void) { XEvent xevent; KeySym keysym; @@ -852,7 +852,7 @@ } void -ui_reset_clip() +ui_reset_clip(void) { XRectangle rect; @@ -864,7 +864,7 @@ } void -ui_bell() +ui_bell(void) { XBell(display, 0); }