home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 038 / dho_9a.zip / NMDLOG.H < prev    next >
Text File  |  1994-10-12  |  714b  |  29 lines

  1. // Developer Helper Object Set, (C) 1994 Thomas E. Bednarz, Jr.
  2. //  All rights reserved
  3.  
  4.  
  5. #ifndef __NMDLOG_H__
  6. #define __NMDLOG_H__
  7.  
  8. #include"winbase.h"
  9.  
  10. class TNonModalDialog : public TWinBase
  11. {
  12.  
  13.    public:
  14.       TNonModalDialog(ULONG resource);
  15.       virtual ~TNonModalDialog();
  16.       virtual BOOL Init(HAB hab);
  17.       virtual const char *getClassName(void);
  18.       virtual BOOL MakeFrame(void);
  19.       virtual MRESULT doCommand(HWND hWnd, ULONG Message, MPARAM mParam1, MPARAM mParam2);
  20.  
  21.      MRESULT DlogProc(HWND hWnd, ULONG Message, MPARAM mParam1, MPARAM mParam2 );
  22.  
  23.      static MRESULT ClientDlogProc(HWND hWnd,ULONG iMessage,
  24.        MPARAM mParam1, MPARAM mParam2);
  25. };
  26.  
  27.  
  28. #endif
  29.