summaryrefslogtreecommitdiff
path: root/src/vm/registration.h
blob: 4504be6fd6f284c6d8d3521b7bbaed4565a998be (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
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//

/*============================================================
**
** Header: Registration.h
**
**
** Purpose: Native methods on System.Runtime.InteropServices.RegistrationServices
**

** 
===========================================================*/
#ifndef __REGISTRATION_H
#define __REGISTRATION_H

#ifndef FEATURE_COMINTEROP
#error FEATURE_COMINTEROP is required for this file
#endif // FEATURE_COMINTEROP

FCDECL2(VOID, RegisterTypeForComClientsNative, ReflectClassBaseObject* pTypeUNSAFE, GUID* pGuid);
FCDECL3(DWORD, RegisterTypeForComClientsExNative, ReflectClassBaseObject* pTypeUNSAFE, CLSCTX clsContext, REGCLS flags);

#endif