MSGBOX.H
上传用户:wtrl82617
上传日期:2007-01-07
资源大小:187k
文件大小:1k
源码类别:

界面编程

开发平台:

DOS

  1. #ifndef __MSGBOX_H
  2. #define __MSGBOX_H
  3. #include "dialog.h"
  4. #include "tstatic.h"
  5. #define MB_OKCANCEL  0x01
  6. #define MB_RETRYCANCEL 0x02
  7. #define MB_OK  0x04
  8. #define MB_ERROR 0x08
  9. #define MB_WARING 0x10
  10. typedef class msgbox_class Tmsgbox;
  11. class msgbox_class :public Tdialog {
  12. public:
  13. Tstatic *  msg_tstatic;
  14. public:
  15. msgbox_class (char *title,char *msg_contents,int atype);
  16. /*   Usage::
  17. Result = MessageBox(GetFocus(),"Could not Create Timer", "GDIDemo", MB_RETRYCANCEL);
  18.   };
  19.   if (Result == IDCANCEL)  PostQuitMessage(0);
  20. */
  21. };
  22. #endif