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

📄 iniconfig.h

📁 让传奇3服务端支持动态域名的插件。VS2005的工程。这个是DBSER的插件。要和LOGINSER插件一起使用。
💻 H
字号:
#pragma once
#include "Stdafx.h"

#define CfgIni_File					_T(".\\DBSvrConfig.ini")//设置文件路径
#define CfgIni_ServerKey_Main		_T("Server")//基本设置主键

//ini文件操作类
class INICONTROL
{
	public:
		INICONTROL();
		~INICONTROL();
		BOOL WriteStrToIni( LPTSTR Mainkey, LPTSTR KeyName, LPTSTR Str);
		BOOL GetStrFromIni( LPTSTR Mainkey, LPTSTR KeyName, LPTSTR Str);
		BOOL GetIntFromIni( LPTSTR Mainkey, LPTSTR KeyName, int int_Str);
	
	protected:
		LPTSTR IniFile_Patch;

};

⌨️ 快捷键说明

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