//
// Copyright (C) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
//
//
// The MIT License (MIT)
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation the
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
// sell copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
//
#pragma once
// Constants
//
#ifndef E_NOTFOUND
#define E_NOTFOUND HRESULT_FROM_WIN32(ERROR_NOT_FOUND)
#endif
#ifndef E_FILENOTFOUND
#define E_FILENOTFOUND HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND)
#endif
// Enumerations
//
///
/// The state of an instance.
///
enum InstanceState : unsigned {
///
/// The instance state has not been determined.
///
eNone = 0,
///
/// The instance installation path exists.
///
eLocal = 1,
///
/// A product is registered to the instance.
///
eRegistered = 2,
///
/// No reboot is required for the instance.
///
eNoRebootRequired = 4,
///
/// The instance represents a complete install.
///
eComplete = MAXUINT,
};
// Forward interface declarations
//
#ifndef __ISetupInstance_FWD_DEFINED__
#define __ISetupInstance_FWD_DEFINED__
typedef struct ISetupInstance ISetupInstance;
#endif
#ifndef __ISetupInstance2_FWD_DEFINED__
#define __ISetupInstance2_FWD_DEFINED__
typedef struct ISetupInstance2 ISetupInstance2;
#endif
#ifndef __IEnumSetupInstances_FWD_DEFINED__
#define __IEnumSetupInstances_FWD_DEFINED__
typedef struct IEnumSetupInstances IEnumSetupInstances;
#endif
#ifndef __ISetupConfiguration_FWD_DEFINED__
#define __ISetupConfiguration_FWD_DEFINED__
typedef struct ISetupConfiguration ISetupConfiguration;
#endif
#ifndef __ISetupConfiguration2_FWD_DEFINED__
#define __ISetupConfiguration2_FWD_DEFINED__
typedef struct ISetupConfiguration2 ISetupConfiguration2;
#endif
#ifndef __ISetupPackageReference_FWD_DEFINED__
#define __ISetupPackageReference_FWD_DEFINED__
typedef struct ISetupPackageReference ISetupPackageReference;
#endif
#ifndef __ISetupHelper_FWD_DEFINED__
#define __ISetupHelper_FWD_DEFINED__
typedef struct ISetupHelper ISetupHelper;
#endif
// Forward class declarations
//
#ifndef __SetupConfiguration_FWD_DEFINED__
#define __SetupConfiguration_FWD_DEFINED__
#ifdef __cplusplus
typedef class SetupConfiguration SetupConfiguration;
#endif
#endif
#ifdef __cplusplus
extern "C" {
#endif
// Interface definitions
//
EXTERN_C const IID IID_ISetupInstance;
#if defined(__cplusplus) && !defined(CINTERFACE)
///
/// Information about an instance of a product.
///
struct DECLSPEC_UUID("B41463C3-8866-43B5-BC33-2B0676F7F42E")
DECLSPEC_NOVTABLE ISetupInstance : public IUnknown {
///
/// Gets the instance identifier (should match the name of the parent instance
/// directory).
///
/// The instance identifier.
/// Standard HRESULT indicating success or failure, including
/// E_FILENOTFOUND if the instance state does not exist.
STDMETHOD(GetInstanceId)(_Out_ BSTR *pbstrInstanceId) = 0;
///
/// Gets the local date and time when the installation was originally
/// installed.
///
/// The local date and time when the installation
/// was originally installed.
/// Standard HRESULT indicating success or failure, including
/// E_FILENOTFOUND if the instance state does not exist and E_NOTFOUND if the
/// property is not defined.
STDMETHOD(GetInstallDate)(_Out_ LPFILETIME pInstallDate) = 0;
///
/// Gets the unique name of the installation, often indicating the branch and
/// other information used for telemetry.
///
/// The unique name of the installation,
/// often indicating the branch and other information used for
/// telemetry.
/// Standard HRESULT indicating success or failure, including
/// E_FILENOTFOUND if the instance state does not exist and E_NOTFOUND if the
/// property is not defined.
STDMETHOD(GetInstallationName)(_Out_ BSTR *pbstrInstallationName) = 0;
///
/// Gets the path to the installation root of the product.
///
/// The path to the installation root of
/// the product.
/// Standard HRESULT indicating success or failure, including
/// E_FILENOTFOUND if the instance state does not exist and E_NOTFOUND if the
/// property is not defined.
STDMETHOD(GetInstallationPath)(_Out_ BSTR *pbstrInstallationPath) = 0;
///
/// Gets the version of the product installed in this instance.
///
/// The version of the product
/// installed in this instance.
/// Standard HRESULT indicating success or failure, including
/// E_FILENOTFOUND if the instance state does not exist and E_NOTFOUND if the
/// property is not defined.
STDMETHOD(GetInstallationVersion)(_Out_ BSTR *pbstrInstallationVersion) = 0;
///
/// Gets the display name (title) of the product installed in this instance.
///
/// The LCID for the display name.
/// The display name (title) of the product
/// installed in this instance.
/// Standard HRESULT indicating success or failure, including
/// E_FILENOTFOUND if the instance state does not exist and E_NOTFOUND if the
/// property is not defined.
STDMETHOD(GetDisplayName)(_In_ LCID lcid, _Out_ BSTR *pbstrDisplayName) = 0;
///
/// Gets the description of the product installed in this instance.
///
/// The LCID for the description.
/// The description of the product installed in
/// this instance.
/// Standard HRESULT indicating success or failure, including
/// E_FILENOTFOUND if the instance state does not exist and E_NOTFOUND if the
/// property is not defined.
STDMETHOD(GetDescription)(_In_ LCID lcid, _Out_ BSTR *pbstrDescription) = 0;
///
/// Resolves the optional relative path to the root path of the instance.
///
/// A relative path within the instance to
/// resolve, or NULL to get the root path.
/// The full path to the optional relative
/// path within the instance. If the relative path is NULL, the root path will
/// always terminate in a backslash.
/// Standard HRESULT indicating success or failure, including
/// E_FILENOTFOUND if the instance state does not exist and E_NOTFOUND if the
/// property is not defined.
STDMETHOD(ResolvePath)
(_In_opt_z_ LPCOLESTR pwszRelativePath, _Out_ BSTR *pbstrAbsolutePath) = 0;
};
#endif
EXTERN_C const IID IID_ISetupInstance2;
#if defined(__cplusplus) && !defined(CINTERFACE)
///
/// Information about an instance of a product.
///
struct DECLSPEC_UUID("89143C9A-05AF-49B0-B717-72E218A2185C")
DECLSPEC_NOVTABLE ISetupInstance2 : public ISetupInstance {
///
/// Gets the state of the instance.
///
/// The state of the instance.
/// Standard HRESULT indicating success or failure, including
/// E_FILENOTFOUND if the instance state does not exist.
STDMETHOD(GetState)(_Out_ InstanceState *pState) = 0;
///
/// Gets an array of package references registered to the instance.
///
/// Pointer to an array of .
/// Standard HRESULT indicating success or failure, including
/// E_FILENOTFOUND if the instance state does not exist and E_NOTFOUND if the
/// packages property is not defined.
STDMETHOD(GetPackages)(_Out_ LPSAFEARRAY *ppsaPackages) = 0;
///
/// Gets a pointer to the that represents
/// the registered product.
///
/// Pointer to an instance of . This may be NULL if does not return .
/// Standard HRESULT indicating success or failure, including
/// E_FILENOTFOUND if the instance state does not exist and E_NOTFOUND if the
/// packages property is not defined.
STDMETHOD(GetProduct)
(_Outptr_result_maybenull_ ISetupPackageReference **ppPackage) = 0;
///
/// Gets the relative path to the product application, if available.
///
/// The relative path to the product
/// application, if available.
/// Standard HRESULT indicating success or failure, including
/// E_FILENOTFOUND if the instance state does not exist.
STDMETHOD(GetProductPath)
(_Outptr_result_maybenull_ BSTR *pbstrProductPath) = 0;
};
#endif
EXTERN_C const IID IID_IEnumSetupInstances;
#if defined(__cplusplus) && !defined(CINTERFACE)
///
/// A enumerator of installed objects.
///
struct DECLSPEC_UUID("6380BCFF-41D3-4B2E-8B2E-BF8A6810C848")
DECLSPEC_NOVTABLE IEnumSetupInstances : public IUnknown {
///
/// Retrieves the next set of product instances in the enumeration sequence.
///
/// The number of product instances to retrieve.
/// A pointer to an array of .
/// A pointer to the number of product instances
/// retrieved. If celt is 1 this parameter may be NULL.
/// S_OK if the number of elements were fetched, S_FALSE if nothing
/// was fetched (at end of enumeration), E_INVALIDARG if celt is greater than
/// 1 and pceltFetched is NULL, or E_OUTOFMEMORY if an could not be allocated.
STDMETHOD(Next)
(_In_ ULONG celt, _Out_writes_to_(celt, *pceltFetched) ISetupInstance **rgelt,
_Out_opt_ _Deref_out_range_(0, celt) ULONG *pceltFetched) = 0;
///
/// Skips the next set of product instances in the enumeration sequence.
///
/// The number of product instances to skip.
/// S_OK if the number of elements could be skipped; otherwise,
/// S_FALSE;
STDMETHOD(Skip)(_In_ ULONG celt) = 0;
///
/// Resets the enumeration sequence to the beginning.
///
/// Always returns S_OK;
STDMETHOD(Reset)(void) = 0;
///
/// Creates a new enumeration object in the same state as the current
/// enumeration object: the new object points to the same place in the
/// enumeration sequence.
///
/// A pointer to a pointer to a new interface. If the method fails, this
/// parameter is undefined.
/// S_OK if a clone was returned; otherwise, E_OUTOFMEMORY.
STDMETHOD(Clone)(_Deref_out_opt_ IEnumSetupInstances **ppenum) = 0;
};
#endif
EXTERN_C const IID IID_ISetupConfiguration;
#if defined(__cplusplus) && !defined(CINTERFACE)
///
/// Gets information about product instances set up on the machine.
///
struct DECLSPEC_UUID("42843719-DB4C-46C2-8E7C-64F1816EFD5B")
DECLSPEC_NOVTABLE ISetupConfiguration : public IUnknown {
///
/// Enumerates all completed product instances installed.
///
/// An enumeration of completed, installed
/// product instances.
/// Standard HRESULT indicating success or failure.
STDMETHOD(EnumInstances)(_Out_ IEnumSetupInstances **ppEnumInstances) = 0;
///
/// Gets the instance for the current process path.
///
/// The instance for the current process
/// path.
/// The instance for the current process path, or E_NOTFOUND if not
/// found.
STDMETHOD(GetInstanceForCurrentProcess)
(_Out_ ISetupInstance **ppInstance) = 0;
///
/// Gets the instance for the given path.
///
/// The instance for the given path.
/// The instance for the given path, or E_NOTFOUND if not
/// found.
STDMETHOD(GetInstanceForPath)
(_In_z_ LPCWSTR wzPath, _Out_ ISetupInstance **ppInstance) = 0;
};
#endif
EXTERN_C const IID IID_ISetupConfiguration2;
#if defined(__cplusplus) && !defined(CINTERFACE)
///
/// Gets information about product instances.
///
struct DECLSPEC_UUID("26AAB78C-4A60-49D6-AF3B-3C35BC93365D")
DECLSPEC_NOVTABLE ISetupConfiguration2 : public ISetupConfiguration {
///
/// Enumerates all product instances.
///
/// An enumeration of all product
/// instances.
/// Standard HRESULT indicating success or failure.
STDMETHOD(EnumAllInstances)(_Out_ IEnumSetupInstances **ppEnumInstances) = 0;
};
#endif
EXTERN_C const IID IID_ISetupPackageReference;
#if defined(__cplusplus) && !defined(CINTERFACE)
///
/// A reference to a package.
///
struct DECLSPEC_UUID("da8d8a16-b2b6-4487-a2f1-594ccccd6bf5")
DECLSPEC_NOVTABLE ISetupPackageReference : public IUnknown {
///
/// Gets the general package identifier.
///
/// The general package identifier.
/// Standard HRESULT indicating success or failure.
STDMETHOD(GetId)(_Out_ BSTR *pbstrId) = 0;
///
/// Gets the version of the package.
///
/// The version of the package.
/// Standard HRESULT indicating success or failure.
STDMETHOD(GetVersion)(_Out_ BSTR *pbstrVersion) = 0;
///
/// Gets the target process architecture of the package.
///
/// The target process architecture of the
/// package.
/// Standard HRESULT indicating success or failure.
STDMETHOD(GetChip)(_Out_ BSTR *pbstrChip) = 0;
///
/// Gets the language and optional region identifier.
///
/// The language and optional region
/// identifier.
/// Standard HRESULT indicating success or failure.
STDMETHOD(GetLanguage)(_Out_ BSTR *pbstrLanguage) = 0;
///
/// Gets the build branch of the package.
///
/// The build branch of the package.
/// Standard HRESULT indicating success or failure.
STDMETHOD(GetBranch)(_Out_ BSTR *pbstrBranch) = 0;
///
/// Gets the type of the package.
///
/// The type of the package.
/// Standard HRESULT indicating success or failure.
STDMETHOD(GetType)(_Out_ BSTR *pbstrType) = 0;
///
/// Gets the unique identifier consisting of all defined tokens.
///
/// The unique identifier consisting of all
/// defined tokens.
/// Standard HRESULT indicating success or failure, including
/// E_UNEXPECTED if no Id was defined (required).
STDMETHOD(GetUniqueId)(_Out_ BSTR *pbstrUniqueId) = 0;
};
#endif
EXTERN_C const IID IID_ISetupHelper;
#if defined(__cplusplus) && !defined(CINTERFACE)
///
/// Helper functions.
///
///
/// You can query for this interface from the
/// class.
///
struct DECLSPEC_UUID("42b21b78-6192-463e-87bf-d577838f1d5c")
DECLSPEC_NOVTABLE ISetupHelper : public IUnknown {
///
/// Parses a dotted quad version string into a 64-bit unsigned integer.
///
/// The dotted quad version string to parse, e.g.
/// 1.2.3.4.
/// A 64-bit unsigned integer representing the
/// version. You can compare this to other versions.
/// Standard HRESULT indicating success or failure.
STDMETHOD(ParseVersion)
(_In_ LPCOLESTR pwszVersion, _Out_ PULONGLONG pullVersion) = 0;
///
/// Parses a dotted quad version string into a 64-bit unsigned integer.
///
/// The string containing 1 or 2 dotted quad
/// version strings to parse, e.g. [1.0,) that means 1.0.0.0 or newer.
/// A 64-bit unsigned integer representing the
/// minimum version, which may be 0. You can compare this to other
/// versions.
/// A 64-bit unsigned integer representing the
/// maximum version, which may be MAXULONGLONG. You can compare this to other
/// versions.
/// Standard HRESULT indicating success or failure.
STDMETHOD(ParseVersionRange)
(_In_ LPCOLESTR pwszVersionRange, _Out_ PULONGLONG pullMinVersion,
_Out_ PULONGLONG pullMaxVersion) = 0;
};
#endif
// Class declarations
//
EXTERN_C const CLSID CLSID_SetupConfiguration;
#ifdef __cplusplus
///
/// This class implements , , and .
///
class DECLSPEC_UUID("177F0C4A-1CD3-4DE7-A32C-71DBBB9FA36D") SetupConfiguration;
#endif
// Function declarations
//
///
/// Gets an that provides information about
/// product instances installed on the machine.
///
/// The that
/// provides information about product instances installed on the
/// machine.
/// Reserved for future use.
/// Standard HRESULT indicating success or failure.
STDMETHODIMP GetSetupConfiguration(_Out_ ISetupConfiguration **ppConfiguration,
_Reserved_ LPVOID pReserved);
#ifdef __cplusplus
}
#endif