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