- added instructions how to update the online documentation
[bochs-mirror.git] / gui / win32dialog.h
blob17bfcbe846c531c5e69a066ab847aadb6c735860
1 /////////////////////////////////////////////////////////////////////////
2 // $Id: win32dialog.h,v 1.12 2008/10/21 13:45:03 sshwarts Exp $
3 /////////////////////////////////////////////////////////////////////////
5 #include "config.h"
7 #ifndef _WIN32_IE
8 #define _WIN32_IE 0x0400 // Force a minimum "OS level" for commctrl.h
9 #endif
10 #if _WIN32_IE < 0x0400
11 #undef _WIN32_IE
12 #define _WIN32_IE 0x0400
13 #endif
15 extern "C" {
16 #include <assert.h>
17 #include <stdio.h>
18 #include <windows.h>
19 #include <commctrl.h>
20 #include <shlobj.h>
21 #include <ctype.h>
24 #if BX_USE_TEXTCONFIG && defined(WIN32)
26 int RuntimeOptionsDialog();
27 #if BX_DEBUGGER
28 void InitDebugDialog(HWND mainwnd);
29 void RefreshDebugDialog();
30 #endif
31 void win32_init_notify_callback();
33 #endif