struct IFlashLoadMovieImage { enum EFmt { eFmt_None, eFmt_RGB_888, eFmt_ARGB_8888 }; };
IFlashPlayer.h
Clients of IFlashPlayer implement this interface to handle custom loadMovie API calls.
enum EFmt { eFmt_None, eFmt_RGB_888, eFmt_ARGB_8888 };
IFlashPlayer.h
virtual ~IFlashLoadMovieImage();
virtual EFmt GetFormat() const = 0;
virtual int GetHeight() const = 0;
virtual int GetPitch() const = 0;
virtual void* GetPtr() const = 0;
virtual int GetWidth() const = 0;
bool IsValid() const;
virtual void Release() = 0;