[Wine] Re: T-Online Internet-Telefon (impossible to run the application

qwertymn wineforum-user at winehq.org
Tue Nov 11 14:24:27 CST 2008


i tried the app, problem seems to be a missing function from iphlpapi. The crude patch below makes the app start into the initial login window. Can't get any further as i don't have a login name ;)

patch:

diff --git a/dlls/iphlpapi/iphlpapi.spec b/dlls/iphlpapi/iphlpapi.spec
index 24c4e94..0986275 100644
--- a/dlls/iphlpapi/iphlpapi.spec
+++ b/dlls/iphlpapi/iphlpapi.spec
@@ -41,6 +41,7 @@
 @ stub GetIpNetTableFromStack
 @ stdcall GetIpStatistics( ptr )
 @ stub GetIpStatsFromStack
+@ stdcall GetAdaptersAddresses(long long ptr ptr ptr)
 @ stdcall GetNetworkParams( ptr ptr )
 @ stdcall GetNumberOfInterfaces( ptr )
 @ stdcall GetPerAdapterInfo( long ptr ptr )
diff --git a/dlls/iphlpapi/iphlpapi_main.c b/dlls/iphlpapi/iphlpapi_main.c
index c7a4a3f..4cc2232 100644
--- a/dlls/iphlpapi/iphlpapi_main.c
+++ b/dlls/iphlpapi/iphlpapi_main.c
@@ -2054,3 +2054,12 @@ DWORD WINAPI UnenableRouter(OVERLAPPED * pOverlapped, LPDWORD lpdwEnableCount)
    */
   return ERROR_NOT_SUPPORTED;
 }
+
+ULONG WINAPI GetAdaptersAddresses(
+       ULONG Family,
+      ULONG Flags,
+       PVOID Reserved,
+    /*PIP_ADAPTER_ADDRESSES*/ LPVOID AdapterAddresses,
+    PULONG SizePointer
+){return ERROR_CALL_NOT_IMPLEMENTED;}







More information about the wine-users mailing list