blob: dd398fff9a0596134c05bc7e364a954d73cc585e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/* File: version.h
*
* Description: This file defines the driver version.
*
* Comments: See "readme.txt" for copyright and license information.
*
*/
#ifndef __VERSION_H__
#define __VERSION_H__
/*
* BuildAll may pass POSTGRESDRIVERVERSION, POSTGRES_RESOURCE_VERSION
* and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
*/
#ifndef POSTGRESDRIVERVERSION
#define POSTGRESDRIVERVERSION "17.00.0004"
#endif
#ifndef POSTGRES_RESOURCE_VERSION
#define POSTGRES_RESOURCE_VERSION POSTGRESDRIVERVERSION
#endif
#ifndef PG_DRVFILE_VERSION
#define PG_DRVFILE_VERSION 17,0,00,04
#endif
#endif
|