1 /***
2 *ompassem.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 *
10 ****/
11
12 #pragma once
13
14 #ifndef _VC_ASSEMBLY_PUBLICKEYTOKEN
15 #define _VC_ASSEMBLY_PUBLICKEYTOKEN "1fc8b3b9a1e18e3b"
16 #endif
17
18 #if !defined(_BIND_TO_CURRENT_VCLIBS_VERSION)
19   #define _BIND_TO_CURRENT_VCLIBS_VERSION 0
20 #endif
21
22 #if !defined(_BIND_TO_CURRENT_OPENMP_VERSION)
23   #if _BIND_TO_CURRENT_VCLIBS_VERSION
24       #define _BIND_TO_CURRENT_OPENMP_VERSION 1
25   #else
26       #define _BIND_TO_CURRENT_OPENMP_VERSION 0
Lines 27 ... 28 are skipped.
29
30 #ifndef __OPENMP_ASSEMBLY_VERSION
31 #if _BIND_TO_CURRENT_OPENMP_VERSION
32 #define __OPENMP_ASSEMBLY_VERSION "9.0.30729.6161"
33 #else
34 #define __OPENMP_ASSEMBLY_VERSION "9.0.21022.8"
35 #endif
36 #endif
37
38 #ifndef __OPENMP_ASSEMBLY_NAME_PREFIX
39 #define __OPENMP_ASSEMBLY_NAME_PREFIX "Microsoft.VC90"
40 #endif
41