CM_Is_Version_Available function (cfgmgr32.h)

[Beginning with Windows 8 and Windows Server 2012, this function has been deprecated and should not be used.]

The CM_Is_Version_Available function indicates whether a specified version of the Plug and Play (PnP) Configuration Manager DLL (Cfgmgr32.dll) is supported by a local machine.

Syntax

CMAPI BOOL CM_Is_Version_Available(
  [in] WORD wVersion
);

Parameters

[in] wVersion

Identifies a version of the configuration manager. The supported version of the configuration manager corresponds directly to the operating system version. The major version is specified by the high-order byte and the minor version is specified by the low-order byte.

For example, 0x0400 specifies version 4.0, which is supported by default by Microsoft Windows 2000 and later versions of Windows. 0x0501 specifies version 5.1, which is supported by Windows XP and later versions of Windows.

Return value

The function returns TRUE if the local machine supports the specified version of the configuration manager. Otherwise, the function returns FALSE.

Remarks

Use this function to determine whether a specified version of the configuration manager is supported by a local machine. If the specified version is supported, all versions earlier and including this version are supported by the machine. You can also use CM_Is_Version_Available_Ex to determine if a local or a remote machine supports a specific version of the configuration manager.

Requirements

Requirement Value
Minimum supported client Available in Windows XP and later versions of Windows.
Target Platform Desktop
Header cfgmgr32.h (include Cfgmgr32.h)
Library Cfgmgr32.lib
DLL Cfgmgr32.dll

See also

CM_Get_Version

CM_Get_Version_Ex

CM_Is_Version_Available_Ex