d1e355de2c
59 files changed, 1691 insertions(+), 607 deletions(-) Adding the beginings of ObConf. Adding a resistance-config plugin for ObConf. Creating an obparser library that obrender can use, the kernel can use, plugins can use, and ObConf and its plugins can use. (its just code for using libXml2)
16 lines
368 B
C
16 lines
368 B
C
#ifndef __plugins_h
|
|
#define __plugins_h
|
|
|
|
#include <libxml/parser.h>
|
|
|
|
typedef struct ConfigPlugin ConfigPlugin;
|
|
|
|
extern GSList *plugins_list;
|
|
|
|
void plugins_load();
|
|
|
|
gboolean plugins_edited(ConfigPlugin *p);
|
|
void plugins_load_settings(ConfigPlugin *p, xmlDocPtr doc, xmlNodePtr root);
|
|
void plugins_save_settings(ConfigPlugin *p, xmlDocPtr doc, xmlNodePtr root);
|
|
|
|
#endif
|