/native/external/espeak/platforms/windows/windows_sapi/ttsengver.h

http://eyes-free.googlecode.com/ · 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. #ifndef VER_H
  13. /* ver.h defines constants needed by the VS_VERSION_INFO structure */
  14. //#include <winver.h>
  15. #endif
  16. #include <windows.h>
  17. #define VER_FILETYPE VFT_APP
  18. #define VER_FILESUBTYPE VFT2_UNKNOWN
  19. #define VER_FILEDESCRIPTION_STR "TTS SAMPLE ENGINE 5"
  20. #define VER_INTERNALNAME_STR "TTSSAMPLEENG5"
  21. /*--------------------------------------------------------------*/
  22. /* the following entry should be phased out in favor of */
  23. /* VER_PRODUCTVERSION_STR, but is used in the shell today. */
  24. /*--------------------------------------------------------------*/
  25. /*--------------------------------------------------------------*/
  26. /* the following values should be modified by the official */
  27. /* builder for each build */
  28. /*--------------------------------------------------------------*/
  29. #define VERSION "5.0"
  30. #define VER_FILEVERSION_STR "5.0"
  31. #define VER_FILEVERSION 5,0
  32. #define VER_PRODUCTVERSION_STR "5.0"
  33. #define VER_PRODUCTVERSION 5,0
  34. #define OFFICIAL 1
  35. #define FINAL 1
  36. /*--------------------------------------------------------------*/
  37. /* the following section defines values used in the version */
  38. /* data structure for all files, and which do not change. */
  39. /*--------------------------------------------------------------*/
  40. /* default is nodebug */
  41. #if _DEBUG
  42. #define VER_DEBUG VS_FF_DEBUG
  43. #else
  44. #define VER_DEBUG 0
  45. #endif
  46. /* default is privatebuild */
  47. #ifndef OFFICIAL
  48. #define VER_PRIVATEBUILD VS_FF_PRIVATEBUILD
  49. #else
  50. #define VER_PRIVATEBUILD 0
  51. #endif
  52. /* default is prerelease */
  53. #ifndef FINAL
  54. #define VER_PRERELEASE VS_FF_PRERELEASE
  55. #else
  56. #define VER_PRERELEASE 0
  57. #endif
  58. #define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
  59. #define VER_FILEOS VOS_DOS_WINDOWS32
  60. #define VER_FILEFLAGS (VER_PRIVATEBUILD|VER_PRERELEASE|VER_DEBUG)
  61. #define VER_COMPANYNAME_STR "Microsoft Corporation\0"
  62. #define VER_PRODUCTNAME_STR "Microsoft\256 Windows(TM) Operating System\0"
  63. #define VER_LEGALTRADEMARKS_STR \
  64. "Microsoft\256 is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation.\0"
  65. //#include "\sapi5\build\common.ver"