mirror of
https://github.com/xmrig/xmrig.git
synced 2024-11-17 08:17:40 +00:00
32 lines
No EOL
656 B
C
32 lines
No EOL
656 B
C
/*
|
|
* ANSI emulation wrappers
|
|
*/
|
|
#ifdef WIN32
|
|
#include <windows.h>
|
|
#include <stddef.h>
|
|
#include <stdio.h>
|
|
|
|
#define isatty(fd) _isatty(fd)
|
|
#define fileno(fd) _fileno(fd)
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
int winansi_fputs(const char *str, FILE *stream);
|
|
int winansi_printf(const char *format, ...);
|
|
int winansi_fprintf(FILE *stream, const char *format, ...);
|
|
int winansi_vfprintf(FILE *stream, const char *format, va_list list);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#undef fputs
|
|
#undef fprintf
|
|
#undef vfprintf
|
|
|
|
#define fputs winansi_fputs
|
|
#define printf winansi_printf
|
|
#define fprintf winansi_fprintf
|
|
#define vfprintf winansi_vfprintf
|
|
|
|
#endif |