You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
notcurses/src/lib/windows.h

19 lines
329 B
C

#ifndef NOTCURSES_WINDOWS
#define NOTCURSES_WINDOWS
#ifdef __cplusplus
extern "C" {
#endif
struct tinfo;
// ti has been memset to all zeroes. windows configuration is static.
int prepare_windows_terminal(struct tinfo* ti, size_t* tablelen,
size_t* tableused);
#ifdef __cplusplus
}
#endif
#endif