Inherits IDispatch.
The hardware configuration contains devices.
Just one hardware configuration can be active The active configuration is used to detected the adapters to be used Use CanEasyApplication.SelectHardware for a more easy hardware setup.
interface IHardwareConfiguration : IDispatch
{
HRESULT
Name([out, retval] BSTR *sName);
HRESULT
Name([in] BSTR sName);
HRESULT
Active([out, retval] VARIANT_BOOL *pActive);
HRESULT
Active([in] VARIANT_BOOL boActive);
HRESULT
AddDevice([in] BSTR sVendor, [in] BSTR sDevice, [in] BSTR sDeviceId, [out, retval] IDevice**);
HRESULT
DeleteDevice([in] BSTR sVendor, [in] BSTR sDevice, [in] BSTR sDeviceId);
HRESULT
Export([in] BSTR sFile);
HRESULT
Devices([out, retval] IDeviceCol**);
};
Definition at line 8885 of file cand_tlb.idl.