93dd7bfccf
- Added configure option to compile in GUI frontend for Bochs internal debugger, to enable configure with --enable-debugger-gui option. The GUI debugger frontend is enabled by default with Bochs internal debugger. If needed to compile without GUI debugger (in case of compilation issues) use --disable-debugger-gui
40 lines
847 B
C
40 lines
847 B
C
/////////////////////////////////////////////////////////////////////////
|
|
// $Id: win32dialog.h,v 1.15 2009-01-12 19:15:35 sshwarts Exp $
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef BX_WIN32_DIALOGS_H
|
|
#define BX_WIN32_DIALOGS_H
|
|
|
|
#include "config.h"
|
|
|
|
#ifndef _WIN32_IE
|
|
#define _WIN32_IE 0x0400 // Force a minimum "OS level" for commctrl.h
|
|
#endif
|
|
#if _WIN32_IE < 0x0400
|
|
#undef _WIN32_IE
|
|
#define _WIN32_IE 0x0400
|
|
#endif
|
|
|
|
extern "C" {
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include <windows.h>
|
|
#include <commctrl.h>
|
|
#include <shlobj.h>
|
|
#include <ctype.h>
|
|
}
|
|
|
|
#if BX_USE_TEXTCONFIG && defined(WIN32)
|
|
|
|
int RuntimeOptionsDialog();
|
|
#if BX_DEBUGGER && BX_DEBUGGER_GUI
|
|
void InitDebugDialog();
|
|
void ParseIDText (char *p);
|
|
void HitBreak();
|
|
#endif
|
|
void win32_init_notify_callback();
|
|
|
|
#endif
|
|
|
|
#endif // BX_WIN32_DIALOGS_H
|