summaryrefslogtreecommitdiff
path: root/src/vm/registration.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vm/registration.h')
-rw-r--r--src/vm/registration.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/vm/registration.h b/src/vm/registration.h
new file mode 100644
index 0000000000..22af0a97bd
--- /dev/null
+++ b/src/vm/registration.h
@@ -0,0 +1,25 @@
+// 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: 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