/* * debug-mono-ppdb.c: Support for the portable PDB symbol * file format * * * Author: * Mono Project (http://www.mono-project.com) * * Copyright 2015 Xamarin Inc (http://www.xamarin.com) */ #ifndef __MONO_METADATA_DEBUG_MONO_PPDB_H__ #define __MONO_METADATA_DEBUG_MONO_PPDB_H__ #include #include MonoImage* mono_ppdb_load_file (MonoImage *image); void mono_ppdb_close (MonoDebugHandle *handle); MonoDebugMethodInfo * mono_ppdb_lookup_method (MonoDebugHandle *handle, MonoMethod *method); MonoDebugSourceLocation * mono_ppdb_lookup_location (MonoDebugMethodInfo *minfo, uint32_t offset); #endif