Module: wine Branch: master Commit: 6444290aceba182cbddd7175052648a3369fec50 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6444290aceba182cbddd717505...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Fri Jun 5 11:48:57 2015 +0300
iphlpapi: Added ConvertInterfaceLuidToGuid() stub.
---
dlls/iphlpapi/iphlpapi.spec | 2 +- dlls/iphlpapi/iphlpapi_main.c | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/dlls/iphlpapi/iphlpapi.spec b/dlls/iphlpapi/iphlpapi.spec index 228f64f..d7a52b7 100644 --- a/dlls/iphlpapi/iphlpapi.spec +++ b/dlls/iphlpapi/iphlpapi.spec @@ -15,7 +15,7 @@ #@ stub ConvertInterfaceGuidToLuid #@ stub ConvertInterfaceIndexToLuid #@ stub ConvertInterfaceLuidToAlias -#@ stub ConvertInterfaceLuidToGuid +@ stdcall ConvertInterfaceLuidToGuid( ptr ptr ) #@ stub ConvertInterfaceLuidToIndex #@ stub ConvertInterfaceLuidToNameA #@ stub ConvertInterfaceLuidToNameW diff --git a/dlls/iphlpapi/iphlpapi_main.c b/dlls/iphlpapi/iphlpapi_main.c index 3eaefab..69ebca2 100644 --- a/dlls/iphlpapi/iphlpapi_main.c +++ b/dlls/iphlpapi/iphlpapi_main.c @@ -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; +}