Skip to content

Commit ac4d735

Browse files
committed
[IPHLPAPI][REACTOS] Add iphlpapi_undoc.h and add undocumented functions
Add NhGetInterfaceNameFromDeviceGuid() and NhGetInterfaceNameFromGuid().
1 parent 5384683 commit ac4d735

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

dll/win32/iphlpapi/iphlpapi_private.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
#include <ndk/obfuncs.h>
3434
#include <ndk/rtlfuncs.h>
3535
#include <iphlpapi.h>
36+
#include <iphlpapi_undoc.h>
3637
#include "resinfo.h"
3738
#include <wine/debug.h>
3839

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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__ */

0 commit comments

Comments
 (0)