(svn r15718) -Cleanup: apply some comment coding style on the rest of the sources too

This commit is contained in:
rubidium
2009-03-15 00:32:18 +00:00
parent 332846e9e2
commit c3e87f345d
130 changed files with 1724 additions and 1727 deletions

View File

@@ -134,13 +134,13 @@ void ShowInfo(const char *str)
HMQ hmq;
ULONG rc;
// init PM env.
/* init PM env. */
hmq = WinCreateMsgQueue((hab = WinInitialize(0)), 0);
// display the box
/* display the box */
rc = WinMessageBox(HWND_DESKTOP, HWND_DESKTOP, (const unsigned char *)str, (const unsigned char *)"OpenTTD", 0, MB_OK | MB_MOVEABLE | MB_INFORMATION);
// terminate PM env.
/* terminate PM env. */
WinDestroyMsgQueue(hmq);
WinTerminate(hab);
}
@@ -151,13 +151,13 @@ void ShowOSErrorBox(const char *buf, bool system)
HMQ hmq;
ULONG rc;
// init PM env.
/* init PM env. */
hmq = WinCreateMsgQueue((hab = WinInitialize(0)), 0);
// display the box
/* display the box */
rc = WinMessageBox(HWND_DESKTOP, HWND_DESKTOP, (const unsigned char *)buf, (const unsigned char *)"OpenTTD", 0, MB_OK | MB_MOVEABLE | MB_ERROR);
// terminate PM env.
/* terminate PM env. */
WinDestroyMsgQueue(hmq);
WinTerminate(hab);
}