v/vlib/net/http/download_windows.c.v

30 lines
701 B
V
Raw Normal View History

// Copyright (c) 2019-2021 Alexander Medvednikov. All rights reserved.
2019-06-23 04:21:30 +02:00
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
2019-06-22 20:20:28 +02:00
module http
2020-06-10 11:25:41 +02:00
#flag -l urlmon
2020-06-10 11:24:34 +02:00
#include <urlmon.h>
fn download_file_with_progress(url string, out string, cb voidptr, cb_finished voidptr) {
2019-06-22 20:20:28 +02:00
}
/*
2019-07-31 23:19:02 +02:00
pub fn download_file(url, out string) {
C.URLDownloadToFile(0, url.to_wide(), out.to_wide(), 0, 0)
2019-07-31 23:03:38 +02:00
/*
if (res == S_OK) {
2019-06-22 20:20:28 +02:00
println('Download Ok')
# } else if(res == E_OUTOFMEMORY) {
println('Buffer length invalid, or insufficient memory')
# } else if(res == INET_E_DOWNLOAD_FAILURE) {
println('URL is invalid')
# } else {
# printf("Download error: %d\n", res);
# }
2019-07-31 23:03:38 +02:00
*/
2019-06-22 20:20:28 +02:00
}
*/