00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef IPutFrame_h
00011 #define IPutFrame_h
00012
00013
00014
00015
00016 struct IPutFrameController : public IUnknown
00017 {
00018 virtual HRESULT __stdcall FillNextData(BYTE *data) = 0;
00019 virtual HRESULT __stdcall GetDataSizes(int *width, int *height) = 0;
00020 };
00021
00022 struct IPutFrame : public IUnknown
00023 {
00024 virtual HRESULT __stdcall SetController(IPutFrameController* ctl) = 0;
00025 };
00026
00027
00028 #endif // IGetFrame_h