IStatusCallback::Status method
A callback function used to notify the host of the engine's progress. This also serves as a way for the host to determine that the engine is still running.
Syntax
HRESULT Status(
DWORD dwMillisecondsElapsed,
DWORD dwFramesCaptured,
DWORD dwFramesElapsed
);
Parameters
dwMillisecondsElapsed
The time elapsed since the last call to Status, in milliseconds.
dwFramesCaptured
The number of frames that have been captures since the last call to Status.
dwFramesElapsed
The number of frames elapsed since the last call to Status.
Return value
If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
Requirements
Header | Vspixengine.h |
See also