2003-05-21 20:33:24 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2011-02-24 22:05:47 +00:00
|
|
|
// $Id$
|
2003-05-21 20:33:24 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2009-02-08 09:05:52 +00:00
|
|
|
//
|
|
|
|
// Copyright (C) 2009 The Bochs Project
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2003-05-21 20:33:24 +00:00
|
|
|
|
2008-12-27 12:06:39 +00:00
|
|
|
#ifndef BX_WIN32_DIALOGS_H
|
|
|
|
#define BX_WIN32_DIALOGS_H
|
|
|
|
|
2004-01-29 18:50:33 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2011-02-11 14:23:30 +00:00
|
|
|
// Compilation for WIN64 native require minimum 0x0500
|
2008-10-21 13:45:03 +00:00
|
|
|
#ifndef _WIN32_IE
|
2011-02-11 14:23:30 +00:00
|
|
|
#define _WIN32_IE 0x0500 /* Force a minimum "OS level" for commctrl.h */
|
2011-01-12 18:18:48 +00:00
|
|
|
#endif
|
|
|
|
#if _WIN32_IE < 0x0500
|
|
|
|
#undef _WIN32_IE
|
|
|
|
#define _WIN32_IE 0x0500
|
|
|
|
#endif
|
|
|
|
|
2008-10-21 13:45:03 +00:00
|
|
|
extern "C" {
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <windows.h>
|
|
|
|
#include <commctrl.h>
|
|
|
|
#include <shlobj.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
}
|
|
|
|
|
2004-01-29 18:50:33 +00:00
|
|
|
#if BX_USE_TEXTCONFIG && defined(WIN32)
|
2003-05-21 20:33:24 +00:00
|
|
|
|
2009-01-12 19:15:35 +00:00
|
|
|
#if BX_DEBUGGER && BX_DEBUGGER_GUI
|
2009-01-09 14:53:38 +00:00
|
|
|
void InitDebugDialog();
|
2009-02-08 18:52:06 +00:00
|
|
|
void ParseIDText(const char *p);
|
2009-01-09 14:53:38 +00:00
|
|
|
void HitBreak();
|
2006-11-17 16:50:39 +00:00
|
|
|
#endif
|
2009-03-24 16:28:03 +00:00
|
|
|
int init_win32_config_interface();
|
2003-05-21 20:33:24 +00:00
|
|
|
|
|
|
|
#endif
|
2008-12-27 12:06:39 +00:00
|
|
|
|
|
|
|
#endif // BX_WIN32_DIALOGS_H
|