Back

Messages

FPCM_BACK

Structures

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

Description

Calls Back.

Example

void InvokeBack(HWND hwndFlashPlayerControl)
{
    SFPCBack info;
 
    ::SendMessage(hwndFlashPlayerControl, FPCM_BACK, 0, (LPARAM)&info);
 
    if FAILED(info.hr)
        // Error
    {
            // ...
    }
    else
        // OK
    {
 
        // ...
 
    }
}