Module: wine Branch: master Commit: 824842cac72a5d8db7f685ff846cbf54ff293ffb URL: http://source.winehq.org/git/wine.git/?a=commit;h=824842cac72a5d8db7f685ff84...
Author: Francois Gouget fgouget@free.fr Date: Thu May 22 10:38:03 2008 +0200
wininet/tests: Remove a stray reference to InternetSetStatusCallback().
---
dlls/wininet/tests/http.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/wininet/tests/http.c b/dlls/wininet/tests/http.c index 1cb9793..ccaf324 100644 --- a/dlls/wininet/tests/http.c +++ b/dlls/wininet/tests/http.c @@ -1837,7 +1837,7 @@ static void test_open_url_async(void) ses = InternetOpen("AdvancedInstaller", 0, NULL, NULL, INTERNET_FLAG_ASYNC); ok(ses != NULL, "InternetOpen failed\n");
- InternetSetStatusCallback(ses, cb); + pInternetSetStatusCallbackA(ses, cb); ResetEvent(ctx.event);
req = InternetOpenUrl(ses, "http://www.winehq.org", NULL, 0, 0, (DWORD_PTR)&ctx); @@ -1920,6 +1920,7 @@ START_TEST(http) InternetReadFile_test(INTERNET_FLAG_ASYNC); InternetReadFile_test(0); InternetReadFileExA_test(INTERNET_FLAG_ASYNC); + test_open_url_async(); } InternetOpenRequest_test(); test_http_cache(); @@ -1938,5 +1939,4 @@ START_TEST(http) test_http_connection(); test_user_agent_header(); test_bogus_accept_types_array(); - test_open_url_async(); }