Files
cpython-bin-deps/sdk/inc/inetutil.h
2017-05-22 13:38:44 -05:00

40 lines
928 B
C

#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,
__out LONG* plInfo
);
#ifdef __cplusplus
}
#endif