25 lines
598 B
C
25 lines
598 B
C
/* NetHack 3.7 winos.h $NHDT-Date: 1596498322 2020/08/03 23:45:22 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.0 $ */
|
|
/* Copyright (c) NetHack PC Development Team 2018 */
|
|
/* NetHack may be freely redistributed. See license for details. */
|
|
|
|
#ifndef WINOS_H
|
|
#define WINOS_H
|
|
|
|
#include "win32api.h"
|
|
|
|
#ifndef PATH_SEPARATOR
|
|
#define PATH_SEPARATOR '\\'
|
|
#endif
|
|
|
|
extern const WCHAR cp437[256];
|
|
|
|
WCHAR *
|
|
winos_ascii_to_wide_str(const unsigned char * src, WCHAR * dst, size_t dstLength);
|
|
|
|
void
|
|
winos_ascii_to_wide(WCHAR dst[3], UINT32 c);
|
|
|
|
BOOL winos_font_support_cp437(HFONT hFont);
|
|
|
|
#endif // WINOS_H
|