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

Add NhGetInterfaceNameFromDeviceGuid() and NhGetInterfaceNameFromGuid().
This commit is contained in:
Eric Kohl
2025-10-16 13:20:00 +02:00
parent 538468326d
commit ac4d7351f9
2 changed files with 23 additions and 0 deletions

View File

@@ -33,6 +33,7 @@
#include <ndk/obfuncs.h>
#include <ndk/rtlfuncs.h>
#include <iphlpapi.h>
#include <iphlpapi_undoc.h>
#include "resinfo.h"
#include <wine/debug.h>

View File

@@ -0,0 +1,22 @@
#ifndef __IPHLPAPI_UNDOC_H__
#define __IPHLPAPI_UNDOC_H__
DWORD
WINAPI
NhGetInterfaceNameFromDeviceGuid(
_In_ const GUID * pInterfaceGUID,
_Out_writes_bytes_to_(*pOutBufLen, *pOutBufLen) PWCHAR pInterfaceName,
_Inout_ PULONG pOutBufLen,
DWORD dwUnknown4,
DWORD dwUnknown5);
DWORD
WINAPI
NhGetInterfaceNameFromGuid(
_In_ const GUID * pInterfaceGUID,
_Out_writes_bytes_to_(*pOutBufLen, *pOutBufLen) PWCHAR pInterfaceName,
_Inout_ PULONG pOutBufLen,
DWORD dwUnknown4,
DWORD dwUnknown5);
#endif /* __IPHLPAPI_UNDOC_H__ */