1 /***
2 *crtassem.h - Libraries Assembly information
3 *
4 *           Copyright (c) Microsoft Corporation. All rights reserved.
5 *
6 *Purpose:
7 *           This file has information about Libraries Assembly version.
8 *
9 *           [Public]
10 *
11 ****/
12
13 #pragma once
14
15 #ifndef _VC_ASSEMBLY_PUBLICKEYTOKEN
16 #define _VC_ASSEMBLY_PUBLICKEYTOKEN "1fc8b3b9a1e18e3b"
17 #endif
18
19 #if !defined(_BIND_TO_CURRENT_VCLIBS_VERSION)
20   #define _BIND_TO_CURRENT_VCLIBS_VERSION 0
21 #endif
22
23 #if !defined(_BIND_TO_CURRENT_CRT_VERSION)
24   #if _BIND_TO_CURRENT_VCLIBS_VERSION
25       #define _BIND_TO_CURRENT_CRT_VERSION 1
26   #else
27       #define _BIND_TO_CURRENT_CRT_VERSION 0
Lines 28 ... 29 are skipped.
30
31 #ifndef _CRT_ASSEMBLY_VERSION
32 #if _BIND_TO_CURRENT_CRT_VERSION
33 #define _CRT_ASSEMBLY_VERSION "9.0.30729.6161"
34 #else
35 #define _CRT_ASSEMBLY_VERSION "9.0.21022.8"
36 #endif
37 #endif
38
39 #ifndef __LIBRARIES_ASSEMBLY_NAME_PREFIX
40 #define __LIBRARIES_ASSEMBLY_NAME_PREFIX "Microsoft.VC90"
41 #endif
42