ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

nspinstl.c
Go to the documentation of this file.
00001 /*
00002  * COPYRIGHT:   See COPYING in the top level directory
00003  * PROJECT:     ReactOS WinSock 2 API
00004  * FILE:        nspinstl.c
00005  * PURPOSE:     Namespace Provider Installation
00006  * PROGRAMMER:  Alex Ionescu (alex@relsoft.net)
00007  */
00008 
00009 /* INCLUDES ******************************************************************/
00010 #include "ws2_32.h"
00011 
00012 //#define NDEBUG
00013 #include <debug.h>
00014 
00015 /* DATA **********************************************************************/
00016 
00017 /* FUNCTIONS *****************************************************************/
00018 
00019 /*
00020  * @unimplemented
00021  */
00022 INT
00023 WSPAPI
00024 WSCEnableNSProvider(IN LPGUID lpProviderId,
00025                     IN BOOL fEnable)
00026 {
00027     UNIMPLEMENTED;
00028     SetLastError(WSAEINVAL);
00029     return SOCKET_ERROR;
00030 }
00031 
00032 /*
00033  * @unimplemented
00034  */
00035 INT
00036 WSPAPI
00037 WSCInstallNameSpace(IN LPWSTR lpszIdentifier,
00038                     IN LPWSTR lpszPathName,
00039                     IN DWORD dwNameSpace,
00040                     IN DWORD dwVersion,
00041                     IN LPGUID lpProviderId)
00042 {
00043     UNIMPLEMENTED;
00044     SetLastError(WSAEINVAL);
00045     return SOCKET_ERROR;
00046 }
00047 
00048 /*
00049  * @unimplemented
00050  */
00051 INT
00052 WSPAPI
00053 WSCUnInstallNameSpace(IN LPGUID lpProviderId)
00054 {
00055     UNIMPLEMENTED;
00056     SetLastError(WSAEINVAL);
00057     return SOCKET_ERROR;
00058 }
00059 
00060 /*
00061  * @unimplemented
00062  */
00063 INT
00064 WSPAPI
00065 WSCUpdateProvider(LPGUID lpProviderId,
00066                   const WCHAR FAR * lpszProviderDllPath,
00067                   const LPWSAPROTOCOL_INFOW lpProtocolInfoList,
00068                   DWORD dwNumberOfEntries,
00069                   LPINT lpErrno)
00070 {
00071     UNIMPLEMENTED;
00072     SetLastError(WSAEINVAL);
00073     return SOCKET_ERROR;
00074 }
00075 
00076 /*
00077  * @unimplemented
00078  */
00079 INT
00080 WSPAPI
00081 WSCWriteNameSpaceOrder(LPGUID lpProviderId,
00082                        DWORD dwNumberOfEntries)
00083 {
00084     UNIMPLEMENTED;
00085     SetLastError(WSAEINVAL);
00086     return SOCKET_ERROR;
00087 }

Generated on Fri May 25 2012 04:25:11 for ReactOS by doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.