File: mhcmd.h

package info (click to toggle)
glhack 1.2-1
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 24,604 kB
  • ctags: 18,992
  • sloc: ansic: 208,570; cpp: 13,139; yacc: 2,005; makefile: 1,161; lex: 377; sh: 321; awk: 89; sed: 11
file content (25 lines) | stat: -rw-r--r-- 751 bytes parent folder | download | duplicates (22)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* NetHack may be freely redistributed.  See license for details. */

#ifndef MSWINCMDWindow_h
#define MSWINCMDWindow_h

#include "winMS.h"
#include "config.h"
#include "global.h"

HWND mswin_init_command_window ();

/* if either sz->cx or sz->cy are already set this function will 
   no modify it. It will adjust them to the minimum size 
   required by the command window */
void mswin_command_window_size (HWND hwnd, LPSIZE sz);

#if defined(WIN_CE_SMARTPHONE)
/* special keypad input handling for SmartPhone */
BOOL	NHSPhoneTranslateKbdMessage(WPARAM wParam, LPARAM lParam, BOOL keyDown);
void	NHSPhoneSetKeypadFromString(const char* str);
void	NHSPhoneSetKeypadDirection();
void	NHSPhoneSetKeypadDefault();
#endif

#endif /* MSWINCMDWindow_h */