ChangeSet ID: 21219 CVSROOT: /opt/cvs-commit Module name: wine Changes by: julliard(a)winehq.org 2005/11/11 04:52:53 Modified files: dlls/msi : msi.c Log message: Steven Edwards <winehacker(a)gmail.com> Partly implement MsiMessageBox[A/W] on top of MessageBoxEx[A/W] Patch: http://cvs.winehq.org/patch.py?id=21219 Old revision New revision Changes Path 1.116 1.117 +2 -2 wine/dlls/msi/msi.c Index: wine/dlls/msi/msi.c diff -u -p wine/dlls/msi/msi.c:1.116 wine/dlls/msi/msi.c:1.117 --- wine/dlls/msi/msi.c:1.116 11 Nov 2005 10:52:53 -0000 +++ wine/dlls/msi/msi.c 11 Nov 2005 10:52:53 -0000 @@ -832,7 +832,7 @@ UINT WINAPI MsiMessageBoxA(HWND hWnd, LP { FIXME("%p %s %s %u %08x %08lx\n",hWnd,debugstr_a(lpText),debugstr_a(lpCaption), uType,wLanguageId,f); - return ERROR_CALL_NOT_IMPLEMENTED; + return MessageBoxExA(hWnd,lpText,lpCaption,uType,wLanguageId); } UINT WINAPI MsiMessageBoxW(HWND hWnd, LPCWSTR lpText, LPCWSTR lpCaption, UINT uType, @@ -840,7 +840,7 @@ UINT WINAPI MsiMessageBoxW(HWND hWnd, LP { FIXME("%p %s %s %u %08x %08lx\n",hWnd,debugstr_w(lpText),debugstr_w(lpCaption), uType,wLanguageId,f); - return ERROR_CALL_NOT_IMPLEMENTED; + return MessageBoxExW(hWnd,lpText,lpCaption,uType,wLanguageId); } UINT WINAPI MsiProvideAssemblyA( LPCSTR szAssemblyName, LPCSTR szAppContext,
participants (1)
-
Alexandre Julliard