dbghelp: Constify some variables.
This commit is contained in:
parent
6d474663c1
commit
c702da34da
|
@ -428,7 +428,7 @@ static void writeat(struct dump_context* dc, RVA rva, const void* data, unsigned
|
|||
* writes a new chunk of data to the minidump, increasing the current
|
||||
* rva in dc
|
||||
*/
|
||||
static void append(struct dump_context* dc, void* data, unsigned size)
|
||||
static void append(struct dump_context* dc, const void* data, unsigned size)
|
||||
{
|
||||
writeat(dc, dc->rva, data, size);
|
||||
dc->rva += size;
|
||||
|
|
|
@ -134,7 +134,7 @@ static BOOL pe_load_dbg_file(const struct process* pcs, struct module* module,
|
|||
*/
|
||||
static BOOL pe_load_msc_debug_info(const struct process* pcs,
|
||||
struct module* module,
|
||||
void* mapping, IMAGE_NT_HEADERS* nth)
|
||||
void* mapping, const IMAGE_NT_HEADERS* nth)
|
||||
{
|
||||
BOOL ret = FALSE;
|
||||
const IMAGE_DATA_DIRECTORY* dir;
|
||||
|
@ -182,7 +182,7 @@ static BOOL pe_load_msc_debug_info(const struct process* pcs,
|
|||
*/
|
||||
static BOOL pe_load_export_debug_info(const struct process* pcs,
|
||||
struct module* module,
|
||||
void* mapping, IMAGE_NT_HEADERS* nth)
|
||||
void* mapping, const IMAGE_NT_HEADERS* nth)
|
||||
{
|
||||
unsigned int i;
|
||||
const IMAGE_EXPORT_DIRECTORY* exports;
|
||||
|
|
Loading…
Reference in New Issue