Stop

Messages

FPCM_STOP

Structures

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

Description

Calls Stop.

Example

void InvokeStop(HWND hwndFlashPlayerControl)
{
    SFPCStop info;
 
    ::SendMessage(hwndFlashPlayerControl, FPCM_STOP, 0, (LPARAM)&info);
 
    if FAILED(info.hr)
        // Error
    {
        // ...
    }
    else
        // OK
    {
        // ...
    }
}