Skip to content
Snippets Groups Projects
Commit d9a44c66 authored by deuce's avatar deuce
Browse files

Don't use conio.h! *faint*

parent d894b209
Branches
Tags
No related merge requests found
...@@ -12,12 +12,11 @@ enum { ...@@ -12,12 +12,11 @@ enum {
,CIOLIB_MODE_CONIO ,CIOLIB_MODE_CONIO
}; };
#if defined(__BORLANDC__) /* presumably, Win32 */ #if defined(_WIN32) /* presumably, Win32 */
#include <conio.h>
#include <io.h> /* isatty */ #include <io.h> /* isatty */
#else #endif
#ifndef BOOL #ifndef BOOL
#define BOOL int #define BOOL int
...@@ -82,8 +81,6 @@ struct text_info { ...@@ -82,8 +81,6 @@ struct text_info {
unsigned char cury; /* y-coordinate in current window */ unsigned char cury; /* y-coordinate in current window */
}; };
#endif
struct cio_mouse_event { struct cio_mouse_event {
int x; int x;
int y; int y;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment