File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 1010typedef struct _MonoObject MonoObject;
1111
1212MonoDomain* mono_jit_init(const char *root_domain_name);
13+ void mono_jit_cleanup(MonoDomain *domain);
1314MonoAssembly* mono_domain_assembly_open(MonoDomain *domain, const char *name);
1415MonoImage* mono_assembly_get_image(MonoAssembly *assembly);
1516
Original file line number Diff line number Diff line change @@ -104,6 +104,8 @@ def __iter__(self):
104104def _get_handle (dll , dotnet_root , runtime_config ):
105105 params = ffi .new ("hostfxr_initialize_parameters*" )
106106 params .size = ffi .sizeof ("hostfxr_initialize_parameters" )
107+ # params.host_path = ffi.new("char_t[]", encode(sys.executable))
108+ params .host_path = ffi .NULL
107109 params .dotnet_root = ffi .new ("char_t[]" , encode (dotnet_root ))
108110
109111 handle_ptr = ffi .new ("hostfxr_handle*" )
You can’t perform that action at this time.
0 commit comments