Home | History | Annotate | Download | only in include
      1 /**
      2  * This file has no copyright assigned and is placed in the Public Domain.
      3  * This file is part of the mingw-w64 runtime package.
      4  * No warranty is given; refer to the file DISCLAIMER.PD within this package.
      5  */
      6 #define VER_PRODUCTBUILD 3790
      7 #define VER_PRODUCTBUILD_QFE 1830
      8 
      9 #ifdef NASHVILLE
     10 #include <ieverp.h>
     11 #else
     12 
     13 #define VER_PRODUCTMAJORVERSION 5
     14 #define VER_PRODUCTMINORVERSION 2
     15 
     16 #define VER_PRODUCTVERSION_W (0x0502)
     17 #define VER_PRODUCTVERSION_DW (0x05020000 | VER_PRODUCTBUILD)
     18 
     19 #define VER_PRODUCTBETA_STR ""
     20 
     21 #define VER_PRODUCTVERSION_MAJORMINOR2(x,y) #x "." #y
     22 #define VER_PRODUCTVERSION_MAJORMINOR1(x,y) VER_PRODUCTVERSION_MAJORMINOR2(x,y)
     23 #define VER_PRODUCTVERSION_STRING VER_PRODUCTVERSION_MAJORMINOR1(VER_PRODUCTMAJORVERSION,VER_PRODUCTMINORVERSION)
     24 
     25 #define LVER_PRODUCTVERSION_MAJORMINOR2(x,y) L#x L"." L#y
     26 #define LVER_PRODUCTVERSION_MAJORMINOR1(x,y) LVER_PRODUCTVERSION_MAJORMINOR2(x,y)
     27 #define LVER_PRODUCTVERSION_STRING LVER_PRODUCTVERSION_MAJORMINOR1(VER_PRODUCTMAJORVERSION,VER_PRODUCTMINORVERSION)
     28 
     29 #define VER_PRODUCTVERSION VER_PRODUCTMAJORVERSION,VER_PRODUCTMINORVERSION,3790,VER_PRODUCTBUILD_QFE
     30 
     31 #define VER_DDK_PRODUCTVERSION 5,02
     32 #define VER_DDK_PRODUCTVERSION_STR "5.02"
     33 #endif
     34 
     35 #define VER_BPAD
     36 #define LVER_BPAD
     37 
     38 #define VER_PRODUCTVERSION_STR2(x,y) VER_PRODUCTVERSION_STRING "." VER_BPAD #x "." #y
     39 #define VER_PRODUCTVERSION_STR1(x,y) VER_PRODUCTVERSION_STR2(x,y)
     40 #define VER_PRODUCTVERSION_STR VER_PRODUCTVERSION_STR1(3790,VER_PRODUCTBUILD_QFE)
     41 
     42 #define LVER_PRODUCTVERSION_STR2(x,y) LVER_PRODUCTVERSION_STRING L"." LVER_BPAD L#x L"." L#y
     43 #define LVER_PRODUCTVERSION_STR1(x,y) LVER_PRODUCTVERSION_STR2(x,y)
     44 #define LVER_PRODUCTVERSION_STR LVER_PRODUCTVERSION_STR1(3790,VER_PRODUCTBUILD_QFE)
     45 
     46 #define VER_DEBUG 0
     47 #define VER_PRERELEASE 0
     48 
     49 #if OFFICIAL_BUILD
     50 #define VER_PRIVATE 0
     51 #else
     52 #define VER_PRIVATE VS_FF_PRIVATEBUILD
     53 #endif
     54 
     55 #define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
     56 #define VER_FILEOS VOS_NT_WINDOWS32
     57 #define VER_FILEFLAGS (VER_PRERELEASE|VER_DEBUG|VER_PRIVATE)
     58 
     59 #define VER_COMPANYNAME_STR "Microsoft Corporation"
     60 #ifdef RC_INVOKED
     61 #define VER_PRODUCTNAME_STR L"Microsoft\256 Windows\256 Operating System"
     62 #else
     63 #define VER_PRODUCTNAME_STR "Microsoft\256 Windows\256 Operating System"
     64 #endif
     65 #define VER_LEGALTRADEMARKS_STR "Microsoft\256 is a registered trademark of Microsoft Corporation. Windows\256 is a registered trademark of Microsoft Corporation."
     66