| title | IRunnableObjectImpl Class | Microsoft Docs | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ms.custom | ||||||||||||||
| ms.date | 11/04/2016 | |||||||||||||
| ms.reviewer | ||||||||||||||
| ms.suite | ||||||||||||||
| ms.technology |
|
|||||||||||||
| ms.tgt_pltfrm | ||||||||||||||
| ms.topic | reference | |||||||||||||
| f1_keywords |
|
|||||||||||||
| dev_langs |
|
|||||||||||||
| helpviewer_keywords |
|
|||||||||||||
| ms.assetid | 305c7c3b-889e-49dd-aca1-34379c1b9931 | |||||||||||||
| caps.latest.revision | 20 | |||||||||||||
| author | mikeblome | |||||||||||||
| ms.author | mblome | |||||||||||||
| manager | ghogen | |||||||||||||
| translation.priority.ht |
|
This class implements IUnknown and provides a default implementation of the IRunnableObject interface.
Important
This class and its members cannot be used in applications that execute in the Windows Runtime.
template<class T>
class IRunnableObjectImpl
T
Your class, derived from IRunnableObjectImpl.
| Name | Description |
|---|---|
| IRunnableObjectImpl::GetRunningClass | Returns the CLSID of the running control. The ATL implementation sets the CLSID to GUID_NULL and returns E_UNEXPECTED. |
| IRunnableObjectImpl::IsRunning | Determines if the control is running. The ATL implementation returns TRUE. |
| IRunnableObjectImpl::LockRunning | Locks the control into the running state. The ATL implementation returns S_OK. |
| IRunnableObjectImpl::Run | Forces the control to run. The ATL implementation returns S_OK. |
| IRunnableObjectImpl::SetContainedObject | Indicates that the control is embedded. The ATL implementation returns S_OK. |
The IRunnableObject interface enables a container to determine if a control is running, force it to run, or lock it into the running state. Class IRunnableObjectImpl provides a default implementation of this interface and implements IUnknown by sending information to the dump device in debug builds.
Related Articles ATL Tutorial, Creating an ATL Project
IRunnableObject
IRunnableObjectImpl
Header: atlctl.h
Returns the CLSID of the running control.
HRESULT GetRunningClass(LPCLSID lpClsid);
The ATL implementation sets * lpClsid to GUID_NULL and returns E_UNEXPECTED.
See IRunnableObject::GetRunningClass in the Windows SDK.
Determines if the control is running.
virtual BOOL IsRunning();
The ATL implementation returns TRUE.
See IRunnableObject::IsRunning in the Windows SDK.
Locks the control into the running state.
HRESULT LockRunning(BOOL fLock, BOOL fLastUnlockCloses);
The ATL implementation returns S_OK.
See IRunnableObject::LockRunning in the Windows SDK.
Forces the control to run.
HRESULT Run(LPBINDCTX lpbc);
The ATL implementation returns S_OK.
See IRunnableObject::Run in the Windows SDK.
Indicates that the control is embedded.
HRESULT SetContainedObject(BOOL fContained);
The ATL implementation returns S_OK.
See IRunnableObject::SetContainedObject in the Windows SDK.