📄 iniconfig.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 + -