summaryrefslogtreecommitdiff
path: root/src/vm/ngenoptout.cpp
blob: b192c4a5f05dd6939962bc2c39c51acb07393581 (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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more 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