home *** CD-ROM | disk | FTP | other *** search
- #ifndef include_frame_h
- #define include_frame_h
- #define INCL_PM
- #include <os2.h>
-
- class StdFrame
- {
- friend class StdFrameAux;
- HWND frame;
- enum FrameMode {
- frame_mode_normal,
- frame_mode_absolute_size
- };
- FrameMode frame_mode;
- int is_attached;
-
- virtual MRESULT frame_message (HWND, unsigned, MPARAM, MPARAM);
- virtual MRESULT default_frame_message ();
- };
-
- #endif /* include_frame_h */
-