2003-05-22 00:33:24 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2009-01-12 22:15:35 +03:00
|
|
|
// $Id: win32dialog.h,v 1.15 2009-01-12 19:15:35 sshwarts Exp $
|
2003-05-22 00:33:24 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2008-12-27 15:06:39 +03:00
|
|
|
#ifndef BX_WIN32_DIALOGS_H
|
|
|
|
#define BX_WIN32_DIALOGS_H
|
|
|
|
|
2004-01-29 21:50:33 +03:00
|
|
|
#include "config.h"
|
|
|
|
|
2008-10-21 17:45:03 +04:00
|
|
|
#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>
|
|
|
|
}
|
|
|
|
|
2004-01-29 21:50:33 +03:00
|
|
|
#if BX_USE_TEXTCONFIG && defined(WIN32)
|
2003-05-22 00:33:24 +04:00
|
|
|
|
2004-02-01 04:40:14 +03:00
|
|
|
int RuntimeOptionsDialog();
|
2009-01-12 22:15:35 +03:00
|
|
|
#if BX_DEBUGGER && BX_DEBUGGER_GUI
|
2009-01-09 17:53:38 +03:00
|
|
|
void InitDebugDialog();
|
|
|
|
void ParseIDText (char *p);
|
|
|
|
void HitBreak();
|
2006-11-17 19:50:39 +03:00
|
|
|
#endif
|
2005-10-22 15:00:00 +04:00
|
|
|
void win32_init_notify_callback();
|
2003-05-22 00:33:24 +04:00
|
|
|
|
|
|
|
#endif
|
2008-12-27 15:06:39 +03:00
|
|
|
|
|
|
|
#endif // BX_WIN32_DIALOGS_H
|