这个程序是一个Win32程序
源代码在线查看: msgbox.cpp
//
// 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);
}