Este sitio web funciona mejor con JavaScript.
Inicio
Ayuda
Iniciar sesión
cacalabs
/
neercs
réplica de
https://github.com/cacalabs/neercs.git
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
neercs: disable some non-working code on Win32 so that we at least build properly.
master
Sam Hocevar
hace 13 años
padre
1e4b5ca759
commit
c459ba4a5d
Se han
modificado 3 ficheros
con
10 adiciones
y
0 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+2
-0
neercs/old/input.c
+5
-0
neercs/old/server.c
+3
-0
neercs/old/term.c
+ 2
- 0
neercs/old/input.c
Ver fichero
@@ -76,6 +76,7 @@ int handle_command_input(struct screen_list *screen_list, unsigned int c)
{
int refresh = 0;
#if !defined _WIN32
debug("Key %x\n", c);
screen_list->changed = 1;
@@ -191,6 +192,7 @@ int handle_command_input(struct screen_list *screen_list, unsigned int c)
break;
#endif
}
#endif /* _WIN32 */
return refresh;
}
+ 5
- 0
neercs/old/server.c
Ver fichero
@@ -683,4 +683,9 @@ long long get_us(void)
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
+ 3
- 0
neercs/old/term.c
Ver fichero
@@ -136,5 +136,8 @@ int update_terms(struct screen_list *screen_list)
return refresh;
}
#else
/* FIXME: unimplemented */
int set_tty_size(int fd, unsigned int w, unsigned int h) { return 0; }
#endif
Escribir
Vista previa
Cargando…
Cancelar
Guardar