Require {DECLARE,DEFAULT}_DEBUG_CHANNEL statements to end in a ;
[wine] / dlls / mpr / multinet.c
1 /*
2  * MPR Multinet functions
3  */
4
5 #include "winbase.h"
6 #include "winnetwk.h"
7 #include "debugtools.h"
8
9 DEFAULT_DEBUG_CHANNEL(mpr);
10
11
12 /*****************************************************************
13  *     MultinetGetConnectionPerformanceA [MPR.25]
14  *
15  * RETURNS
16  *    Success: NO_ERROR
17  *    Failure: ERROR_NOT_SUPPORTED, ERROR_NOT_CONNECTED,
18  *             ERROR_NO_NET_OR_BAD_PATH, ERROR_BAD_DEVICE,
19  *             ERROR_BAD_NET_NAME, ERROR_INVALID_PARAMETER, 
20  *             ERROR_NO_NETWORK, ERROR_EXTENDED_ERROR
21  */
22 DWORD WINAPI MultinetGetConnectionPerformanceA(
23         LPNETRESOURCEA lpNetResource,
24         LPNETCONNECTINFOSTRUCT lpNetConnectInfoStruct )
25 {
26     FIXME( "(%p, %p): stub\n", lpNetResource, lpNetConnectInfoStruct );
27
28     SetLastError(WN_NO_NETWORK);
29     return WN_NO_NETWORK;
30 }
31
32 /*****************************************************************
33  *     MultinetGetConnectionPerformanceW [MPR.26]
34  */
35 DWORD WINAPI MultinetGetConnectionPerformanceW(
36         LPNETRESOURCEW lpNetResource,
37         LPNETCONNECTINFOSTRUCT lpNetConnectInfoStruct )
38 {
39     FIXME( "(%p, %p): stub\n", lpNetResource, lpNetConnectInfoStruct );
40
41     SetLastError(WN_NO_NETWORK);
42     return WN_NO_NETWORK;
43 }
44
45 /*****************************************************************
46  *  MultinetGetErrorTextA [MPR.27]
47  */
48 DWORD WINAPI MultinetGetErrorTextA( DWORD x, DWORD y, DWORD z )
49 {
50     FIXME( "(%lx, %lx, %lx): stub\n", x, y, z );
51     return 0;
52 }
53
54 /*****************************************************************
55  *  MultinetGetErrorTextW [MPR.28]
56  */
57 DWORD WINAPI MultinetGetErrorTextW( DWORD x, DWORD y, DWORD z )
58 {
59     FIXME( "(%lx, %lx, %lx ): stub\n", x, y, z );
60     return 0;
61 }
62