mirror of
https://github.com/postgres/postgres.git
synced 2026-02-13 07:43:11 -05:00
24 lines
560 B
C
24 lines
560 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* version.h--
|
|
* this file contains the interface to version.c.
|
|
* Also some parameters.
|
|
*
|
|
* $Id: version.h,v 1.4 1997/09/08 02:33:57 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef VERSION_H
|
|
#define VERSION_H
|
|
|
|
void
|
|
ValidatePgVersion(const char *path, char **reason_p);
|
|
|
|
void
|
|
SetPgVersion(const char *path, char **reason_p);
|
|
|
|
#define PG_RELEASE 6
|
|
#define PG_VERSION 1
|
|
#define PG_VERFILE "PG_VERSION"
|
|
|
|
#endif
|