TPlay
Messages
FPCM_TPLAY
Structures
struct SFPCTPlay
{
// [in]
struct
{
LPCTSTR lpszBuffer;
} target;
// [out]
HRESULT hr;
};
Description
Calls TPlay.
Example
void InvokeTPlay(HWND hwndFlashPlayerControl, LPCTSTR target)
{
SFPCTPlay info;
info.target.lpszBuffer = target;
::SendMessage(hwndFlashPlayerControl, FPCM_TPLAY, 0, (LPARAM)&info);
if FAILED(info.hr)
// Error
{
// ...
}
else
// OK
{
// ...
}
}