470e8d8309
- debug break support for "continue" and "step N" commands - debugger message window shows the last 100 lines of debugger output - FIXME: tabstops not working in modeless dialog - FIXME: debugger window is always on top - TODO: cpu register viewer similar to the wx implementation
16 lines
405 B
C
16 lines
405 B
C
/////////////////////////////////////////////////////////////////////////
|
|
// $Id: win32dialog.h,v 1.11 2006-11-17 16:50:39 vruppert Exp $
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "config.h"
|
|
|
|
#if BX_USE_TEXTCONFIG && defined(WIN32)
|
|
|
|
int RuntimeOptionsDialog();
|
|
#if BX_DEBUGGER
|
|
void InitDebugDialog(HWND mainwnd);
|
|
#endif
|
|
void win32_init_notify_callback();
|
|
|
|
#endif
|