xref: /reactos/dll/win32/mpr/multinet.c (revision 84ccccab)
1 /*
2  * MPR Multinet functions
3  *
4  * Copyright 1999 Ulrich Weigand
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20 
21 #include "precomp.h"
22 
23 /*****************************************************************
24  *     MultinetGetConnectionPerformanceA [MPR.@]
25  *
26  * RETURNS
27  *    Success: NO_ERROR
28  *    Failure: ERROR_NOT_SUPPORTED, ERROR_NOT_CONNECTED,
29  *             ERROR_NO_NET_OR_BAD_PATH, ERROR_BAD_DEVICE,
30  *             ERROR_BAD_NET_NAME, ERROR_INVALID_PARAMETER,
31  *             ERROR_NO_NETWORK, ERROR_EXTENDED_ERROR
32  */
33 DWORD WINAPI MultinetGetConnectionPerformanceA(
34 	LPNETRESOURCEA lpNetResource,
35 	LPNETCONNECTINFOSTRUCT lpNetConnectInfoStruct )
36 {
37     FIXME( "(%p, %p): stub\n", lpNetResource, lpNetConnectInfoStruct );
38 
39     SetLastError(WN_NO_NETWORK);
40     return WN_NO_NETWORK;
41 }
42 
43 /*****************************************************************
44  *     MultinetGetConnectionPerformanceW [MPR.@]
45  */
46 DWORD WINAPI MultinetGetConnectionPerformanceW(
47 	LPNETRESOURCEW lpNetResource,
48 	LPNETCONNECTINFOSTRUCT lpNetConnectInfoStruct )
49 {
50     FIXME( "(%p, %p): stub\n", lpNetResource, lpNetConnectInfoStruct );
51 
52     SetLastError(WN_NO_NETWORK);
53     return WN_NO_NETWORK;
54 }
55 
56 /*****************************************************************
57  *  MultinetGetErrorTextA [MPR.@]
58  */
59 DWORD WINAPI MultinetGetErrorTextA( DWORD x, DWORD y, DWORD z )
60 {
61     FIXME( "(%x, %x, %x): stub\n", x, y, z );
62     return 0;
63 }
64 
65 /*****************************************************************
66  *  MultinetGetErrorTextW [MPR.@]
67  */
68 DWORD WINAPI MultinetGetErrorTextW( DWORD x, DWORD y, DWORD z )
69 {
70     FIXME( "(%x, %x, %x ): stub\n", x, y, z );
71     return 0;
72 }
73