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/u…
==============================================================================
--- 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/stub…
==============================================================================
--- 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/upca…
==============================================================================
--- 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)