rw_linux.h (381B)
1 2 3 typedef void (*Key_Event_fp_t)(int key, qboolean down); 4 5 extern void (*KBD_Update_fp)(void); 6 extern void (*KBD_Init_fp)(Key_Event_fp_t fp); 7 extern void (*KBD_Close_fp)(void); 8 9 typedef struct in_state { 10 // Pointers to functions back in client, set by vid_so 11 void (*IN_CenterView_fp)(void); 12 Key_Event_fp_t Key_Event_fp; 13 vec_t *viewangles; 14 int *in_strafe_state; 15 } in_state_t; 16