|
IRunningObjectTable::IsRunning
Determines whether the object identified by the specified moniker is currently
running. This method looks for the moniker in the Running Object Table (ROT).
HRESULT IsRunning(
IMoniker *pmkObjectName
| //Moniker identifying the object whose status is desired
| );
|
|
Parameter
pmkObjectName
[in] Points to the moniker to search for in the Running Object Table.
Return Values
S_OK
Indicates that the object identified by pmkObjectName is running.
S_FALSE
Indicates that there is no entry for pmkObjectName in the ROT, or that the object it identifies is no longer running (in which
case, the entry is revoked).
Comments
This method simply indicates whether a object is running. To retrieve a
pointer to a running object, use the IRunningObjectTable::GetObject method.
Notes to Callers
Generally, you call the IRunningObjectTable::IsRunning method only if you are writing your own moniker class (that is, implementing
the IMoniker interface). You typically call this method from your implementation of IMoniker::IsRunning. However, you should do so only if the pmkToLeft parameter of IMoniker::IsRunning is NULL. Otherwise, you should call IMoniker::IsRunning on your pmkToLeft parameter instead.
See Also
IMoniker::IsRunning
Related LinksSoftware for Delphi and C++ Builder developers Software for Visual Studio .NET developers Software for Visual Basic 6 developers Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps Win32 Programmer's Reference (win32.hlp) Win32 Multimedia Programmer's Reference (mmedia.hlp) Microsoft Windows Pen API Programmer's Reference (penapi.hlp) Microsoft Windows Sockets 2 Reference (sock2.hlp) Microsoft Windows Telephony API (TAPI) Programmer's Reference (sock2.hlp) Unix Manual Pages
|