mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
[dos] I don't know why it did not work when compiled by g++
This commit is contained in:
parent
5fefca2cb3
commit
14ba55c0db
@ -1033,7 +1033,7 @@ void init_osdep(void)
|
|||||||
EINTRLOOP(rs, close(s));
|
EINTRLOOP(rs, close(s));
|
||||||
}
|
}
|
||||||
|
|
||||||
tcp_cbreak(1);
|
//tcp_cbreak(1);
|
||||||
|
|
||||||
memset(&sa, 0, sizeof sa);
|
memset(&sa, 0, sizeof sa);
|
||||||
sa.sa_handler = sigbreak;
|
sa.sa_handler = sigbreak;
|
||||||
|
@ -1,12 +1,13 @@
|
|||||||
#ifndef EL__OSDEP_DOS_DOS_H
|
#ifndef EL__OSDEP_DOS_DOS_H
|
||||||
#define EL__OSDEP_DOS_DOS_H
|
#define EL__OSDEP_DOS_DOS_H
|
||||||
|
|
||||||
#ifdef CONFIG_OS_DOS
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef CONFIG_OS_DOS
|
||||||
|
|
||||||
|
|
||||||
#define DOS_EXTRA_KEYBOARD
|
#define DOS_EXTRA_KEYBOARD
|
||||||
|
|
||||||
#ifdef DOS_EXTRA_KEYBOARD
|
#ifdef DOS_EXTRA_KEYBOARD
|
||||||
@ -22,6 +23,7 @@ do { \
|
|||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
|
|
||||||
struct timeval;
|
struct timeval;
|
||||||
|
|
||||||
int dos_read(int fd, void *buf, size_t size);
|
int dos_read(int fd, void *buf, size_t size);
|
||||||
@ -35,6 +37,22 @@ int dos_setraw(int ctl, int save);
|
|||||||
void os_seed_random(unsigned char **pool, int *pool_size);
|
void os_seed_random(unsigned char **pool, int *pool_size);
|
||||||
int os_default_charset(void);
|
int os_default_charset(void);
|
||||||
|
|
||||||
|
void done_draw(void);
|
||||||
|
int get_system_env(void);
|
||||||
|
void get_terminal_size(int fd, int *x, int *y);
|
||||||
|
void *handle_mouse(int cons, void (*fn)(void *, char *, int), void *data);
|
||||||
|
void handle_terminal_resize(int fd, void (*fn)(void));
|
||||||
|
void init_osdep(void);
|
||||||
|
int is_xterm(void);
|
||||||
|
void resume_mouse(void *data);
|
||||||
|
int set_nonblocking_fd(int fd);
|
||||||
|
void suspend_mouse(void *data);
|
||||||
|
void terminate_osdep(void);
|
||||||
|
void unhandle_mouse(void *data);
|
||||||
|
void unhandle_terminal_resize(int fd);
|
||||||
|
void want_draw(void);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef DOS_OVERRIDES_SELF
|
#ifndef DOS_OVERRIDES_SELF
|
||||||
|
|
||||||
@ -45,10 +63,10 @@ int os_default_charset(void);
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
|
||||||
|
Loading…
Reference in New Issue
Block a user