| 1 | // Licensed to the .NET Foundation under one or more agreements. |
| 2 | // The .NET Foundation licenses this file to you under the MIT license. |
| 3 | // See the LICENSE file in the project root for more information. |
| 4 | // |
| 5 | |
| 6 | // |
| 7 | // =========================================================================== |
| 8 | // File: winver.h |
| 9 | // |
| 10 | // =========================================================================== |
| 11 | // winver.h for PAL |
| 12 | // Included in .rc files. |
| 13 | |
| 14 | #define VS_VERSION_INFO 1 |
| 15 | #define VS_FFI_FILEFLAGSMASK 0x0000003FL |
| 16 | |
| 17 | #define VS_FF_DEBUG 0x00000001L |
| 18 | #define VS_FF_PRERELEASE 0x00000002L |
| 19 | #define VS_FF_PATCHED 0x00000004L |
| 20 | #define VS_FF_PRIVATEBUILD 0x00000008L |
| 21 | #define VS_FF_INFOINFERRED 0x00000010L |
| 22 | #define VS_FF_SPECIALBUILD 0x00000020L |
| 23 | |
| 24 | #define VFT_UNKNOWN 0x00000000L |
| 25 | #define VFT_APP 0x00000001L |
| 26 | #define VFT_DLL 0x00000002L |
| 27 | |
| 28 | #define VFT2_UNKNOWN 0x00000000L |
| 29 | |
| 30 | #define VOS__WINDOWS32 0x00000004L |
| 31 | |