mirror of
https://github.com/ogoguel/activegs-ios.git
synced 2024-12-22 00:29:17 +00:00
37 lines
1.6 KiB
C
37 lines
1.6 KiB
C
/*
|
|
ActiveGS, Copyright 2004-2016 Olivier Goguel, https://github.com/ogoguel/ActiveGS
|
|
Based on Kegs, Copyright 2004 Kent Dickey, https://kegs.sourceforge.net
|
|
This code is covered by the GNU GPL licence
|
|
*/
|
|
|
|
int main(int argc, char **argv);
|
|
void x_dialog_create_kegs_conf(const char *str);
|
|
int x_show_alert(int is_fatal, const char *str);
|
|
void x_update_color(int col_num, int red, int green, int blue, word32 rgb);
|
|
void x_update_physical_colormap(void);
|
|
void x_show_color_array(void);
|
|
int my_error_handler(Display *display, XErrorEvent *ev);
|
|
void x_driver_end(void);
|
|
void show_colormap(char *str, Colormap cmap, int index1, int index2, int index3);
|
|
void x_badpipe(int signum);
|
|
//void x_dev_video_init(void);
|
|
Visual *x_try_find_visual(int depth, int screen_num, XVisualInfo **visual_list_ptr);
|
|
void x_set_mask_and_shift(word32 x_mask, word32 *mask_ptr, int *shift_left_ptr, int *shift_right_ptr);
|
|
int xhandle_shm_error(Display *display, XErrorEvent *event);
|
|
void x_get_kimage(Kimage *kimage_ptr);
|
|
int get_shm(Kimage *kimage_ptr);
|
|
void get_ximage(Kimage *kimage_ptr);
|
|
void x_redraw_status_lines(void);
|
|
void x_push_kimage(Kimage *kimage_ptr, int destx, int desty, int srcx, int srcy, int width, int height);
|
|
void x_push_done(void);
|
|
int x_update_mouse(int raw_x, int raw_y, int button_states, int buttons_valid);
|
|
void check_input_events(void);
|
|
void x_hide_pointer(int do_hide);
|
|
void handle_keysym(XEvent *xev_in);
|
|
int x_keysym_to_a2code(int keysym, int is_up);
|
|
void x_update_modifier_state(int state);
|
|
void x_auto_repeat_on(int must);
|
|
void x_auto_repeat_off(int must);
|
|
void x_full_screen(int do_full);
|
|
|