iphlpapi: Added ConvertInterfaceLuidToGuid() stub.
This commit is contained in:
parent
69175fa9e1
commit
6444290ace
|
@ -15,7 +15,7 @@
|
|||
#@ stub ConvertInterfaceGuidToLuid
|
||||
#@ stub ConvertInterfaceIndexToLuid
|
||||
#@ stub ConvertInterfaceLuidToAlias
|
||||
#@ stub ConvertInterfaceLuidToGuid
|
||||
@ stdcall ConvertInterfaceLuidToGuid( ptr ptr )
|
||||
#@ stub ConvertInterfaceLuidToIndex
|
||||
#@ stub ConvertInterfaceLuidToNameA
|
||||
#@ stub ConvertInterfaceLuidToNameW
|
||||
|
|
|
@ -2658,3 +2658,12 @@ ULONG WINAPI GetTcp6Table2(PMIB_TCP6TABLE2 table, PULONG size, BOOL order)
|
|||
FIXME("pTcp6Table2 %p, size %p, order %d: stub\n", table, size, order);
|
||||
return ERROR_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
* ConvertInterfaceLuidToGuid (IPHLPAPI.@)
|
||||
*/
|
||||
DWORD WINAPI ConvertInterfaceLuidToGuid(const NET_LUID *luid, GUID *guid)
|
||||
{
|
||||
FIXME("(%p %p) stub\n", luid, guid);
|
||||
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue