Module: wine Branch: master Commit: 46812a4bba5542a19a68e287560d52e92e5dc61c URL: http://source.winehq.org/git/wine.git/?a=commit;h=46812a4bba5542a19a68e28756... Author: Paul Vriens <paul.vriens.wine(a)gmail.com> Date: Mon Feb 5 20:04:05 2007 +0100 wininet: Remove unused function. --- dlls/wininet/internet.h | 7 ------- 1 files changed, 0 insertions(+), 7 deletions(-) diff --git a/dlls/wininet/internet.h b/dlls/wininet/internet.h index 846e705..55e480b 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) );