You've already forked pgbackrest
mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2025-07-05 00:28:52 +02:00
Migrate generation of these files from help.xml to the intermediate documentation format. This allows us to share a lot of code that is already in C and remove duplicated code in Perl. More duplicate code can be removed in Perl once man generation is migrated. Also update the unit test harness to allow testing of modules in the doc directory.
21 lines
990 B
C
21 lines
990 B
C
/***********************************************************************************************************************************
|
|
Build Command and Configuration Reference
|
|
***********************************************************************************************************************************/
|
|
#ifndef DOC_COMMAND_BUILD_REFERENCE_H
|
|
#define DOC_COMMAND_BUILD_REFERENCE_H
|
|
|
|
#include "build/config/parse.h"
|
|
#include "build/help/parse.h"
|
|
#include "common/type/xml.h"
|
|
|
|
/***********************************************************************************************************************************
|
|
Functions
|
|
***********************************************************************************************************************************/
|
|
// Build command reference
|
|
XmlDocument *referenceCommandRender(const BldCfg *bldCfg, const BldHlp *bldHlp);
|
|
|
|
// Build configuration reference
|
|
XmlDocument *referenceConfigurationRender(const BldCfg *bldCfg, const BldHlp *bldHlp);
|
|
|
|
#endif
|