Changeset 1240 for trunk/src/user32/msgbox.cpp
- Timestamp:
- Oct 10, 1999, 10:59:41 AM (26 years ago)
- File:
-
- 1 edited
-
trunk/src/user32/msgbox.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/msgbox.cpp
r1096 r1240 1 /* $Id: msgbox.cpp,v 1. 3 1999-10-01 10:15:23sandervl Exp $ */1 /* $Id: msgbox.cpp,v 1.4 1999-10-10 08:59:40 sandervl Exp $ */ 2 2 /* 3 3 * Win32 message box function for OS/2 … … 149 149 //****************************************************************************** 150 150 //****************************************************************************** 151 int WIN32API MessageBoxW(HWND arg1, LPCWSTR arg2, LPCWSTR arg3, UINT arg4)151 int WIN32API MessageBoxW(HWND hwndOwner, LPCWSTR arg2, LPCWSTR arg3, UINT arg4) 152 152 { 153 153 char *astring1, *astring2; … … 159 159 WriteLog("USER32: MessageBoxW %s %s\n", astring1, astring2); 160 160 #endif 161 rc = O32_MessageBox(arg1, astring1, astring2, arg4); 161 hwndOwner = Win32Window::Win32ToOS2Handle(hwndOwner); 162 rc = O32_MessageBox(hwndOwner, astring1, astring2, arg4); 162 163 FreeAsciiString(astring1); 163 164 FreeAsciiString(astring2);
Note:
See TracChangeset
for help on using the changeset viewer.
