Added modeless message box stub for textconfig.

This commit is contained in:
Volker Ruppert 2023-10-29 21:59:18 +01:00
parent 1519076597
commit cc16aea6fb

View File

@ -2,7 +2,7 @@
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002-2021 The Bochs Project
// Copyright (C) 2002-2023 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
@ -823,6 +823,12 @@ ask:
event->retcode = 0;
}
return event;
case BX_SYNC_EVT_ML_MSG_BOX:
fprintf(stderr, "%s\n%s\n", event->u.logmsg.prefix, event->u.logmsg.msg);
return event;
case BX_SYNC_EVT_ML_MSG_BOX_KILL:
// Nothing to do
return event;
case BX_ASYNC_EVT_REFRESH:
case BX_ASYNC_EVT_DBG_MSG:
case BX_ASYNC_EVT_LOG_MSG: