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

📄 ini.h

📁 这是我仿照串口助手(龚建伟)作的一个例子并修正了其中的一些bug
💻 H
字号:
// Ini.h: interface for the CIni class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_INI_H__2F085719_1376_4BD1_809D_D1693D9119F8__INCLUDED_)
#define AFX_INI_H__2F085719_1376_4BD1_809D_D1693D9119F8__INCLUDED_

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

class CIni : public CObject  
{
public:
	CIni();
	virtual ~CIni();
	void SetFilePath(CString sPath);
	CString GetFilePath() const;
	BOOL WriteString( 
		  LPCTSTR lpAppName,  // pointer to section name
		  LPCTSTR lpKeyName,  // pointer to key name
		  LPCTSTR lpString,   // pointer to string to add
		  LPCTSTR lpFileName  );
	BOOL WriteString( 
		  LPCTSTR lpAppName,  // pointer to section name
		  LPCTSTR lpKeyName,  // pointer to key name
		  LPCTSTR lpString );
	
	DWORD GetString( 
			  LPCTSTR lpAppName,        // points to section name
			  LPCTSTR lpKeyName,        // points to key name
			  LPCTSTR lpDefault,        // points to default string
			  LPTSTR lpReturnedString,  // points to destination buffer
			  DWORD nSize,              // size of destination buffer
			  LPCTSTR lpFileName  );
	DWORD  GetString( 
			  LPCTSTR lpAppName,        // points to section name
			  LPCTSTR lpKeyName,        // points to key name
			  LPCTSTR lpDefault,        // points to default string
			  LPTSTR lpReturnedString,  // points to destination buffer
			  DWORD nSize         );
	UINT   GetInt(
				  LPCTSTR lpAppName,  // address of section name
				  LPCTSTR lpKeyName,  // address of key name
				  INT nDefault,       // return value if key name is not found
				  LPCTSTR lpFileName  // address of initialization filename
				);
	UINT   GetInt(
				  LPCTSTR lpAppName,  // address of section name
				  LPCTSTR lpKeyName,  // address of key name
				  INT nDefault);
private:

	CString m_sFilePath;
};

#endif // !defined(AFX_INI_H__2F085719_1376_4BD1_809D_D1693D9119F8__INCLUDED_)

⌨️ 快捷键说明

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