ce changes (from <Someone>)
The following files are gone (sys\wince):
- stat.h (moved to ceinc\sys\stat.h)
- fcntl.h (moved to ceinc\fcntl.h)
- errno.h (moved to ceinc\errno.h)
- assert.h (moved to ceinc\assert.h)
The following files were added:
- mhtxtbuf.c
- mhtxtbuf.h
- menubar.uu
- ceinc
- ceinc\sys
- ceinc\fcntl.h
- ceinc\errno.h
- ceinc\assert.h
- ceinc\sys\stat.h
CE notes:
Fixes:
- added new options "wraptext", "fullscreen" and "softkeyboard"
- CE341-1 fix ("wraptext" option)
- hide map scrollbars on Smartphone
- added View->Options menu
- PocketPC: added "Fit to screen" and "Show/Hide keypad" icons
on the menu bar
- Smartphone: '<', '>' keys were mapped incorrectly
- build: use source files directly from <buildroot>\sys\wince instead of
copying them to <buildroot>\wince\
This commit is contained in:
@@ -68,12 +68,24 @@ int APIENTRY WinMain(HINSTANCE hInstance,
|
||||
_nethack_app.mapTilesPerLine = TILES_PER_LINE;
|
||||
_nethack_app.bNoHScroll = FALSE;
|
||||
_nethack_app.bNoVScroll = FALSE;
|
||||
|
||||
#if defined(WIN_CE_PS2xx) || defined(WIN_CE_POCKETPC) || defined(WIN_CE_SMARTPHONE)
|
||||
_nethack_app.bCmdPad = TRUE;
|
||||
#else
|
||||
_nethack_app.bCmdPad = FALSE;
|
||||
#endif
|
||||
|
||||
_nethack_app.bWrapText = TRUE;
|
||||
_nethack_app.bFullScreen = TRUE;
|
||||
|
||||
#if defined(WIN_CE_SMARTPHONE)
|
||||
_nethack_app.bHideScrollBars = TRUE;
|
||||
#else
|
||||
_nethack_app.bHideScrollBars = FALSE;
|
||||
#endif
|
||||
|
||||
_nethack_app.bUseSIP = TRUE;
|
||||
|
||||
// check for running nethack programs
|
||||
nethackWnd = FindWindow(szMainWindowClass, NULL);
|
||||
if( nethackWnd ) {
|
||||
|
||||
Reference in New Issue
Block a user