Avoid going past the end of the relocation section. Skip sanity checks
[wine/multimedia.git] / dlls / mpr / multinet.c
blob750b10777e72b702212a360f6b8e40f742d47ddb
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.25]
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.26]
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.27]
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.28]
57 DWORD WINAPI MultinetGetErrorTextW( DWORD x, DWORD y, DWORD z )
59 FIXME( "(%lx, %lx, %lx ): stub\n", x, y, z );
60 return 0;