Reactos

[IPHLPAPI][REACTOS] Add iphlpapi_undoc.h and add undocumented functions

Add NhGetInterfaceNameFromDeviceGuid() and NhGetInterfaceNameFromGuid().

Eric Kohl ac4d7351 53846832

+23
+1
dll/win32/iphlpapi/iphlpapi_private.h
··· 33 33 #include <ndk/obfuncs.h> 34 34 #include <ndk/rtlfuncs.h> 35 35 #include <iphlpapi.h> 36 + #include <iphlpapi_undoc.h> 36 37 #include "resinfo.h" 37 38 #include <wine/debug.h> 38 39
+22
sdk/include/reactos/iphlpapi_undoc.h
··· 1 + #ifndef __IPHLPAPI_UNDOC_H__ 2 + #define __IPHLPAPI_UNDOC_H__ 3 + 4 + DWORD 5 + WINAPI 6 + NhGetInterfaceNameFromDeviceGuid( 7 + _In_ const GUID * pInterfaceGUID, 8 + _Out_writes_bytes_to_(*pOutBufLen, *pOutBufLen) PWCHAR pInterfaceName, 9 + _Inout_ PULONG pOutBufLen, 10 + DWORD dwUnknown4, 11 + DWORD dwUnknown5); 12 + 13 + DWORD 14 + WINAPI 15 + NhGetInterfaceNameFromGuid( 16 + _In_ const GUID * pInterfaceGUID, 17 + _Out_writes_bytes_to_(*pOutBufLen, *pOutBufLen) PWCHAR pInterfaceName, 18 + _Inout_ PULONG pOutBufLen, 19 + DWORD dwUnknown4, 20 + DWORD dwUnknown5); 21 + 22 + #endif /* __IPHLPAPI_UNDOC_H__ */