Hello, License: LGPL, X11 Changelog: Michael Stefaniuc <mstefani@redhat.com> - Compile the mpr dll with STRICT defined bye michael -- Michael Stefaniuc Tel.: +49-711-96437-199 System Administration Fax.: +49-711-96437-111 Red Hat GmbH Email: mstefani@redhat.com Hauptstaetterstr. 58 http://www.redhat.de/ D-70178 Stuttgart
Index: Makefile.in =================================================================== RCS file: /home/wine/wine/dlls/mpr/Makefile.in,v retrieving revision 1.12 diff -u -r1.12 Makefile.in --- Makefile.in 18 Oct 2002 23:46:29 -0000 1.12 +++ Makefile.in 21 Oct 2002 23:12:05 -0000 @@ -1,4 +1,3 @@ -EXTRADEFS = -DWINE_NO_STRICT TOPSRCDIR = @top_srcdir@ TOPOBJDIR = ../.. SRCDIR = @srcdir@ Index: auth.c =================================================================== RCS file: /home/wine/wine/dlls/mpr/auth.c,v retrieving revision 1.4 diff -u -r1.4 auth.c --- auth.c 9 Mar 2002 23:33:06 -0000 1.4 +++ auth.c 21 Oct 2002 23:12:05 -0000 @@ -30,7 +30,7 @@ */ DWORD WINAPI WNetLogoffA( LPCSTR lpProvider, HWND hwndOwner ) { - FIXME( "(%s, %04x): stub\n", debugstr_a(lpProvider), hwndOwner ); + FIXME( "(%s, %p): stub\n", debugstr_a(lpProvider), hwndOwner ); SetLastError(WN_NO_NETWORK); return WN_NO_NETWORK; @@ -41,7 +41,7 @@ */ DWORD WINAPI WNetLogoffW( LPCWSTR lpProvider, HWND hwndOwner ) { - FIXME( "(%s, %04x): stub\n", debugstr_w(lpProvider), hwndOwner ); + FIXME( "(%s, %p): stub\n", debugstr_w(lpProvider), hwndOwner ); SetLastError(WN_NO_NETWORK); return WN_NO_NETWORK; @@ -52,7 +52,7 @@ */ DWORD WINAPI WNetLogonA( LPCSTR lpProvider, HWND hwndOwner ) { - FIXME( "(%s, %04x): stub\n", debugstr_a(lpProvider), hwndOwner ); + FIXME( "(%s, %p): stub\n", debugstr_a(lpProvider), hwndOwner ); SetLastError(WN_NO_NETWORK); return WN_NO_NETWORK; @@ -63,7 +63,7 @@ */ DWORD WINAPI WNetLogonW( LPCWSTR lpProvider, HWND hwndOwner ) { - FIXME( "(%s, %04x): stub\n", debugstr_w(lpProvider), hwndOwner ); + FIXME( "(%s, %p): stub\n", debugstr_w(lpProvider), hwndOwner ); SetLastError(WN_NO_NETWORK); return WN_NO_NETWORK; Index: wnet.c =================================================================== RCS file: /home/wine/wine/dlls/mpr/wnet.c,v retrieving revision 1.12 diff -u -r1.12 wnet.c --- wnet.c 17 Aug 2002 00:43:16 -0000 1.12 +++ wnet.c 21 Oct 2002 23:12:05 -0000 @@ -71,7 +71,7 @@ DWORD WINAPI WNetEnumResourceA( HANDLE hEnum, LPDWORD lpcCount, LPVOID lpBuffer, LPDWORD lpBufferSize ) { - FIXME( "(%04X, %p, %p, %p): stub\n", + FIXME( "(%p, %p, %p, %p): stub\n", hEnum, lpcCount, lpBuffer, lpBufferSize ); SetLastError(WN_NO_NETWORK); @@ -84,7 +84,7 @@ DWORD WINAPI WNetEnumResourceW( HANDLE hEnum, LPDWORD lpcCount, LPVOID lpBuffer, LPDWORD lpBufferSize ) { - FIXME( "(%04X, %p, %p, %p): stub\n", + FIXME( "(%p, %p, %p, %p): stub\n", hEnum, lpcCount, lpBuffer, lpBufferSize ); SetLastError(WN_NO_NETWORK); @@ -96,7 +96,7 @@ */ DWORD WINAPI WNetCloseEnum( HANDLE hEnum ) { - FIXME( "(%04X): stub\n", hEnum ); + FIXME( "(%p): stub\n", hEnum ); SetLastError(WN_NO_NETWORK); return WN_NO_NETWORK; @@ -223,7 +223,7 @@ LPCSTR lpPassword, LPCSTR lpUserID, DWORD dwFlags ) { - FIXME( "(%04x, %p, %p, %s, 0x%08lX), stub\n", + FIXME( "(%p, %p, %p, %s, 0x%08lX), stub\n", hwndOwner, lpNetResource, lpPassword, debugstr_a(lpUserID), dwFlags ); SetLastError(WN_NO_NETWORK); @@ -237,7 +237,7 @@ LPCWSTR lpPassword, LPCWSTR lpUserID, DWORD dwFlags ) { - FIXME( "(%04x, %p, %p, %s, 0x%08lX), stub\n", + FIXME( "(%p, %p, %p, %s, 0x%08lX), stub\n", hwndOwner, lpNetResource, lpPassword, debugstr_w(lpUserID), dwFlags ); SetLastError(WN_NO_NETWORK); @@ -252,7 +252,7 @@ LPSTR lpAccessName, LPDWORD lpBufferSize, LPDWORD lpResult ) { - FIXME( "(%04x, %p, %p, %s, 0x%08lX, %s, %p, %p), stub\n", + FIXME( "(%p, %p, %p, %s, 0x%08lX, %s, %p, %p), stub\n", hwndOwner, lpNetResource, lpPassword, debugstr_a(lpUserID), dwFlags, debugstr_a(lpAccessName), lpBufferSize, lpResult ); @@ -268,7 +268,7 @@ LPWSTR lpAccessName, LPDWORD lpBufferSize, LPDWORD lpResult ) { - FIXME( "(%04x, %p, %p, %s, 0x%08lX, %s, %p, %p), stub\n", + FIXME( "(%p, %p, %p, %s, 0x%08lX, %s, %p, %p), stub\n", hwndOwner, lpNetResource, lpPassword, debugstr_w(lpUserID), dwFlags, debugstr_w(lpAccessName), lpBufferSize, lpResult ); @@ -321,7 +321,7 @@ */ DWORD WINAPI WNetRestoreConnectionA( HWND hwndOwner, LPSTR lpszDevice ) { - FIXME( "(%04X, %s), stub\n", hwndOwner, debugstr_a(lpszDevice) ); + FIXME( "(%p, %s), stub\n", hwndOwner, debugstr_a(lpszDevice) ); SetLastError(WN_NO_NETWORK); return WN_NO_NETWORK; @@ -332,7 +332,7 @@ */ DWORD WINAPI WNetRestoreConnectionW( HWND hwndOwner, LPWSTR lpszDevice ) { - FIXME( "(%04X, %s), stub\n", hwndOwner, debugstr_w(lpszDevice) ); + FIXME( "(%p, %s), stub\n", hwndOwner, debugstr_w(lpszDevice) ); SetLastError(WN_NO_NETWORK); return WN_NO_NETWORK; @@ -492,7 +492,7 @@ */ DWORD WINAPI WNetConnectionDialog( HWND hwnd, DWORD dwType ) { - FIXME( "(%04x, %08lX): stub\n", hwnd, dwType ); + FIXME( "(%p, %08lX): stub\n", hwnd, dwType ); SetLastError(WN_NO_NETWORK); return ERROR_NO_NETWORK; @@ -525,7 +525,7 @@ */ DWORD WINAPI WNetDisconnectDialog( HWND hwnd, DWORD dwType ) { - FIXME( "(%04x, %08lX): stub\n", hwnd, dwType ); + FIXME( "(%p, %08lX): stub\n", hwnd, dwType ); SetLastError(WN_NO_NETWORK); return ERROR_NO_NETWORK;
Attachment:
pgp00062.pgp
Description: PGP signature