mirror of
https://github.com/postgres/postgres.git
synced 2026-02-22 17:31:00 -05:00
loose ends and a glaring lack of documentation, but it basically works. Simon Riggs with some editorialization by Tom Lane.
26 lines
696 B
C
26 lines
696 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* pgarch.h
|
|
* Exports from postmaster/pgarch.c.
|
|
*
|
|
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/postmaster/pgarch.h,v 1.1 2004/07/19 02:47:16 tgl 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 */
|