summaryrefslogtreecommitdiff
path: root/src/vm/ngenoptout.cpp
blob: 148bd9948552bce5f184b22dd47650505f4d328f (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
// ngenoptout.cpp
//

//
// 
// Contains functionality to reject native images at runtime


#include "common.h"
#ifndef FEATURE_CORECLR
#include "ngenoptout.h"
#include "assemblynamelist.h"

AssemblyNameList g_NgenOptoutList;

BOOL IsNativeImageOptedOut(IAssemblyName* pName)
{
    WRAPPER_NO_CONTRACT
    return g_NgenOptoutList.Lookup(pName) != NULL;
}

void AddNativeImageOptOut(IAssemblyName* pName)
{
    WRAPPER_NO_CONTRACT
    pName->AddRef();
    g_NgenOptoutList.Add(pName);
}
// HRESULT
HRESULT RuntimeIsNativeImageOptedOut(IAssemblyName* pName)
{
    WRAPPER_NO_CONTRACT
    return IsNativeImageOptedOut(pName) ? S_OK :S_FALSE;
}
#endif // FEATURE_CORECLR