--- uae/src/include/xwin.h 2018/04/24 16:42:26 1.1.1.4 +++ uae/src/include/xwin.h 2018/04/24 16:45:08 1.1.1.5 @@ -82,19 +82,3 @@ extern struct vidbuf_description gfxvidi /* For ports using tui.c, this should be built by graphics_setup(). */ extern struct bstring *video_mode_menu; extern void vidmode_menu_selected(int); - -extern int inhibit_frame; - -static __inline__ void set_inhibit_frame (int bit) -{ - inhibit_frame |= 1 << bit; -} -static __inline__ void clear_inhibit_frame (int bit) -{ - inhibit_frame &= ~(1 << bit); -} -static __inline__ void toggle_inhibit_frame (int bit) -{ - inhibit_frame ^= ~(1 << bit); -} -