diff options
Diffstat (limited to 'src/include/archive/shell_archive.h')
-rw-r--r-- | src/include/archive/shell_archive.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/include/archive/shell_archive.h b/src/include/archive/shell_archive.h new file mode 100644 index 00000000000..9de6f769f12 --- /dev/null +++ b/src/include/archive/shell_archive.h @@ -0,0 +1,24 @@ +/*------------------------------------------------------------------------- + * + * shell_archive.h + * Exports for archiving via shell. + * + * Copyright (c) 2022-2023, PostgreSQL Global Development Group + * + * src/include/archive/shell_archive.h + * + *------------------------------------------------------------------------- + */ +#ifndef _SHELL_ARCHIVE_H +#define _SHELL_ARCHIVE_H + +#include "archive/archive_module.h" + +/* + * Since the logic for archiving via a shell command is in the core server + * and does not need to be loaded via a shared library, it has a special + * initialization function. + */ +extern const ArchiveModuleCallbacks *shell_archive_init(void); + +#endif /* _SHELL_ARCHIVE_H */ |