@@ -76,6 +76,7 @@ int handle_command_input(struct screen_list *screen_list, unsigned int c) | |||||
{ | { | ||||
int refresh = 0; | int refresh = 0; | ||||
#if !defined _WIN32 | |||||
debug("Key %x\n", c); | debug("Key %x\n", c); | ||||
screen_list->changed = 1; | screen_list->changed = 1; | ||||
@@ -191,6 +192,7 @@ int handle_command_input(struct screen_list *screen_list, unsigned int c) | |||||
break; | break; | ||||
#endif | #endif | ||||
} | } | ||||
#endif /* _WIN32 */ | |||||
return refresh; | return refresh; | ||||
} | } |
@@ -683,4 +683,9 @@ long long get_us(void) | |||||
return (tv.tv_sec * (1000000) + tv.tv_usec); | return (tv.tv_sec * (1000000) + tv.tv_usec); | ||||
} | } | ||||
#else | |||||
/* FIXME: unimplemented */ | |||||
long long get_us(void) { return 0; } | |||||
int send_ansi_sequence(struct screen_list *screen_list, char *str) { return 0; } | |||||
#endif | #endif | ||||
@@ -136,5 +136,8 @@ int update_terms(struct screen_list *screen_list) | |||||
return refresh; | return refresh; | ||||
} | } | ||||
#else | |||||
/* FIXME: unimplemented */ | |||||
int set_tty_size(int fd, unsigned int w, unsigned int h) { return 0; } | |||||
#endif | #endif | ||||