Changeset 982
- Timestamp:
- Sep 19, 1999, 10:24:47 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/user32/msgbox.cpp ¶
r949 r982 1 /* $Id: msgbox.cpp,v 1. 1 1999-09-15 23:18:52sandervl Exp $ */1 /* $Id: msgbox.cpp,v 1.2 1999-09-19 08:24:47 sandervl Exp $ */ 2 2 /* 3 3 * Win32 message box function for OS/2 … … 101 101 INT WIN32API MessageBoxIndirectW(LPMSGBOXPARAMSW lpMsgBoxParams) 102 102 { 103 dprintf(("USER32:MessageBoxIndirectW (%08x) notimplemented.\n",103 dprintf(("USER32:MessageBoxIndirectW (%08x) partially implemented.\n", 104 104 lpMsgBoxParams)); 105 105 106 return (FALSE); 106 return (MessageBoxW(lpMsgBoxParams->hwndOwner, 107 lpMsgBoxParams->lpszText, 108 lpMsgBoxParams->lpszCaption, 109 lpMsgBoxParams->dwStyle)); 107 110 } 108 111 … … 126 129 INT WIN32API MessageBoxIndirectA(LPMSGBOXPARAMSA lpMsgBoxParams) 127 130 { 128 dprintf(("USER32:MessageBoxIndirectA (%08x) notimplemented.\n",131 dprintf(("USER32:MessageBoxIndirectA (%08x) partially implemented.\n", 129 132 lpMsgBoxParams)); 130 133 131 return (FALSE); 134 return (MessageBoxA(lpMsgBoxParams->hwndOwner, 135 lpMsgBoxParams->lpszText, 136 lpMsgBoxParams->lpszCaption, 137 lpMsgBoxParams->dwStyle)); 132 138 } 133 139 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.