winejoystick: Fix a crash on accessing a CFArray past its end due to an off-by-one...
[wine/multimedia.git] / dlls / mscoree / mscoree_private.h
blobaf329f8ad8030b3f3d47b87d769cc5d6c5d78cd9
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;
26 extern HRESULT CLRMetaHostPolicy_CreateInstance(REFIID riid, void **ppobj) DECLSPEC_HIDDEN;
28 extern HRESULT WINAPI CLRMetaHost_GetVersionFromFile(ICLRMetaHost* iface,
29 LPCWSTR pwzFilePath, LPWSTR pwzBuffer, DWORD *pcchBuffer) DECLSPEC_HIDDEN;
31 typedef struct _VTableFixup {
32 DWORD rva;
33 WORD count;
34 WORD type;
35 } VTableFixup;
37 typedef struct tagASSEMBLY ASSEMBLY;
39 extern HRESULT assembly_create(ASSEMBLY **out, LPCWSTR file) DECLSPEC_HIDDEN;
40 extern HRESULT assembly_from_hmodule(ASSEMBLY **out, HMODULE hmodule) DECLSPEC_HIDDEN;
41 extern HRESULT assembly_release(ASSEMBLY *assembly) DECLSPEC_HIDDEN;
42 extern HRESULT assembly_get_runtime_version(ASSEMBLY *assembly, LPSTR *version) DECLSPEC_HIDDEN;
43 extern HRESULT assembly_get_vtable_fixups(ASSEMBLY *assembly, VTableFixup **fixups, DWORD *count) DECLSPEC_HIDDEN;
45 /* Mono embedding */
46 typedef struct _MonoDomain MonoDomain;
47 typedef struct _MonoAssembly MonoAssembly;
48 typedef struct _MonoAssemblyName MonoAssemblyName;
49 typedef struct _MonoType MonoType;
50 typedef struct _MonoImage MonoImage;
51 typedef struct _MonoClass MonoClass;
52 typedef struct _MonoObject MonoObject;
53 typedef struct _MonoString MonoString;
54 typedef struct _MonoMethod MonoMethod;
55 typedef struct _MonoProfiler MonoProfiler;
56 typedef struct _MonoThread MonoThread;
58 typedef struct RuntimeHost RuntimeHost;
60 typedef struct CLRRuntimeInfo
62 ICLRRuntimeInfo ICLRRuntimeInfo_iface;
63 LPCWSTR mono_libdir;
64 DWORD major;
65 DWORD minor;
66 DWORD build;
67 BOOL found;
68 WCHAR mono_path[MAX_PATH];
69 WCHAR mscorlib_path[MAX_PATH];
70 struct RuntimeHost *loaded_runtime;
71 } CLRRuntimeInfo;
73 struct RuntimeHost
75 ICorRuntimeHost ICorRuntimeHost_iface;
76 ICLRRuntimeHost ICLRRuntimeHost_iface;
77 const CLRRuntimeInfo *version;
78 struct list domains;
79 MonoDomain *default_domain;
80 CRITICAL_SECTION lock;
81 LONG ref;
84 typedef struct CorProcess
86 struct list entry;
87 ICorDebugProcess *pProcess;
88 } CorProcess;
90 typedef struct CorDebug
92 ICorDebug ICorDebug_iface;
93 ICorDebugProcessEnum ICorDebugProcessEnum_iface;
94 LONG ref;
96 ICLRRuntimeHost *runtimehost;
98 /* ICorDebug Callback */
99 ICorDebugManagedCallback *pCallback;
100 ICorDebugManagedCallback2 *pCallback2;
102 /* Debug Processes */
103 struct list processes;
104 } CorDebug;
106 extern HRESULT get_runtime_info(LPCWSTR exefile, LPCWSTR version, LPCWSTR config_file,
107 DWORD startup_flags, DWORD runtimeinfo_flags, BOOL legacy, ICLRRuntimeInfo **result) DECLSPEC_HIDDEN;
109 extern HRESULT ICLRRuntimeInfo_GetRuntimeHost(ICLRRuntimeInfo *iface, RuntimeHost **result) DECLSPEC_HIDDEN;
111 extern HRESULT MetaDataDispenser_CreateInstance(IUnknown **ppUnk) DECLSPEC_HIDDEN;
113 typedef struct parsed_config_file
115 struct list supported_runtimes;
116 } parsed_config_file;
118 typedef struct supported_runtime
120 struct list entry;
121 LPWSTR version;
122 } supported_runtime;
124 extern HRESULT parse_config_file(LPCWSTR filename, parsed_config_file *result) DECLSPEC_HIDDEN;
126 extern void free_parsed_config_file(parsed_config_file *file) DECLSPEC_HIDDEN;
128 typedef enum {
129 MONO_IMAGE_OK,
130 MONO_IMAGE_ERROR_ERRNO,
131 MONO_IMAGE_MISSING_ASSEMBLYREF,
132 MONO_IMAGE_IMAGE_INVALID
133 } MonoImageOpenStatus;
135 typedef MonoAssembly* (*MonoAssemblyPreLoadFunc)(MonoAssemblyName *aname, char **assemblies_path, void *user_data);
137 typedef void (*MonoProfileFunc)(MonoProfiler *prof);
139 extern BOOL is_mono_started;
141 extern MonoImage* (CDECL *mono_assembly_get_image)(MonoAssembly *assembly);
142 extern MonoAssembly* (CDECL *mono_assembly_load_from)(MonoImage *image, const char *fname, MonoImageOpenStatus *status);
143 extern MonoAssembly* (CDECL *mono_assembly_open)(const char *filename, MonoImageOpenStatus *status);
144 extern MonoClass* (CDECL *mono_class_from_mono_type)(MonoType *type);
145 extern MonoClass* (CDECL *mono_class_from_name)(MonoImage *image, const char* name_space, const char *name);
146 extern MonoMethod* (CDECL *mono_class_get_method_from_name)(MonoClass *klass, const char *name, int param_count);
147 extern MonoAssembly* (CDECL *mono_domain_assembly_open)(MonoDomain *domain, const char *name);
148 extern int (CDECL *mono_jit_exec)(MonoDomain *domain, MonoAssembly *assembly, int argc, char *argv[]);
149 extern MonoDomain* (CDECL *mono_jit_init)(const char *file);
150 extern MonoImage* (CDECL *mono_image_open_from_module_handle)(HMODULE module_handle, char* fname, UINT has_entry_point, MonoImageOpenStatus* status);
151 extern void* (CDECL *mono_marshal_get_vtfixup_ftnptr)(MonoImage *image, DWORD token, WORD type);
152 extern MonoDomain* (CDECL *mono_object_get_domain)(MonoObject *obj);
153 extern MonoObject* (CDECL *mono_object_new)(MonoDomain *domain, MonoClass *klass);
154 extern void* (CDECL *mono_object_unbox)(MonoObject *obj);
155 extern MonoType* (CDECL *mono_reflection_type_from_name)(char *name, MonoImage *image);
156 extern MonoObject* (CDECL *mono_runtime_invoke)(MonoMethod *method, void *obj, void **params, MonoObject **exc);
157 extern void (CDECL *mono_runtime_object_init)(MonoObject *this_obj);
158 extern void (CDECL *mono_runtime_quit)(void);
159 extern MonoString* (CDECL *mono_string_new)(MonoDomain *domain, const char *str);
160 extern MonoThread* (CDECL *mono_thread_attach)(MonoDomain *domain);
161 extern void (CDECL *mono_thread_manage)(void);
162 extern void (CDECL *mono_trace_set_assembly)(MonoAssembly *assembly);
164 /* loaded runtime interfaces */
165 extern void expect_no_runtimes(void) DECLSPEC_HIDDEN;
167 extern HRESULT RuntimeHost_Construct(const CLRRuntimeInfo *runtime_version, RuntimeHost** result) DECLSPEC_HIDDEN;
169 extern void RuntimeHost_ExitProcess(RuntimeHost *This, INT exitcode) DECLSPEC_HIDDEN;
171 extern HRESULT RuntimeHost_GetInterface(RuntimeHost *This, REFCLSID clsid, REFIID riid, void **ppv) DECLSPEC_HIDDEN;
173 extern HRESULT RuntimeHost_GetIUnknownForObject(RuntimeHost *This, MonoObject *obj, IUnknown **ppUnk) DECLSPEC_HIDDEN;
175 extern HRESULT RuntimeHost_CreateManagedInstance(RuntimeHost *This, LPCWSTR name,
176 MonoDomain *domain, MonoObject **result) DECLSPEC_HIDDEN;
178 HRESULT WINAPI CLRMetaHost_ExitProcess(ICLRMetaHost* iface, INT32 iExitCode) DECLSPEC_HIDDEN;
180 HRESULT WINAPI CLRMetaHost_GetRuntime(ICLRMetaHost* iface, LPCWSTR pwzVersion, REFIID iid, LPVOID *ppRuntime) DECLSPEC_HIDDEN;
182 extern HRESULT CorDebug_Create(ICLRRuntimeHost *runtimehost, IUnknown** ppUnk) DECLSPEC_HIDDEN;
184 extern HRESULT create_monodata(REFIID riid, LPVOID *ppObj) DECLSPEC_HIDDEN;
186 extern HRESULT get_file_from_strongname(WCHAR* stringnameW, WCHAR* assemblies_path, int path_length) DECLSPEC_HIDDEN;
188 extern void runtimehost_init(void);
189 extern void runtimehost_uninit(void);
191 #endif /* __MSCOREE_PRIVATE__ */