blob: 59836b5b301e06d66bfbe67239fdb7020b827d55 [file] [log] [blame]
#pragma once
//-------------------------------------------------------------------------------------------------
// <copyright file="inetutil.h" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// The use and distribution terms for this software are covered by the
// Common Public License 1.0 (http://opensource.org/licenses/cpl1.0.php)
// which can be found in the file CPL.TXT at the root of this distribution.
// By using this software in any fashion, you are agreeing to be bound by
// the terms of this license.
//
// You must not remove this notice, or any other, from this software.
// </copyright>
//
// <summary>
// Internet utilites.
// </summary>
//-------------------------------------------------------------------------------------------------
#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