Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenmultinet.c
Go to the documentation of this file.
00001 /* 00002 * MPR Multinet 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 * MultinetGetConnectionPerformanceA [MPR.@] 00033 * 00034 * RETURNS 00035 * Success: NO_ERROR 00036 * Failure: ERROR_NOT_SUPPORTED, ERROR_NOT_CONNECTED, 00037 * ERROR_NO_NET_OR_BAD_PATH, ERROR_BAD_DEVICE, 00038 * ERROR_BAD_NET_NAME, ERROR_INVALID_PARAMETER, 00039 * ERROR_NO_NETWORK, ERROR_EXTENDED_ERROR 00040 */ 00041 DWORD WINAPI MultinetGetConnectionPerformanceA( 00042 LPNETRESOURCEA lpNetResource, 00043 LPNETCONNECTINFOSTRUCT lpNetConnectInfoStruct ) 00044 { 00045 FIXME( "(%p, %p): stub\n", lpNetResource, lpNetConnectInfoStruct ); 00046 00047 SetLastError(WN_NO_NETWORK); 00048 return WN_NO_NETWORK; 00049 } 00050 00051 /***************************************************************** 00052 * MultinetGetConnectionPerformanceW [MPR.@] 00053 */ 00054 DWORD WINAPI MultinetGetConnectionPerformanceW( 00055 LPNETRESOURCEW lpNetResource, 00056 LPNETCONNECTINFOSTRUCT lpNetConnectInfoStruct ) 00057 { 00058 FIXME( "(%p, %p): stub\n", lpNetResource, lpNetConnectInfoStruct ); 00059 00060 SetLastError(WN_NO_NETWORK); 00061 return WN_NO_NETWORK; 00062 } 00063 00064 /***************************************************************** 00065 * MultinetGetErrorTextA [MPR.@] 00066 */ 00067 DWORD WINAPI MultinetGetErrorTextA( DWORD x, DWORD y, DWORD z ) 00068 { 00069 FIXME( "(%x, %x, %x): stub\n", x, y, z ); 00070 return 0; 00071 } 00072 00073 /***************************************************************** 00074 * MultinetGetErrorTextW [MPR.@] 00075 */ 00076 DWORD WINAPI MultinetGetErrorTextW( DWORD x, DWORD y, DWORD z ) 00077 { 00078 FIXME( "(%x, %x, %x ): stub\n", x, y, z ); 00079 return 0; 00080 } Generated on Sat May 26 2012 04:23:17 for ReactOS by
1.7.6.1
|