StopPlay

Messages

FPCM_STOPPLAY

Structures

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

Description

Calls StopPlay.

Example

void InvokeStopPlay(HWND hwndFlashPlayerControl)
{
    SFPCStopPlay info;
 
    ::SendMessage(hwndFlashPlayerControl, FPCM_STOPPLAY, 0, (LPARAM)&info);
 
    if FAILED(info.hr)
        // Error
    {
        // ...
    }
    else
        // OK
    {
        // ...
    }
}