📄 xsupconfig_parse_connections.c
字号:
/**
*
* Licensed under a dual GPL/BSD license. (See LICENSE file for more info.)
*
* \file xsupconfig_parse_connections.c
*
* \author chris@open1x.org
*
* $Id: xsupconfig_parse_connections.c,v 1.1.2.5 2007/03/19 01:34:25 chessing Exp $
* $Date: 2007/03/19 01:34:25 $
**/
#include <stdio.h>
#ifndef WINDOWS
#include <stdint.h>
#endif
#include <libxml/parser.h>
#include <libxml/tree.h>
#include <string.h>
#include "xsupconfig_structs.h"
#include "../../src/xsup_common.h"
#include "xsupconfig.h"
#include "xsupconfig_vars.h"
#include "xsupconfig_parse.h"
#include "xsupconfig_parse_connections.h"
#include "xsupconfig_parse_connection.h"
#include "xsupconfig_common.h"
#include "xsupconfig.h"
void *xsupconfig_parse_connections(void **attr, xmlNodePtr node)
{
#ifdef PARSE_DEBUG
printf("Parsing connections..\n");
#endif
conf_connections = NULL;
return NULL;
}
parser connections[] = {
{"Connection", (struct conf_parse_struct *)&connection, TRUE,
xsupconfig_parse_connection},
{NULL, NULL, FALSE, NULL}};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -