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

📄 config.h

📁 语法检查程序
💻 H
字号:
/***************************************************************************/
/* NOTE:                                                                   */
/* This document is copyright (c) by Oz Solomonovich.  All non-commercial  */
/* use is allowed, as long as this document is not altered in any way, and */
/* due credit is given.                                                    */
/***************************************************************************/

// Config.h : header file
//

#ifndef __CONFIG_H__
#define __CONFIG_H__

#ifndef CFG_VAR
#define CFG_VAR(name, type, var, defval) extern type var;
#define CFG_STR(name, var, defval)       extern CString var;
#endif

void CfgSetRegSection(LPCTSTR pszSection);
void CfgGetRegSection(LPCTSTR *ppszSection);

void GetConfiguration();
void WriteConfiguration();

#endif // __CONFIG_H__

#include "CfgVars.h"

⌨️ 快捷键说明

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