|
OleIsRunning
Determines whether an object is currently in the running state.
BOOL OleIsRunning(
LPOLEOBJECT pObject
| //Pointer to IOleObject interface
| );
|
|
Parameter
pObject
Points to an the object's IOleObject interface.
Return Value
The return value is TRUE if the object is running; otherwise, it is FALSE.
Comments
You can use OleIsRunning and IRunnableObject::IsRunning interchangeably. OleIsRunning queries the object for a pointer to the IRunnableObject interface. If successful, the function returns the results of calling the IRunnableObject::IsRunning method.
Note The implementation of OleIsRunning in earlier versions of OLE differs from that described here.
For more information on using this function, see IRunnableObject::IsRunning.
See Also
IRunnableObject::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
|