blob: 951e8fdf912e029176f2796068d2866b525dda8d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/***
* nochkclr.c - Dummy non-version-checking CLR call
*
* Copyright (c) Microsoft Corporation. All rights reserved.
*
*Purpose:
*
*******************************************************************************/
/***
*_check_commonlanguageruntime_version
*
*Purpose:
* If you don't link to the CRT, you use this obj to fill the compiler's need for this symbol
*******************************************************************************/
#ifdef __cplusplus
extern "C" {
#endif
void __cdecl _check_commonlanguageruntime_version()
{
}
#ifdef __cplusplus
}
#endif
|