mscoree: Always call mono_thread_attach before invoking managed code.
[wine/multimedia.git] / dlls / mscoree / mscoree_private.h
blob62cf240c61b58a12adbf47eb1c099cd80654ec34
1 /*
3 * Copyright 2008 Alistair Leslie-Hughes
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #ifndef __MSCOREE_PRIVATE__
21 #define __MSCOREE_PRIVATE__
23 extern char *WtoA(LPCWSTR wstr) DECLSPEC_HIDDEN;
25 extern HRESULT CLRMetaHost_CreateInstance(REFIID riid, void **ppobj) DECLSPEC_HIDDEN;
27 extern HRESULT WINAPI CLRMetaHost_GetVersionFromFile(ICLRMetaHost* iface,
28 LPCWSTR pwzFilePath, LPWSTR pwzBuffer, DWORD *pcchBuffer) DECLSPEC_HIDDEN;
30 typedef struct tagASSEMBLY ASSEMBLY;
32 HRESULT assembly_create(ASSEMBLY **out, LPCWSTR file) DECLSPEC_HIDDEN;
33 HRESULT assembly_release(ASSEMBLY *assembly) DECLSPEC_HIDDEN;
34 HRESULT assembly_get_runtime_version(ASSEMBLY *assembly, LPSTR *version) DECLSPEC_HIDDEN;
36 /* Mono embedding */
37 typedef struct _MonoDomain MonoDomain;
38 typedef struct _MonoAssembly MonoAssembly;
39 typedef struct _MonoAssemblyName MonoAssemblyName;
40 typedef struct _MonoType MonoType;
41 typedef struct _MonoImage MonoImage;
42 typedef struct _MonoClass MonoClass;
43 typedef struct _MonoObject MonoObject;
44 typedef struct _MonoString MonoString;
45 typedef struct _MonoMethod MonoMethod;
46 typedef struct _MonoProfiler MonoProfiler;
47 typedef struct _MonoThread MonoThread;
49 typedef struct loaded_mono loaded_mono;
50 typedef struct RuntimeHost RuntimeHost;
52 typedef struct CLRRuntimeInfo
54 ICLRRuntimeInfo ICLRRuntimeInfo_iface;
55 LPCWSTR mono_libdir;
56 DWORD major;
57 DWORD minor;
58 DWORD build;
59 int mono_abi_version;
60 WCHAR mono_path[MAX_PATH];
61 WCHAR mscorlib_path[MAX_PATH];
62 struct RuntimeHost *loaded_runtime;
63 } CLRRuntimeInfo;
65 struct RuntimeHost
67 ICorRuntimeHost ICorRuntimeHost_iface;
68 ICLRRuntimeHost ICLRRuntimeHost_iface;
69 const CLRRuntimeInfo *version;
70 loaded_mono *mono;
71 struct list domains;
72 MonoDomain *default_domain;
73 CRITICAL_SECTION lock;
74 LONG ref;
77 typedef struct CorProcess
79 struct list entry;
80 ICorDebugProcess *pProcess;
81 } CorProcess;
83 typedef struct CorDebug
85 ICorDebug ICorDebug_iface;
86 ICorDebugProcessEnum ICorDebugProcessEnum_iface;
87 LONG ref;
89 ICLRRuntimeHost *runtimehost;
91 /* ICorDebug Callback */
92 ICorDebugManagedCallback *pCallback;
93 ICorDebugManagedCallback2 *pCallback2;
95 /* Debug Processes */
96 struct list processes;
97 } CorDebug;
99 extern HRESULT get_runtime_info(LPCWSTR exefile, LPCWSTR version, LPCWSTR config_file,
100 DWORD startup_flags, DWORD runtimeinfo_flags, BOOL legacy, ICLRRuntimeInfo **result) DECLSPEC_HIDDEN;
102 extern HRESULT ICLRRuntimeInfo_GetRuntimeHost(ICLRRuntimeInfo *iface, RuntimeHost **result) DECLSPEC_HIDDEN;
104 extern HRESULT MetaDataDispenser_CreateInstance(IUnknown **ppUnk) DECLSPEC_HIDDEN;
106 typedef struct parsed_config_file
108 struct list supported_runtimes;
109 } parsed_config_file;
111 typedef struct supported_runtime
113 struct list entry;
114 LPWSTR version;
115 } supported_runtime;
117 extern HRESULT parse_config_file(LPCWSTR filename, parsed_config_file *result) DECLSPEC_HIDDEN;
119 extern void free_parsed_config_file(parsed_config_file *file) DECLSPEC_HIDDEN;
121 typedef enum {
122 MONO_IMAGE_OK,
123 MONO_IMAGE_ERROR_ERRNO,
124 MONO_IMAGE_MISSING_ASSEMBLYREF,
125 MONO_IMAGE_IMAGE_INVALID
126 } MonoImageOpenStatus;
128 typedef MonoAssembly* (*MonoAssemblyPreLoadFunc)(MonoAssemblyName *aname, char **assemblies_path, void *user_data);
130 typedef void (*MonoProfileFunc)(MonoProfiler *prof);
132 struct loaded_mono
134 HMODULE mono_handle;
135 HMODULE glib_handle;
137 BOOL is_started;
138 BOOL is_shutdown;
140 MonoImage* (CDECL *mono_assembly_get_image)(MonoAssembly *assembly);
141 MonoAssembly* (CDECL *mono_assembly_open)(const char *filename, MonoImageOpenStatus *status);
142 MonoClass* (CDECL *mono_class_from_mono_type)(MonoType *type);
143 MonoClass* (CDECL *mono_class_from_name)(MonoImage *image, const char* name_space, const char *name);
144 MonoMethod* (CDECL *mono_class_get_method_from_name)(MonoClass *klass, const char *name, int param_count);
145 void (CDECL *mono_config_parse)(const char *filename);
146 MonoAssembly* (CDECL *mono_domain_assembly_open) (MonoDomain *domain, const char *name);
147 void (CDECL *mono_free)(void *);
148 void (CDECL *mono_install_assembly_preload_hook)(MonoAssemblyPreLoadFunc func, void *user_data);
149 int (CDECL *mono_jit_exec)(MonoDomain *domain, MonoAssembly *assembly, int argc, char *argv[]);
150 MonoDomain* (CDECL *mono_jit_init)(const char *file);
151 int (CDECL *mono_jit_set_trace_options)(const char* options);
152 MonoDomain* (CDECL *mono_object_get_domain)(MonoObject *obj);
153 MonoObject* (CDECL *mono_object_new)(MonoDomain *domain, MonoClass *klass);
154 void* (CDECL *mono_object_unbox)(MonoObject *obj);
155 void (CDECL *mono_profiler_install)(MonoProfiler *prof, MonoProfileFunc shutdown_callback);
156 MonoType* (CDECL *mono_reflection_type_from_name)(char *name, MonoImage *image);
157 MonoObject* (CDECL *mono_runtime_invoke)(MonoMethod *method, void *obj, void **params, MonoObject **exc);
158 void (CDECL *mono_runtime_object_init)(MonoObject *this_obj);
159 void (CDECL *mono_runtime_quit)(void);
160 void (CDECL *mono_runtime_set_shutting_down)(void);
161 void (CDECL *mono_set_dirs)(const char *assembly_dir, const char *config_dir);
162 char* (CDECL *mono_stringify_assembly_name)(MonoAssemblyName *aname);
163 void (CDECL *mono_thread_pool_cleanup)(void);
164 void (CDECL *mono_thread_suspend_all_other_threads)(void);
165 void (CDECL *mono_threads_set_shutting_down)(void);
166 MonoString* (CDECL *mono_string_new)(MonoDomain *domain, const char *str);
167 MonoThread* (CDECL *mono_thread_attach)(MonoDomain *domain);
170 /* loaded runtime interfaces */
171 extern void unload_all_runtimes(void) DECLSPEC_HIDDEN;
173 extern void expect_no_runtimes(void) DECLSPEC_HIDDEN;
175 extern HRESULT RuntimeHost_Construct(const CLRRuntimeInfo *runtime_version,
176 loaded_mono *loaded_mono, RuntimeHost** result) DECLSPEC_HIDDEN;
178 extern HRESULT RuntimeHost_GetInterface(RuntimeHost *This, REFCLSID clsid, REFIID riid, void **ppv) DECLSPEC_HIDDEN;
180 extern HRESULT RuntimeHost_GetIUnknownForObject(RuntimeHost *This, MonoObject *obj, IUnknown **ppUnk) DECLSPEC_HIDDEN;
182 extern HRESULT RuntimeHost_CreateManagedInstance(RuntimeHost *This, LPCWSTR name,
183 MonoDomain *domain, MonoObject **result) DECLSPEC_HIDDEN;
185 extern HRESULT RuntimeHost_Destroy(RuntimeHost *This) DECLSPEC_HIDDEN;
187 HRESULT WINAPI CLRMetaHost_GetRuntime(ICLRMetaHost* iface, LPCWSTR pwzVersion, REFIID iid, LPVOID *ppRuntime) DECLSPEC_HIDDEN;
189 extern HRESULT CorDebug_Create(ICLRRuntimeHost *runtimehost, IUnknown** ppUnk) DECLSPEC_HIDDEN;
191 extern HRESULT create_monodata(REFIID riid, LPVOID *ppObj) DECLSPEC_HIDDEN;
193 #endif /* __MSCOREE_PRIVATE__ */