?? 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 + -