mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-19 04:46:59 +08:00
27 lines
700 B
C
27 lines
700 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* pgarch.h
|
|
* Exports from postmaster/pgarch.c.
|
|
*
|
|
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/postmaster/pgarch.h,v 1.4 2006/03/05 15:58:58 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef _PGARCH_H
|
|
#define _PGARCH_H
|
|
|
|
/* ----------
|
|
* Functions called from postmaster
|
|
* ----------
|
|
*/
|
|
extern int pgarch_start(void);
|
|
|
|
#ifdef EXEC_BACKEND
|
|
extern void PgArchiverMain(int argc, char *argv[]);
|
|
#endif
|
|
|
|
#endif /* _PGARCH_H */
|