28 lines
675 B
C
28 lines
675 B
C
/*
|
|
* OSCam WebIf Wiki data - AUTO GENERATED, DO NOT EDIT!
|
|
* Generated by wiki_gen from wiki markdown files
|
|
*/
|
|
#ifndef WEBIF_PAGES_WIKI_H_
|
|
#define WEBIF_PAGES_WIKI_H_
|
|
|
|
#ifdef WEBIF_WIKI
|
|
|
|
struct wiki_entry {
|
|
const char *param;
|
|
const char *config;
|
|
const char *section;
|
|
const char *text;
|
|
int8_t status;
|
|
};
|
|
|
|
int32_t wiki_count(void);
|
|
const struct wiki_entry *wiki_get_entries(void);
|
|
const char *wiki_get_help(const char *config, const char *section, const char *param);
|
|
int8_t wiki_get_status(const char *config, const char *section, const char *param);
|
|
void webif_wiki_prepare(void);
|
|
void webif_wiki_free(void);
|
|
|
|
#endif /* WEBIF_WIKI */
|
|
|
|
#endif /* WEBIF_PAGES_WIKI_H_ */
|