home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool.zip / OOL / samples / sample4 / sample4.h < prev    next >
Text File  |  1996-10-23  |  636b  |  36 lines

  1. /* the nly function of sample3 it to play videofiles, and the only thing to learn */
  2. /* is how to use the multimedia-classes */
  3.  
  4. #include "xheaders.h"
  5.  
  6. #include XApplication_i
  7. #include XResourceLibrary_i
  8. #include XRect_i
  9. #include XResource_i
  10. #include XFrameWindow_i
  11.  
  12.  
  13. #include "resource.h"
  14.  
  15.  
  16. class MyAppWindow: public XFrameWindow
  17. {
  18.    public:
  19.       MyAppWindow( XApplication * app, XResource *);
  20.       ~MyAppWindow();
  21.       void Draw( void );
  22. };
  23.  
  24.  
  25. class MyApp: public XApplication
  26. {
  27.    private:
  28.       MyAppWindow * window;
  29.    public:
  30.       MyApp();
  31. };
  32.  
  33.  
  34. #define CONT_LEFT 300
  35. #define CONT_RIGHT 301
  36.