Goes with the recently added src/utils/version.c, will replace some stuff in

miscadmin.h.
This commit is contained in:
Bryan Henderson 1996-11-11 14:24:38 +00:00
parent a157098f7c
commit b0961b3974
1 changed files with 24 additions and 0 deletions

24
src/include/version.h Normal file
View File

@ -0,0 +1,24 @@
/*-------------------------------------------------------------------------
*
* version.h--
* this file contains the interface to version.c.
* Also some parameters.
*
* $Id: version.h,v 1.1 1996/11/11 14:24:38 bryanh 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 0
#define PG_VERFILE "PG_VERSION"
#endif