mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 20:02:55 +00:00
21 lines
367 B
C
21 lines
367 B
C
/*
|
|
* ReactOS log2lines
|
|
* Written by Jan Roeloffzen
|
|
*
|
|
* - Image functions for symbol info
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <rsym.h>
|
|
|
|
size_t fixup_offset(size_t ImageBase, size_t offset);
|
|
|
|
PROSSYM_ENTRY find_offset(void *data, size_t offset);
|
|
|
|
PIMAGE_SECTION_HEADER get_sectionheader(const void *FileData);
|
|
|
|
int get_ImageBase(char *fname, size_t *ImageBase);
|
|
|
|
/* EOF */
|