summaryrefslogtreecommitdiff
path: root/src/inc/corpermp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/inc/corpermp.h')
-rw-r--r--src/inc/corpermp.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/src/inc/corpermp.h b/src/inc/corpermp.h
new file mode 100644
index 0000000000..3f77893425
--- /dev/null
+++ b/src/inc/corpermp.h
@@ -0,0 +1,57 @@
+// 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.
+//*****************************************************************************
+// File: CorPermP.H
+//
+// Defines the Private routines defined in the secuirty libraries. These routines
+// are mainly for the security dll and the runtime.
+//
+//*****************************************************************************
+
+#ifndef _CORPERMP_H_
+#define _CORPERMP_H_
+
+#include "utilcode.h"
+#include "corperme.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+//==========================================================================
+// Encoding and Decoding PermissionSets
+
+//==========================================================================
+// Initialization routines for registering installable OIDS for capi20
+// Currently there is no C/C++ support for OID parsing. It is only supported
+// by using the permission objects within the runtime
+//
+// Parameter:
+// dllName The name of the module (eg. mscorsec.dll)
+// Returns:
+// S_OK This routines only returns S_OK currently
+//==========================================================================
+HRESULT WINAPI CorPermRegisterServer(LPCWSTR dllName);
+HRESULT WINAPI CorPermUnregisterServer();
+
+//==========================================================================
+// Removes the capi entries for installable OID's. Is not currently supported
+// so does nothing
+//
+// Returns:
+// S_OK This routines only returns S_OK currently
+//==========================================================================
+HRESULT WINAPI CorFactoryRegister(HINSTANCE hInst);
+
+HRESULT WINAPI CorFactoryUnregister();
+
+HRESULT WINAPI CorFactoryCanUnloadNow();
+
+#ifdef __cplusplus
+}
+#endif
+
+
+#include "corperm.h"
+#endif