/native/external/espeak/platforms/windows/windows_sapi/ttsengver.h
C++ Header | 78 lines | 36 code | 13 blank | 29 comment | 0 complexity | 218a29d21f07f61651f2dbbd7e08626b MD5 | raw file
1/**************************************************************************** 2 * * 3 * VERSION.H -- Version information for internal builds * 4 * * 5 * This file is only modified by the official builder to update the * 6 * VERSION, VER_PRODUCTVERSION and VER_PRODUCTVERSION_STR values * 7 * * 8 * version.h is created on the fly from verhead.bat and vertail.h, * 9 * with the current version numbers inserted in between * 10 * * 11 ****************************************************************************/ 12 13#ifndef VER_H 14/* ver.h defines constants needed by the VS_VERSION_INFO structure */ 15//#include <winver.h> 16#endif 17#include <windows.h> 18#define VER_FILETYPE VFT_APP 19#define VER_FILESUBTYPE VFT2_UNKNOWN 20#define VER_FILEDESCRIPTION_STR "TTS SAMPLE ENGINE 5" 21#define VER_INTERNALNAME_STR "TTSSAMPLEENG5" 22 23/*--------------------------------------------------------------*/ 24/* the following entry should be phased out in favor of */ 25/* VER_PRODUCTVERSION_STR, but is used in the shell today. */ 26/*--------------------------------------------------------------*/ 27 28 29/*--------------------------------------------------------------*/ 30/* the following values should be modified by the official */ 31/* builder for each build */ 32/*--------------------------------------------------------------*/ 33 34#define VERSION "5.0" 35#define VER_FILEVERSION_STR "5.0" 36#define VER_FILEVERSION 5,0 37#define VER_PRODUCTVERSION_STR "5.0" 38#define VER_PRODUCTVERSION 5,0 39 40#define OFFICIAL 1 41#define FINAL 1 42 43/*--------------------------------------------------------------*/ 44/* the following section defines values used in the version */ 45/* data structure for all files, and which do not change. */ 46/*--------------------------------------------------------------*/ 47 48/* default is nodebug */ 49#if _DEBUG 50#define VER_DEBUG VS_FF_DEBUG 51#else 52#define VER_DEBUG 0 53#endif 54 55/* default is privatebuild */ 56#ifndef OFFICIAL 57#define VER_PRIVATEBUILD VS_FF_PRIVATEBUILD 58#else 59#define VER_PRIVATEBUILD 0 60#endif 61 62/* default is prerelease */ 63#ifndef FINAL 64#define VER_PRERELEASE VS_FF_PRERELEASE 65#else 66#define VER_PRERELEASE 0 67#endif 68 69#define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK 70#define VER_FILEOS VOS_DOS_WINDOWS32 71#define VER_FILEFLAGS (VER_PRIVATEBUILD|VER_PRERELEASE|VER_DEBUG) 72 73#define VER_COMPANYNAME_STR "Microsoft Corporation\0" 74#define VER_PRODUCTNAME_STR "Microsoft\256 Windows(TM) Operating System\0" 75#define VER_LEGALTRADEMARKS_STR \ 76"Microsoft\256 is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation.\0" 77 78//#include "\sapi5\build\common.ver"