2018-09-25 10:24:42 +01:00
|
|
|
/***********************************************************************************************************************************
|
|
|
|
PostgreSQL 9.1 Interface
|
|
|
|
***********************************************************************************************************************************/
|
|
|
|
#ifndef POSTGRES_INTERFACE_INTERFACE091_H
|
|
|
|
#define POSTGRES_INTERFACE_INTERFACE091_H
|
|
|
|
|
|
|
|
#include "postgres/interface.h"
|
|
|
|
|
|
|
|
/***********************************************************************************************************************************
|
|
|
|
Functions
|
|
|
|
***********************************************************************************************************************************/
|
2019-03-18 22:10:25 +04:00
|
|
|
bool pgInterfaceControlIs091(const Buffer *controlFile);
|
2018-09-25 10:24:42 +01:00
|
|
|
PgControl pgInterfaceControl091(const Buffer *controlFile);
|
|
|
|
|
|
|
|
/***********************************************************************************************************************************
|
|
|
|
Test Functions
|
|
|
|
***********************************************************************************************************************************/
|
|
|
|
#ifdef DEBUG
|
|
|
|
void pgInterfaceControlTest091(PgControl pgControl, Buffer *buffer);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|