/**
|
* \file
|
* mscoree.dll functions
|
*
|
* Author:
|
* Kornel Pal <http://www.kornelpal.hu/>
|
*
|
* Copyright (C) 2008 Kornel Pal
|
* Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
*/
|
|
#ifndef __MONO_COREE_H__
|
#define __MONO_COREE_H__
|
|
#include <config.h>
|
#include <glib.h>
|
|
#ifdef HOST_WIN32
|
|
#include <mono/utils/mono-compiler.h>
|
#include <mono/utils/w32api.h>
|
#include "image.h"
|
|
#define STATUS_SUCCESS 0x00000000L
|
#define STATUS_INVALID_IMAGE_FORMAT 0xC000007BL
|
|
MONO_API STDAPI MonoFixupCorEE(HMODULE ModuleHandle);
|
|
/* Defined by the linker. */
|
#ifndef _MSC_VER
|
#ifdef __MINGW64_VERSION_MAJOR
|
#define __ImageBase __MINGW_LSYMBOL(_image_base__)
|
#else
|
#define __ImageBase _image_base__
|
#endif
|
#endif
|
extern IMAGE_DOS_HEADER __ImageBase;
|
|
extern HMODULE coree_module_handle;
|
|
HMODULE WINAPI MonoLoadImage(LPCWSTR FileName);
|
STDAPI MonoFixupExe(HMODULE ModuleHandle);
|
|
gchar* mono_get_module_file_name (HMODULE module_handle);
|
void mono_load_coree (const char* file_name);
|
void mono_fixup_exe_image (MonoImage* image);
|
|
/* Declared in image.c. */
|
MonoImage* mono_image_open_from_module_handle (HMODULE module_handle, char* fname, gboolean has_entry_point, MonoImageOpenStatus* status);
|
|
#endif /* HOST_WIN32 */
|
|
#endif /* __MONO_COREE_H__ */
|