home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool.zip / OOL / include / xvideo.h < prev    next >
Text File  |  1997-02-23  |  1KB  |  31 lines

  1. #ifndef __OOL_XVIDEO_H__
  2. #define __OOL_XVIDEO_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------- OS/2 Beta 1 */
  6. /*===========================================================================*/
  7. /*                              class: XVideo                                */
  8. /*                       derived from: XMediaWindow                          */
  9. /*                        last update: 2/97                                  */
  10. /*                      programmed by: Stefan von Brauk (sbrauk@gwdg.de)     */
  11. /*===========================================================================*/
  12.  
  13.  
  14. #include "xmedia.h"
  15.  
  16. class XFrameWindow;
  17.  
  18.  
  19. class _export_ XVideo: public XMediaWindow{
  20.    public:
  21.       XVideo( const XFrameWindow *);
  22.       virtual ~XVideo();
  23.       LONG CloseDevice( void );
  24.       LONG OpenDevice( void );
  25.       LONG Restore( void );
  26.       LONG SetViewPort( const XFrameWindow * w);
  27.       LONG SetVolume( const USHORT volumePercent);
  28. };
  29.  
  30. #endif
  31.