factor/vm/os-windows-nt.h

23 lines
496 B
C
Raw Normal View History

#undef _WIN32_WINNT
#define _WIN32_WINNT 0x0501 // For AddVectoredExceptionHandler
2007-09-20 18:09:08 -04:00
#ifndef UNICODE
#define UNICODE
#endif
2007-10-13 00:57:24 -04:00
#include <windows.h>
2007-09-20 18:09:08 -04:00
typedef char F_SYMBOL;
#define unbox_symbol_string unbox_char_string
#define from_symbol_string from_char_string
#define FACTOR_OS_STRING "winnt"
#define FACTOR_DLL L"factor.dll"
#define FACTOR_DLL_NAME "factor.dll"
2007-09-27 16:10:37 -04:00
void c_to_factor_toplevel(CELL quot);
2007-10-13 00:57:24 -04:00
long exception_handler(PEXCEPTION_POINTERS pe);
bool console_open;
void open_console(void);