WinHttpCheckPlatform 函数 (winhttp.h)

WinHttpCheckPlatform 函数确定此版本的 Microsoft Windows HTTP Services (WinHTTP) 是否支持当前平台。

语法

WINHTTPAPI BOOL WinHttpCheckPlatform();

返回值

如果 Microsoft Windows HTTP Services (WinHTTP) 支持平台,则返回值为 TRUE ,否则 返回值为 FALSE

注解

如果应用程序使用 Microsoft Windows HTTP Services (WinHTTP) ,但也支持 WinHTTP 不支持的平台,则此函数非常有用。

即使在异步模式下使用 WinHTTP (即在 WinHttpOpen) 中设置了WINHTTP_FLAG_ASYNC时,此函数也会同步运行。 返回值指示成功或失败。 要获得更多的错误信息,请调用 GetLastError。

WinHTTP 版本 5.1 是 Windows 2000 的操作系统组件,其中包含 Service Pack 3 (SP3) 及更高版本 (,但 Datacenter Server) 、具有 Service Pack 1 的 Windows XP (SP1) 及更高版本以及 Windows Server 2003 除外。 在 Windows Server 2003 中,WinHTTP 是一个系统并行程序集。

有关详细信息,请参阅 运行时要求

示例

以下示例演示如何确定当前平台是否受支持。

    if (WinHttpCheckPlatform( ))
        printf("This platform is supported by WinHTTP.\n");
    else
        printf("This platform is NOT supported by WinHTTP.\n");

要求

   
最低受支持的客户端 Windows XP、Windows 2000 Professional 和 SP3 [仅限桌面应用]
最低受支持的服务器 Windows Server 2003、Windows 2000 Server SP3 [仅限桌面应用]
目标平台 Windows
标头 winhttp.h
Library Winhttp.lib
DLL Winhttp.dll

另请参阅

WinHTTP 版本