also corrects a cut-and-paste error that I made in options.c The following options can be set in the game now: WC_HILITE_PET WC_ALIGN_MESSAGE WC_ALIGN_STATUS WC_SCROLL_MARGIN WC_MAP_MODE WC_FONT_MESSAGE WC_FONT_STATUS WC_FONT_MENU WC_FONT_TEXT WC_FONTSIZ_MESSAGE WC_FONTSIZ_STATUS WC_FONTSIZ_MENU WC_FONTSIZ_TEXT
16 lines
406 B
C
16 lines
406 B
C
/* Copyright (C) 2001 by Alex Kompel <shurikk@pacbell.net> */
|
|
/* NetHack may be freely redistributed. See license for details. */
|
|
|
|
#ifndef MSWINMainWindow_h
|
|
#define MSWINMainWindow_h
|
|
|
|
/* this is a main appliation window */
|
|
|
|
#include "winMS.h"
|
|
|
|
HWND mswin_init_main_window (void);
|
|
void mswin_layout_main_window(HWND changed_child);
|
|
void mswin_select_map_mode(int map_mode);
|
|
|
|
#endif /* MSWINMainWindow_h */
|