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

📄 inifile.h

📁 用来在局域网中发送消息,包装了"Net send"。可以进行消息轰炸^_^。 可供参考的东西是界面实现的部分
💻 H
字号:
// IniFile.h: interface for the CIniFile class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_INIFILE_H__B248B7D1_AF92_4C5E_B6E2_177EB74EB2BE__INCLUDED_)
#define AFX_INIFILE_H__B248B7D1_AF92_4C5E_B6E2_177EB74EB2BE__INCLUDED_

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

#include <Afxtempl.h>

// used to operate the .INI file
class CIniFile  
{
public:
	BOOL Exist(CString name);
	void ClearList();
	void AddToList(CString usrname);
	BOOL WriteIniFile();
	BOOL ReadIniFile();
	//void SetPath(CString newpath);
	CIniFile(CString path);
	CIniFile( );
	virtual ~CIniFile();

	CArray<CString, CString> m_namelist;
	CString m_strSender;

protected:
	CString m_strPath;
};

#endif // !defined(AFX_INIFILE_H__B248B7D1_AF92_4C5E_B6E2_177EB74EB2BE__INCLUDED_)

⌨️ 快捷键说明

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