diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/mingw.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/include/mingw.h b/include/mingw.h index 5d2fb39ee..a826d7eaa 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -150,7 +150,9 @@ IMPL(setlinebuf, void, ,FILE *fd UNUSED_PARAM) | |||
150 | * ANSI emulation wrappers | 150 | * ANSI emulation wrappers |
151 | */ | 151 | */ |
152 | 152 | ||
153 | BOOL winansi_OemToCharBuff(LPCSTR s, LPSTR d, DWORD len); | 153 | BOOL conToCharBuffA(LPSTR d, DWORD len); |
154 | BOOL conToCharA(LPSTR d); | ||
155 | |||
154 | void set_title(const char *str); | 156 | void set_title(const char *str); |
155 | void move_cursor_row(int n); | 157 | void move_cursor_row(int n); |
156 | void reset_screen(void); | 158 | void reset_screen(void); |
@@ -166,10 +168,7 @@ int winansi_fprintf(FILE *stream, const char *format, ...) __attribute__((format | |||
166 | int winansi_write(int fd, const void *buf, size_t count); | 168 | int winansi_write(int fd, const void *buf, size_t count); |
167 | int winansi_read(int fd, void *buf, size_t count); | 169 | int winansi_read(int fd, void *buf, size_t count); |
168 | int winansi_getc(FILE *stream); | 170 | int winansi_getc(FILE *stream); |
169 | #if ENABLE_FEATURE_EURO | 171 | |
170 | # undef OemToCharBuff | ||
171 | # define OemToCharBuff winansi_OemToCharBuff | ||
172 | #endif | ||
173 | #define putchar winansi_putchar | 172 | #define putchar winansi_putchar |
174 | #define puts winansi_puts | 173 | #define puts winansi_puts |
175 | #define fwrite winansi_fwrite | 174 | #define fwrite winansi_fwrite |