You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-04-13 14:42:51 -07:00
Added patch for stub of iphlpapi.ConvertInterfaceLuidToGuid.
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
From 0f3dd71c9bb44c82e1dd38bd2c4eb929bb163685 Mon Sep 17 00:00:00 2001
|
||||
From: Sebastian Lackner <sebastian@fds-team.de>
|
||||
Date: Thu, 28 May 2015 22:43:27 +0200
|
||||
Subject: iphlpapi: Add stub for ConvertInterfaceLuidToGuid.
|
||||
|
||||
---
|
||||
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..d3bb853 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("luid %p, guid %p: stub\n", luid, guid);
|
||||
+ return ERROR_CALL_NOT_IMPLEMENTED;
|
||||
+}
|
||||
--
|
||||
2.4.1
|
||||
|
1
patches/iphlpapi-ConvertInterfaceLuidToGuid/definition
Normal file
1
patches/iphlpapi-ConvertInterfaceLuidToGuid/definition
Normal file
@@ -0,0 +1 @@
|
||||
Fixes: [38576] Add stub for iphlpapi.ConvertInterfaceLuidToGuid
|
Reference in New Issue
Block a user