From 2c7e0c02571088f739ec9ed5fcc2eb83520d44e8 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Wed, 31 Jul 2019 23:03:38 +0200 Subject: [PATCH] http: fix download_win.v --- vlib/http/download_win.v | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/vlib/http/download_win.v b/vlib/http/download_win.v index 40f4c9f975..2f4003486e 100644 --- a/vlib/http/download_win.v +++ b/vlib/http/download_win.v @@ -8,8 +8,9 @@ fn download_file_with_progress(url, out string, cb, cb_finished voidptr) { } fn download_file(url, out string) { - # HRESULT res = URLDownloadToFile(NULL, url.str, out.str, 0, NULL); - # if(res == S_OK) { + C.URLDownloadToFile(0, url.str, out.str, 0, 0) + /* + if (res == S_OK) { println('Download Ok') # } else if(res == E_OUTOFMEMORY) { println('Buffer length invalid, or insufficient memory') @@ -18,5 +19,6 @@ fn download_file(url, out string) { # } else { # printf("Download error: %d\n", res); # } + */ }