iphlpapi: Added ConvertInterfaceLuidToGuid() stub.

This commit is contained in:
Nikolay Sivov 2015-06-05 11:48:57 +03:00 committed by Alexandre Julliard
parent 69175fa9e1
commit 6444290ace
2 changed files with 10 additions and 1 deletions

View File

@ -15,7 +15,7 @@
#@ stub ConvertInterfaceGuidToLuid
#@ stub ConvertInterfaceIndexToLuid
#@ stub ConvertInterfaceLuidToAlias
#@ stub ConvertInterfaceLuidToGuid
@ stdcall ConvertInterfaceLuidToGuid( ptr ptr )
#@ stub ConvertInterfaceLuidToIndex
#@ stub ConvertInterfaceLuidToNameA
#@ stub ConvertInterfaceLuidToNameW

View File

@ -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;
}