#include "windows.h"
#include "message.h"
#include "wbodbc.rc"
/*--------------------------------------------------------------*/
/* ODBCVER.RC */
/* NT resource -- replaces MSVC-generated script */
/*--------------------------------------------------------------*/
#include <winver.h>
/*--------------------------------------------------------------*/
/* the following values should be modified by the official */
/* builder for each build */
/*--------------------------------------------------------------*/
#ifndef VER_PRODUCTVERSION
#define VER_PRODUCTVERSION_STR "6.0.0000\0"
#define VER_PRODUCTVERSION 6,00,0,0000
#endif
/*-----------------------------------------------*/
/* the following lines are specific to this file */
/*-----------------------------------------------*/
#define VER_FILEVERSION 6,00,0,0000
#define VER_FILEVERSION_STR "6.0.0000\0"
/* default is nodebug */
#ifndef DEBUG
#define VER_DEBUG 0
#else
#define VER_DEBUG VS_FF_DEBUG
#endif
/* default is privatebuild */
#ifndef OFFICIAL
#define VER_PRIVATEBUILD VS_FF_PRIVATEBUILD
#else
#define VER_PRIVATEBUILD 0
#endif
/* default is prerelease */
#ifndef FINAL
#define VER_PRERELEASE VS_FF_PRERELEASE
#else
#define VER_PRERELEASE 0
#endif
#define VER_FILEOS VOS__WINDOWS32
#define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
#define VER_FILEFLAGS (VER_PRIVATEBUILD|VER_PRERELEASE|VER_DEBUG)
#define VER_LEGALTRADEMARKS1_STR "Microsoft\256 is a registered trademark of Microsoft Corporation.\0"
#define VER_LEGALTRADEMARKS2_STR "Windows\231 is a trademark of Microsoft Corporation.\0"
#define VER_FILETYPE VFT_DLL
#define VER_FILESUBTYPE VFT_UNKNOWN
VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_FILEVERSION
PRODUCTVERSION VER_PRODUCTVERSION
FILEFLAGSMASK VER_FILEFLAGSMASK
FILEFLAGS VER_FILEFLAGS
FILEOS VER_FILEOS
FILETYPE VER_FILETYPE
FILESUBTYPE VER_FILESUBTYPE
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "Comments", "Word Basic ODBC\0"
VALUE "CompanyName", "Microsoft Corp.\0"
VALUE "FileDescription", "WBODBC.DLL\0"
VALUE "FileVersion", VER_FILEVERSION_STR
VALUE "InternalName", "WBODBC.DLL\0"
VALUE "LegalCopyright", "Copyright \251 1994\0"
VALUE "LegalTrademarks1", VER_LEGALTRADEMARKS1_STR
VALUE "LegalTrademarks2", VER_LEGALTRADEMARKS2_STR
VALUE "OriginalFilename", "wbodbc.dll\0"
VALUE "ProductName", "WBODBC\0"
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
END
END
BLOCK "VarFileInfo"
BEGIN
/* The following line should only be modified for localized versions. */
/* It consists of any number of WORD,WORD pairs, with each pair */
/* describing a language,codepage combination supported by the file. */
/* */
/* For example, a file might have values "0x409,1252" indicating that it */
/* supports English language (0x409) in the Windows ANSI codepage (1252). */
VALUE "Translation", 0x409, 1252
END
END