home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool.zip / OOL / samples / sample8 / client.h < prev    next >
Text File  |  1996-08-21  |  606b  |  34 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. #include "resource.h"
  13.  
  14. class MyDDE;
  15.  
  16. class MyAppWindow: public XFrameWindow
  17. {
  18.    public:
  19.       MyAppWindow( XApplication * app, XResource *);
  20.       ~MyAppWindow();
  21.    private:
  22.       MyDDE * dde;
  23. };
  24.  
  25.  
  26. class MyApp: public XApplication
  27. {
  28.    private:
  29.       MyAppWindow * window;
  30.    public:
  31.       MyApp();
  32. };
  33.  
  34.