home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool.zip / OOL / samples / sample8 / server.h < prev    next >
Text File  |  1996-08-21  |  653b  |  35 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.       void DoControl( XControlEvent * event);
  22.    private:
  23.       MyDDE * dde;
  24. };
  25.  
  26.  
  27. class MyApp: public XApplication
  28. {
  29.    private:
  30.       MyAppWindow * window;
  31.    public:
  32.       MyApp();
  33. };
  34.  
  35.