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

📄 configfile.h

📁 网络摄像头的webserver
💻 H
字号:
#ifndef _CONFIGFILE_H_#define _CONFIGFILE_H_#include <libxml/parser.h>#include "mod_handle.h"/* Created once on startup, then never modified and readonly */extern xmlDocPtr configdoc;/* The config file we've used to build the xml tree */extern char *ourconfig;/* Figures out which config file to use, and sets up the "ourconfig" pointer. Returns -1 on error */int config_init(char *);/* Opens "ourconfig" and builds the xml tree (configdoc) from it. Returns -1 on error */int config_load(void);/* Returns a newly allocated string with a leading "~/" replaced by the home dir */char *config_homedir(char *);#endif

⌨️ 快捷键说明

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