📄 xmlprofile.h
字号:
// XMLProfile.h
// By Emilio Guijarro Cameros
#pragma once
#include <msxml.h>
#include <shlobj.h>
class CXMLProfile : public CObject
{
IXMLDOMDocument *pXMLDoc;
CString szFileName;
IXMLDOMNode *GetEntry(LPCTSTR lpszSection, LPCTSTR lpszEntry);
IXMLDOMNode *GetEntry4Write(LPCTSTR lpszSection, LPCTSTR lpszEntry);
IXMLDOMNode *GetSection(LPCTSTR lpszEntry);
public:
CXMLProfile();
virtual ~CXMLProfile();
bool WriteProfileInt(LPCTSTR lpszSection, LPCTSTR lpszEntry, int nValue);
bool WriteProfileString(LPCTSTR lpszSection, LPCTSTR lpszEntry, CString szDefault);
int GetProfileInt(LPCTSTR lpszSection, LPCTSTR lpszEntry, int nDefault);
CString GetProfileString(LPCTSTR lpszSection, LPCTSTR lpszEntry, CString szDefault);
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -