Module: wine Branch: master Commit: 8f75f51c3f7adae8d2578d69285d0076954a4644 URL: http://source.winehq.org/git/wine.git/?a=commit;h=8f75f51c3f7adae8d2578d6928...
Author: Dmitry Timoshkov dmitry@codeweavers.com Date: Mon May 26 13:06:00 2008 +0900
wininet: INTERNET_InternetOpenUrlW is an internal helper.
---
dlls/wininet/internet.c | 5 +---- 1 files changed, 1 insertions(+), 4 deletions(-)
diff --git a/dlls/wininet/internet.c b/dlls/wininet/internet.c index 856f302..d4734a4 100644 --- a/dlls/wininet/internet.c +++ b/dlls/wininet/internet.c @@ -83,9 +83,6 @@ typedef struct CHAR response[MAX_REPLY_LEN]; } WITHREADERROR, *LPWITHREADERROR;
-HINTERNET WINAPI INTERNET_InternetOpenUrlW(LPWININETAPPINFOW hIC, LPCWSTR lpszUrl, - LPCWSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD_PTR dwContext); - static DWORD g_dwTlsErrIndex = TLS_OUT_OF_INDEXES; static HMODULE WININET_hModule;
@@ -2734,7 +2731,7 @@ BOOL WINAPI InternetCheckConnectionA(LPCSTR lpszUrl, DWORD dwFlags, DWORD dwRese * RETURNS * handle of connection or NULL on failure */ -HINTERNET WINAPI INTERNET_InternetOpenUrlW(LPWININETAPPINFOW hIC, LPCWSTR lpszUrl, +static HINTERNET INTERNET_InternetOpenUrlW(LPWININETAPPINFOW hIC, LPCWSTR lpszUrl, LPCWSTR lpszHeaders, DWORD dwHeadersLength, DWORD dwFlags, DWORD_PTR dwContext) { URL_COMPONENTSW urlComponents;