(svn r1289) -Fix: Minor fix for OS/2 message boxes (orudge)

This commit is contained in:
truelight
2004-12-28 12:11:34 +00:00
parent c2ee8d70e4
commit 5b8c604f47
2 changed files with 33 additions and 7 deletions

32
os2.c
View File

@@ -11,8 +11,8 @@
#include <dos.h>
#define INCL_DOS
#define INCL_WINDIALOGS
#define INCL_OS2MM
#define INCL_WIN
#include <os2.h>
#include <os2me.h>
@@ -481,15 +481,38 @@ static void ChangeWorkingDirectory(char *exe)
}
}
// for some reason these calls don't actually work properly :/
void ShowInfo(const char *str)
{
WinMessageBox(HWND_DESKTOP, HWND_DESKTOP, str, "OpenTTD", 0, MB_OK | MB_SYSTEMMODAL | MB_MOVEABLE | MB_INFORMATION);
HAB hab;
HMQ hmq;
ULONG rc;
// init PM env.
hmq = WinCreateMsgQueue((hab = WinInitialize(0)), 0);
// display the box
rc = WinMessageBox(HWND_DESKTOP, HWND_DESKTOP, str, "OpenTTD", 0, MB_OK | MB_MOVEABLE | MB_INFORMATION);
// terminate PM env.
WinDestroyMsgQueue(hmq);
WinTerminate(hab);
}
void ShowOSErrorBox(const char *buf)
{
WinMessageBox(HWND_DESKTOP, HWND_DESKTOP, buf, "OpenTTD", 0, MB_OK | MB_SYSTEMMODAL | MB_MOVEABLE | MB_ERROR);
HAB hab;
HMQ hmq;
ULONG rc;
// init PM env.
hmq = WinCreateMsgQueue((hab = WinInitialize(0)), 0);
// display the box
rc = WinMessageBox(HWND_DESKTOP, HWND_DESKTOP, buf, "OpenTTD", 0, MB_OK | MB_MOVEABLE | MB_ERROR);
// terminate PM env.
WinDestroyMsgQueue(hmq);
WinTerminate(hab);
}
int CDECL main(int argc, char* argv[])
@@ -588,7 +611,6 @@ void OS2_SwitchToConsoleMode()
pib->pib_ultype = 3;
}
/**********************
* OS/2 MIDI PLAYER
**********************/