rename sys/winnt to sys/windows move vs (visual studio) folder out of win/win32 and into sys/windows rename include/ntconf.h to include/windconf.h rename winnt.c to windsys.c place visual studio projects into individual subfolders. This will hopefully resolve GitHub issue #484 as well.
21 lines
539 B
C
21 lines
539 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"
|
|
|
|
extern const WCHAR cp437[256];
|
|
|
|
WCHAR *
|
|
winos_ascii_to_wide_str(const unsigned char * src, WCHAR * dst, size_t dstLength);
|
|
|
|
WCHAR
|
|
winos_ascii_to_wide(const unsigned char c);
|
|
|
|
BOOL winos_font_support_cp437(HFONT hFont);
|
|
|
|
#endif // WINOS_H
|