You are reading help file online using chmlib.com
|
ISpTTSEngineSite::GetSkipInfo retrieves the number and type of items to be skipped in the text stream.
HRESULT GetSkipInfo(
SPVSKIPTYPE *peType,
long *plNumItems
);
Value | Description |
---|---|
S_OK | Function completed successfully. |
E POINTER | One of the return addresses is invalid. |
This function should be called when a call to GetActions returns SPVES_SKIP. plNumItems can be positive, signifying a forward skip, or negative, signifying a backward skip, or zero, signifying a skip to the beginning of the current item.
After the engine has skipped as many items as possible, it must call ISpTTSEngineSite::CompleteSkip to inform SAPI of how many items were successfully skipped. If the engine was unable to skip the requested number of items, it should end its current Speak call immediately.
You are reading help file online using chmlib.com
|