You've already forked pgbackrest
mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2025-06-16 23:47:38 +02:00
26 lines
1.3 KiB
C
26 lines
1.3 KiB
C
/***********************************************************************************************************************************
|
|
PostgreSQL 9.1 Interface
|
|
***********************************************************************************************************************************/
|
|
#ifndef POSTGRES_INTERFACE_INTERFACE091_H
|
|
#define POSTGRES_INTERFACE_INTERFACE091_H
|
|
|
|
#include "postgres/interface.h"
|
|
|
|
/***********************************************************************************************************************************
|
|
Functions
|
|
***********************************************************************************************************************************/
|
|
bool pgInterfaceControlIs091(const Buffer *controlFile);
|
|
PgControl pgInterfaceControl091(const Buffer *controlFile);
|
|
bool pgInterfaceWalIs091(const Buffer *walFile);
|
|
PgWal pgInterfaceWal091(const Buffer *controlFile);
|
|
|
|
/***********************************************************************************************************************************
|
|
Test Functions
|
|
***********************************************************************************************************************************/
|
|
#ifdef DEBUG
|
|
void pgInterfaceControlTest091(PgControl pgControl, Buffer *buffer);
|
|
void pgInterfaceWalTest091(PgWal pgWal, Buffer *buffer);
|
|
#endif
|
|
|
|
#endif
|