blob: 19ace88bb1e31cd323ef767c8d0ecca6b507f7e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#pragma once
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
#ifdef __cplusplus
extern "C" {
#endif
#define ReleaseInternet(h) if (h) { ::InternetCloseHandle(h); h = NULL; }
#define ReleaseNullInternet(h) if (h) { ::InternetCloseHandle(h); h = NULL; }
// functions
HRESULT DAPI InternetGetSizeByHandle(
__in HINTERNET hiFile,
__out LONGLONG* pllSize
);
HRESULT DAPI InternetGetCreateTimeByHandle(
__in HINTERNET hiFile,
__out LPFILETIME pft
);
HRESULT DAPI InternetQueryInfoString(
__in HINTERNET h,
__in DWORD dwInfo,
__deref_out_z LPWSTR* psczValue
);
HRESULT DAPI InternetQueryInfoNumber(
__in HINTERNET h,
__in DWORD dwInfo,
__inout LONG* plInfo
);
#ifdef __cplusplus
}
#endif
|