[ros-diffs] [dchapyshev] 42111: - Fix types of parameters for WPUFDIsSet, WSCInstallProvider
dchapyshev at svn.reactos.org
dchapyshev at svn.reactos.org
Tue Jul 21 10:59:31 CEST 2009
Author: dchapyshev
Date: Tue Jul 21 10:59:30 2009
New Revision: 42111
URL: http://svn.reactos.org/svn/reactos?rev=42111&view=rev
Log:
- Fix types of parameters for WPUFDIsSet, WSCInstallProvider
Modified:
trunk/reactos/dll/win32/ws2_32/include/upcall.h
trunk/reactos/dll/win32/ws2_32/misc/stubs.c
trunk/reactos/dll/win32/ws2_32/misc/upcall.c
Modified: trunk/reactos/dll/win32/ws2_32/include/upcall.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/ws2_32/include/upcall.h?rev=42111&r1=42110&r2=42111&view=diff
==============================================================================
--- trunk/reactos/dll/win32/ws2_32/include/upcall.h [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/ws2_32/include/upcall.h [iso-8859-1] Tue Jul 21 10:59:30 2009
@@ -37,7 +37,7 @@
IN DWORD dwContext,
OUT LPINT lpErrno);
-SOCKET
+int
WSPAPI
WPUFDIsSet(
IN SOCKET s,
Modified: trunk/reactos/dll/win32/ws2_32/misc/stubs.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/ws2_32/misc/stubs.c?rev=42111&r1=42110&r2=42111&view=diff
==============================================================================
--- trunk/reactos/dll/win32/ws2_32/misc/stubs.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/ws2_32/misc/stubs.c [iso-8859-1] Tue Jul 21 10:59:30 2009
@@ -775,8 +775,8 @@
*/
INT
EXPORT
-WSCInstallProvider(IN CONST LPGUID lpProviderId,
- IN CONST LPWSTR lpszProviderDllPath,
+WSCInstallProvider(IN LPGUID lpProviderId,
+ IN CONST WCHAR* lpszProviderDllPath,
IN CONST LPWSAPROTOCOL_INFOW lpProtocolInfoList,
IN DWORD dwNumberOfEntries,
OUT LPINT lpErrno)
Modified: trunk/reactos/dll/win32/ws2_32/misc/upcall.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/ws2_32/misc/upcall.c?rev=42111&r1=42110&r2=42111&view=diff
==============================================================================
--- trunk/reactos/dll/win32/ws2_32/misc/upcall.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/ws2_32/misc/upcall.c [iso-8859-1] Tue Jul 21 10:59:30 2009
@@ -84,7 +84,7 @@
/*
* @unimplemented
*/
-SOCKET
+int
WSPAPI
WPUFDIsSet(IN SOCKET s,
IN LPFD_SET set)
More information about the Ros-diffs
mailing list