Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenauth.c
Go to the documentation of this file.
00001 /* 00002 * MPR Authentication and Logon functions 00003 * 00004 * Copyright 1999 Ulrich Weigand 00005 * 00006 * This library is free software; you can redistribute it and/or 00007 * modify it under the terms of the GNU Lesser General Public 00008 * License as published by the Free Software Foundation; either 00009 * version 2.1 of the License, or (at your option) any later version. 00010 * 00011 * This library is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 * Lesser General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU Lesser General Public 00017 * License along with this library; if not, write to the Free Software 00018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 00019 */ 00020 00021 #include <stdarg.h> 00022 00023 #include "windef.h" 00024 #include "winbase.h" 00025 #include "winnetwk.h" 00026 #include "wine/debug.h" 00027 00028 WINE_DEFAULT_DEBUG_CHANNEL(mpr); 00029 00030 00031 /***************************************************************** 00032 * WNetLogoffA [MPR.@] 00033 */ 00034 DWORD WINAPI WNetLogoffA( LPCSTR lpProvider, HWND hwndOwner ) 00035 { 00036 FIXME( "(%s, %p): stub\n", debugstr_a(lpProvider), hwndOwner ); 00037 00038 SetLastError(WN_NO_NETWORK); 00039 return WN_NO_NETWORK; 00040 } 00041 00042 /***************************************************************** 00043 * WNetLogoffW [MPR.@] 00044 */ 00045 DWORD WINAPI WNetLogoffW( LPCWSTR lpProvider, HWND hwndOwner ) 00046 { 00047 FIXME( "(%s, %p): stub\n", debugstr_w(lpProvider), hwndOwner ); 00048 00049 SetLastError(WN_NO_NETWORK); 00050 return WN_NO_NETWORK; 00051 } 00052 00053 /***************************************************************** 00054 * WNetLogonA [MPR.@] 00055 */ 00056 DWORD WINAPI WNetLogonA( LPCSTR lpProvider, HWND hwndOwner ) 00057 { 00058 FIXME( "(%s, %p): stub\n", debugstr_a(lpProvider), hwndOwner ); 00059 00060 SetLastError(WN_NO_NETWORK); 00061 return WN_NO_NETWORK; 00062 } 00063 00064 /***************************************************************** 00065 * WNetLogonW [MPR.@] 00066 */ 00067 DWORD WINAPI WNetLogonW( LPCWSTR lpProvider, HWND hwndOwner ) 00068 { 00069 FIXME( "(%s, %p): stub\n", debugstr_w(lpProvider), hwndOwner ); 00070 00071 SetLastError(WN_NO_NETWORK); 00072 return WN_NO_NETWORK; 00073 } 00074 00075 /***************************************************************** 00076 * WNetVerifyPasswordA [MPR.@] 00077 */ 00078 DWORD WINAPI WNetVerifyPasswordA( LPCSTR lpszPassword, BOOL *pfMatch ) 00079 { 00080 FIXME( "(%p, %p): stub\n", lpszPassword, pfMatch ); 00081 00082 SetLastError(WN_NO_NETWORK); 00083 return WN_NO_NETWORK; 00084 } 00085 00086 /***************************************************************** 00087 * WNetVerifyPasswordW [MPR.@] 00088 */ 00089 DWORD WINAPI WNetVerifyPasswordW( LPCWSTR lpszPassword, BOOL *pfMatch ) 00090 { 00091 FIXME( "(%p, %p): stub\n", lpszPassword, pfMatch ); 00092 00093 SetLastError(WN_NO_NETWORK); 00094 return WN_NO_NETWORK; 00095 } Generated on Sat May 26 2012 04:23:16 for ReactOS by
1.7.6.1
|