Rewind

Messages

FPCM_REWIND

Structures

struct SFPCRewind
{
    // [out]
    HRESULT hr;
};

Description

Calls Rewind.

Example

void InvokeRewind(HWND hwndFlashPlayerControl)
{
    SFPCRewind info;
 
    ::SendMessage(hwndFlashPlayerControl, FPCM_REWIND, 0, (LPARAM)&info);
 
    if FAILED(info.hr)
        // Error
    {
        // ...
    }
    else
        // OK
    {
        // ...
    }
}