You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
873 B
C++
33 lines
873 B
C++
// MaintMsg.h: interface for the CMaintMsg class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_MAINTMSG_H__05EBA7B1_C09C_4C1C_9819_E176E2821808__INCLUDED_)
|
|
#define AFX_MAINTMSG_H__05EBA7B1_C09C_4C1C_9819_E176E2821808__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#ifdef BUILD_MCCTRDLL
|
|
#define MCCTRDLLCLASS __declspec(dllexport)
|
|
#else
|
|
#define MCCTRDLLCLASS __declspec(dllimport)
|
|
#endif
|
|
|
|
class MCCTRDLLCLASS CMaintMsg
|
|
{
|
|
public:
|
|
static CString GetMaintMsg();
|
|
static void ClearMaintMsg();
|
|
static bool IsMsgAvailable();
|
|
static void SetMaintMsg(CString csMsg);
|
|
CMaintMsg();
|
|
virtual ~CMaintMsg();
|
|
|
|
private:
|
|
static CString m_csMaintMsg;
|
|
};
|
|
|
|
#endif // !defined(AFX_MAINTMSG_H__05EBA7B1_C09C_4C1C_9819_E176E2821808__INCLUDED_)
|