summaryrefslogtreecommitdiff
path: root/src/vm/appdomainnative.hpp
blob: 0e3aa0e9b325edf75540d6bdc27a8223360905e4 (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
// 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.



/*============================================================
**
** Header:  AppDomainNative.hpp
**
** Purpose: Implements native methods for AppDomains
**
**
===========================================================*/
#ifndef _APPDOMAINNATIVE_H
#define _APPDOMAINNATIVE_H

#include "qcall.h"

class AppDomainNative
{
public:
    static FCDECL3(Object*, CreateDynamicAssembly, AssemblyNameBaseObject* assemblyNameUNSAFE, StackCrawlMark* stackMark, INT32 access);
    static FCDECL0(Object*, GetLoadedAssemblies);
    static FCDECL1(Object*, GetOrInternString, StringObject* pStringUNSAFE);
    static FCDECL1(Object*, IsStringInterned, StringObject* pString);

#ifdef FEATURE_APPX
    static INT32 QCALLTYPE IsAppXProcess();
#endif
};

#endif