IDebugThread2:: resume

继续执行线程。

HRESULT Resume ( 
   DWORD *pdwSuspendCount
);
int Resume ( 
   out uint pdwSuspendCount
);

参数

  • pdwSuspendCount
    [out] 在继续操作之后返回挂起计数。

返回值

如果成功,则返回; S_OK否则,返回错误代码。

备注

每个调用此方法时挂起计数,直到其达到 0,此时,执行实际上还原。 这在 线程 挂起计数显示调试窗口。

对于每次调用此方法,必须了解以前的调用 IDebugThread2:: 挂起 方法。 挂起计数确定到目前为止多少次 IDebugThread2::Suspend 方法调用。

请参见

参考

IDebugThread2

IDebugThread2:: 挂起