Mercurial > games > semicongine
comparison fuhtark_test/include/winapi/ntverp.h @ 1500:91c8c3b7cbf0
add: futhark tests for generating vulkan api
| author | sam <sam@basx.dev> |
|---|---|
| date | Wed, 26 Nov 2025 21:36:48 +0700 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 1499:1f58458b7ef7 | 1500:91c8c3b7cbf0 |
|---|---|
| 1 /** | |
| 2 * This file has no copyright assigned and is placed in the Public Domain. | |
| 3 * This file is part of the w64 mingw-runtime package. | |
| 4 * No warranty is given; refer to the file DISCLAIMER within this package. | |
| 5 */ | |
| 6 #define VER_PRODUCTBUILD 3790 | |
| 7 | |
| 8 #define VER_PRODUCTBUILD_QFE 1830 | |
| 9 | |
| 10 #ifdef NASHVILLE | |
| 11 #include <ieverp.h> | |
| 12 #else | |
| 13 | |
| 14 #define VER_PRODUCTMAJORVERSION 5 | |
| 15 #define VER_PRODUCTMINORVERSION 2 | |
| 16 | |
| 17 #define VER_PRODUCTBETA_STR "" | |
| 18 | |
| 19 #define VER_PRODUCTVERSION_MAJORMINOR2(x,y) #x "." #y | |
| 20 #define VER_PRODUCTVERSION_MAJORMINOR1(x,y) VER_PRODUCTVERSION_MAJORMINOR2(x,y) | |
| 21 #define VER_PRODUCTVERSION_STRING VER_PRODUCTVERSION_MAJORMINOR1(VER_PRODUCTMAJORVERSION,VER_PRODUCTMINORVERSION) | |
| 22 | |
| 23 #define LVER_PRODUCTVERSION_MAJORMINOR2(x,y) L#x L"." L#y | |
| 24 #define LVER_PRODUCTVERSION_MAJORMINOR1(x,y) LVER_PRODUCTVERSION_MAJORMINOR2(x,y) | |
| 25 #define LVER_PRODUCTVERSION_STRING LVER_PRODUCTVERSION_MAJORMINOR1(VER_PRODUCTMAJORVERSION,VER_PRODUCTMINORVERSION) | |
| 26 | |
| 27 #define VER_PRODUCTVERSION VER_PRODUCTMAJORVERSION,VER_PRODUCTMINORVERSION,3790,VER_PRODUCTBUILD_QFE | |
| 28 #define VER_PRODUCTVERSION_W (0x0502) | |
| 29 #define VER_PRODUCTVERSION_DW (0x05020000 | 3790) | |
| 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." |
