wininet: Remove unused function.

This commit is contained in:
Paul Vriens 2007-02-05 20:04:05 +01:00 committed by Alexandre Julliard
parent 17839bab6c
commit 46812a4bba
1 changed files with 0 additions and 7 deletions

View File

@ -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) );