Don't return overflow if no class buffer was specified.
[wine/dcerpc.git] / dlls / mpr / multinet.c
blob05e6c01bd70e7780225119c924435d2beeaea891
1 /*
2 * MPR Multinet functions
3 */
5 #include "winbase.h"
6 #include "winnetwk.h"
7 #include "debugtools.h"
9 DEFAULT_DEBUG_CHANNEL(mpr);
12 /*****************************************************************
13 * MultinetGetConnectionPerformanceA [MPR.@]
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
22 DWORD WINAPI MultinetGetConnectionPerformanceA(
23 LPNETRESOURCEA lpNetResource,
24 LPNETCONNECTINFOSTRUCT lpNetConnectInfoStruct )
26 FIXME( "(%p, %p): stub\n", lpNetResource, lpNetConnectInfoStruct );
28 SetLastError(WN_NO_NETWORK);
29 return WN_NO_NETWORK;
32 /*****************************************************************
33 * MultinetGetConnectionPerformanceW [MPR.@]
35 DWORD WINAPI MultinetGetConnectionPerformanceW(
36 LPNETRESOURCEW lpNetResource,
37 LPNETCONNECTINFOSTRUCT lpNetConnectInfoStruct )
39 FIXME( "(%p, %p): stub\n", lpNetResource, lpNetConnectInfoStruct );
41 SetLastError(WN_NO_NETWORK);
42 return WN_NO_NETWORK;
45 /*****************************************************************
46 * MultinetGetErrorTextA [MPR.@]
48 DWORD WINAPI MultinetGetErrorTextA( DWORD x, DWORD y, DWORD z )
50 FIXME( "(%lx, %lx, %lx): stub\n", x, y, z );
51 return 0;
54 /*****************************************************************
55 * MultinetGetErrorTextW [MPR.@]
57 DWORD WINAPI MultinetGetErrorTextW( DWORD x, DWORD y, DWORD z )
59 FIXME( "(%lx, %lx, %lx ): stub\n", x, y, z );
60 return 0;