这个程序是一个Win32程序

源代码在线查看: msgbox.cpp

软件大小: 69 K
上传用户: qingmei_changle
关键词: Win 程序 32
下载地址: 免注册下载 普通下载 VIP

相关代码

				//
				// MsgBox.cpp - cMsgBox implementation
				// Rev. 2
				//
				// by Razorfish (razorfish2k@bigfoot.com)
				// ------------------------------------------------------------------
				
				#define STRICT
				#pragma warning( disable : 4201 4514) 
				
				#include 
				#include "GenClass.h"
				
				cMsgBox::cMsgBox(TCHAR *ptcM, TCHAR *ptcT)
				{
					ptcMsg = ptcM;
					ptcTitle = ptcT;
					uiStyle = MB_OK | MB_ICONINFORMATION | MB_DEFBUTTON1;
				}
				
				cMsgBox::~cMsgBox()
				{
					// Class Destructor
				}
				
				int cMsgBox::setStyle(UINT uiS)
				{
					uiStyle = uiS;
					return 0;
				}
				
				int cMsgBox::show(void)
				{
					return MessageBox(NULL, ptcMsg, ptcTitle, uiStyle);
				}
							

相关资源