From 46812a4bba5542a19a68e287560d52e92e5dc61c Mon Sep 17 00:00:00 2001 From: Paul Vriens Date: Mon, 5 Feb 2007 20:04:05 +0100 Subject: [PATCH] wininet: Remove unused function. --- dlls/wininet/internet.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/dlls/wininet/internet.h b/dlls/wininet/internet.h index 846e7059f5e..55e480beeec 100644 --- a/dlls/wininet/internet.h +++ b/dlls/wininet/internet.h @@ -71,13 +71,6 @@ typedef struct #endif } WININET_NETCONNECTION; -inline static LPSTR WININET_strdup( LPCSTR str ) -{ - LPSTR ret = HeapAlloc( GetProcessHeap(), 0, strlen(str) + 1 ); - if (ret) strcpy( ret, str ); - return ret; -} - inline static LPWSTR WININET_strdupW( LPCWSTR str ) { LPWSTR ret = HeapAlloc( GetProcessHeap(), 0, (strlenW(str) + 1)*sizeof(WCHAR) );