Commit e07112ba authored by Maarten Lankhorst's avatar Maarten Lankhorst Committed by Alexandre Julliard

include: Add IRunnableTask interface.

parent 3f4c41b9
......@@ -1296,6 +1296,22 @@ interface INewShortcutHookW : IUnknown
[in] int cchExtension);
}
/*****************************************************************************
* IRunnableTask interface
*/
[
object,
uuid(85788d00-6807-11d0-b810-00c04fd706ec),
pointer_default(unique)
]
interface IRunnableTask : IUnknown
{
HRESULT Run();
HRESULT Kill([in] BOOL fWait);
HRESULT Suspend();
HRESULT Resume();
ULONG IsRunning();
}
/*****************************************************************************
* IShellChangeNotify interface
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment