25 lines
560 B
C
25 lines
560 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* version.h--
|
|
* this file contains the interface to version.c.
|
|
* Also some parameters.
|
|
*
|
|
* $Id: version.h,v 1.8 1998/04/26 04:08:29 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 4
|
|
#define PG_VERFILE "PG_VERSION"
|
|
|
|
#endif
|