⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 notifymessage.h

📁 墨香最新私服
💻 H
字号:
// NotifyMessage.h: interface for the CNotifyMessage class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_NOTIFYMESSAGE_H__1EB931D9_505E_49F0_B75F_C50A905681DE__INCLUDED_)
#define AFX_NOTIFYMESSAGE_H__1EB931D9_505E_49F0_B75F_C50A905681DE__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CNotifyMessage  
{
protected:
	char		m_sMessage[1000][256];
	int			m_nMaxLine;
	int			m_nCurLine;

	BOOL		m_bRepeat;
	int			m_nRepeatNum;

public:
	CNotifyMessage();
	virtual ~CNotifyMessage();

	void	SetMessage( int index, char* message )	{ strcpy( m_sMessage[index], message ); }
	char*	GetMessage( int index )					{ return m_sMessage[index]; }
	char*	GetMessage();							
	int		GetMaxLine()							{ return m_nMaxLine; }
	
	BOOL	Open( char* filename );
	void	SetRepeatNum( int repeatnum );
	int		GetRepeatNum()							{ return m_nRepeatNum; }
	BOOL	IsRepeat()								{ return m_bRepeat; }
	void	Release();

};

#endif // !defined(AFX_NOTIFYMESSAGE_H__1EB931D9_505E_49F0_B75F_C50A905681DE__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -