Esempio n. 1
0
        public static void InitializeLibrary()
        {
#if !CORERT
            __vtable_IUnknown.Initialize();
            McgModuleManager.Initialize();
#endif
            RuntimeAugments.InitializeInteropLookups(new Callbacks());
        }
Esempio n. 2
0
        public static void InitializeLibrary()
        {
#if !CORERT
            __vtable_IUnknown.Initialize();
            McgModuleManager.Initialize();
#endif
            RuntimeAugments.InitializeInteropLookups(RuntimeInteropData.Instance);
        }
Esempio n. 3
0
        public static void InitializeLibrary()
        {
#if !CORERT
            __vtable_IUnknown.Initialize();
            McgModuleManager.Initialize();
#endif

#if !CORECLR
            /// @TODO: enable this for Mcg on CoreCLR scenario
            RuntimeAugments.InitializeInteropLookups(RuntimeInteropData.Instance);
#endif
        }
Esempio n. 4
0
 // Eager initialization called from LibraryInitializer for the assembly.
 internal static void Initialize()
 {
     Instance = new InteropCallbackManager();
     RuntimeAugments.InitializeInteropLookups(new Callbacks());
 }
Esempio n. 5
0
 public static void InitializeLibrary()
 {
     RuntimeAugments.InitializeInteropLookups(new RuntimeInteropData());
 }
Esempio n. 6
0
 public static void InitializeLibrary()
 {
     RuntimeAugments.InitializeInteropLookups(RuntimeInteropData.Instance);
 }