17 lines
284 B
C
17 lines
284 B
C
#ifndef DEPLOYD_ADMIN_H_
|
|
#define DEPLOYD_ADMIN_H_
|
|
|
|
#include "conf.h"
|
|
|
|
#include "def.h"
|
|
#include "log.h"
|
|
|
|
#include <sqlite3.h>
|
|
|
|
#ifndef DP_ADMIN_MAX_ARGS
|
|
#define DP_ADMIN_MAX_ARGS 16
|
|
#endif /* DP_ADMIN_MAX_ARGS */
|
|
|
|
bool dp_admin_repl(sqlite3 *database);
|
|
|
|
#endif /* DEPLOYD_ADMIN_H_ */
|