home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / spmio10.zip / gcc2 / stdwin / frame.h < prev    next >
C/C++ Source or Header  |  1994-06-04  |  427b  |  22 lines

  1. #ifndef include_frame_h
  2. #define include_frame_h
  3. #define INCL_PM
  4. #include <os2.h>
  5.  
  6. class StdFrame
  7. {
  8.   friend class StdFrameAux;
  9.   HWND frame;
  10.   enum FrameMode {
  11.     frame_mode_normal,
  12.     frame_mode_absolute_size
  13.   };
  14.   FrameMode frame_mode;
  15.   int is_attached;
  16.   
  17.   virtual MRESULT frame_message (HWND, unsigned, MPARAM, MPARAM);
  18.   virtual MRESULT default_frame_message ();
  19. };
  20.  
  21. #endif /* include_frame_h */
  22.