blob: c0c77a6371706b18a4af71b736e789d42999addd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* File: version.h
*
* Description: This file defines the driver version.
*
* Comments: See "notice.txt" for copyright and license information.
*
* Note: The version number should also be updated in :
* psqlobdc.rc, configure.ac and installer/make.bat
*/
#ifndef __VERSION_H__
#define __VERSION_H__
#define POSTGRESDRIVERVERSION "08.00.0103"
#define POSTGRES_RESOURCE_VERSION "08.00.0103\0"
#define PG_DRVFILE_VERSION 8,0,1,03
#endif
|