Horus Doc || C++ Reference || Class Overview   Pixels   Images   Detector   Geometry   Registry || Doxygen's quick Index  

IPutFrame.h

00001 
00002 /*
00003  *  Copyright (c) 2000, University of Amsterdam, The Netherlands.
00004  *  All rights reserved.
00005  *
00006  *  Author(s):
00007  *  Marc Navarro            (mnavarro@wins.uva.nl)
00008  */
00009 
00010 #ifndef IPutFrame_h
00011 #define IPutFrame_h
00012 
00013 
00014 // Take a look at basetyps.h to know how to define interfaces for C
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

Generated on Tue Feb 3 14:18:44 2004 for C++Reference by doxygen1.2.12 written by Dimitri van Heesch, © 1997-2001