mirror of
https://github.com/postgres/postgres.git
synced 2026-02-16 00:57:52 -05:00
19 lines
499 B
C
19 lines
499 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* basebackup.h
|
|
* Exports from replication/basebackup.c.
|
|
*
|
|
* Portions Copyright (c) 2010-2011, PostgreSQL Global Development Group
|
|
*
|
|
* src/include/replication/walsender.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef _BASEBACKUP_H
|
|
#define _BASEBACKUP_H
|
|
|
|
#include "replication/replnodes.h"
|
|
|
|
extern void SendBaseBackup(BaseBackupCmd *cmd);
|
|
|
|
#endif /* _BASEBACKUP_H */
|