part 2 touches only port files Makes Borland happy with current sources. Fixes bug in WM_PAINT handling in rip/splash code. Fixes getline() bug (H0009) Tidies up source. Fixes up copyright notices. Adds TODO docs for Borland. (Removes "TODO" note) Small changes to defaults formatting. Fixes ALT key on Graphical Port non NetHack mode. Hilites pet in Graphical Port text mode. Also Implements windowcolors for status and message window in graphical port. On graphical port, tested to see it actually works. Tested on platforms Makefile MSC/BCC Graphical/Console, MSC IDE for compile and run and performing hilite pet in graphical text, not displaying rawio, alt key.
17 lines
445 B
C
17 lines
445 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);
|
|
void mswin_menu_check_intf_mode(void);
|
|
|
|
#endif /* MSWINMainWindow_h */
|