dbghelp: Mark internal symbols as hidden.

This commit is contained in:
Marcus Meissner 2011-04-28 13:46:11 +02:00 committed by Alexandre Julliard
parent 0bbba71c64
commit b858b53991
8 changed files with 125 additions and 125 deletions

View File

@ -154,7 +154,7 @@ static void coff_add_symbol(struct CoffFile* coff_file, struct symt* sym)
coff_file->entries[coff_file->neps++] = sym; coff_file->entries[coff_file->neps++] = sym;
} }
BOOL coff_process_info(const struct msc_debug_info* msc_dbg) DECLSPEC_HIDDEN BOOL coff_process_info(const struct msc_debug_info* msc_dbg)
{ {
const IMAGE_AUX_SYMBOL* aux; const IMAGE_AUX_SYMBOL* aux;
const IMAGE_COFF_SYMBOLS_HEADER* coff; const IMAGE_COFF_SYMBOLS_HEADER* coff;

View File

@ -222,7 +222,7 @@ static const char* arm_fetch_regname(unsigned regno)
return NULL; return NULL;
} }
struct cpu cpu_arm = { DECLSPEC_HIDDEN struct cpu cpu_arm = {
IMAGE_FILE_MACHINE_ARM, IMAGE_FILE_MACHINE_ARM,
4, 4,
CV_ARM_R0 + 11, CV_ARM_R0 + 11,

View File

@ -632,7 +632,7 @@ static const char* i386_fetch_regname(unsigned regno)
return NULL; return NULL;
} }
struct cpu cpu_i386 = { DECLSPEC_HIDDEN struct cpu cpu_i386 = {
IMAGE_FILE_MACHINE_I386, IMAGE_FILE_MACHINE_I386,
4, 4,
CV_REG_EBP, CV_REG_EBP,

View File

@ -72,7 +72,7 @@ static const char* ppc_fetch_regname(unsigned regno)
return NULL; return NULL;
} }
struct cpu cpu_ppc = { DECLSPEC_HIDDEN struct cpu cpu_ppc = {
IMAGE_FILE_MACHINE_POWERPC, IMAGE_FILE_MACHINE_POWERPC,
4, 4,
CV_REG_NONE, /* FIXME */ CV_REG_NONE, /* FIXME */

View File

@ -79,7 +79,7 @@ static const char* sparc_fetch_regname(unsigned regno)
return NULL; return NULL;
} }
struct cpu cpu_sparc = { DECLSPEC_HIDDEN struct cpu cpu_sparc = {
IMAGE_FILE_MACHINE_SPARC, IMAGE_FILE_MACHINE_SPARC,
4, 4,
CV_REG_NONE, /* FIXME */ CV_REG_NONE, /* FIXME */

View File

@ -796,7 +796,7 @@ static const char* x86_64_fetch_regname(unsigned regno)
return NULL; return NULL;
} }
struct cpu cpu_x86_64 = { DECLSPEC_HIDDEN struct cpu cpu_x86_64 = {
IMAGE_FILE_MACHINE_AMD64, IMAGE_FILE_MACHINE_AMD64,
8, 8,
CV_AMD64_RSP, CV_AMD64_RSP,

View File

@ -44,10 +44,10 @@ struct pool /* poor's man */
size_t arena_size; size_t arena_size;
}; };
void pool_init(struct pool* a, size_t arena_size); void pool_init(struct pool* a, size_t arena_size) DECLSPEC_HIDDEN;
void pool_destroy(struct pool* a); void pool_destroy(struct pool* a) DECLSPEC_HIDDEN;
void* pool_alloc(struct pool* a, size_t len); void* pool_alloc(struct pool* a, size_t len) DECLSPEC_HIDDEN;
char* pool_strdup(struct pool* a, const char* str); char* pool_strdup(struct pool* a, const char* str) DECLSPEC_HIDDEN;
struct vector struct vector
{ {
@ -59,10 +59,10 @@ struct vector
unsigned buckets_allocated; unsigned buckets_allocated;
}; };
void vector_init(struct vector* v, unsigned elt_sz, unsigned bucket_sz); void vector_init(struct vector* v, unsigned elt_sz, unsigned bucket_sz) DECLSPEC_HIDDEN;
unsigned vector_length(const struct vector* v); unsigned vector_length(const struct vector* v) DECLSPEC_HIDDEN;
void* vector_at(const struct vector* v, unsigned pos); void* vector_at(const struct vector* v, unsigned pos) DECLSPEC_HIDDEN;
void* vector_add(struct vector* v, struct pool* pool); void* vector_add(struct vector* v, struct pool* pool) DECLSPEC_HIDDEN;
struct sparse_array struct sparse_array
{ {
@ -70,10 +70,10 @@ struct sparse_array
struct vector elements; struct vector elements;
}; };
void sparse_array_init(struct sparse_array* sa, unsigned elt_sz, unsigned bucket_sz); void sparse_array_init(struct sparse_array* sa, unsigned elt_sz, unsigned bucket_sz) DECLSPEC_HIDDEN;
void* sparse_array_find(const struct sparse_array* sa, unsigned long idx); void* sparse_array_find(const struct sparse_array* sa, unsigned long idx) DECLSPEC_HIDDEN;
void* sparse_array_add(struct sparse_array* sa, unsigned long key, struct pool* pool); void* sparse_array_add(struct sparse_array* sa, unsigned long key, struct pool* pool) DECLSPEC_HIDDEN;
unsigned sparse_array_length(const struct sparse_array* sa); unsigned sparse_array_length(const struct sparse_array* sa) DECLSPEC_HIDDEN;
struct hash_table_elt struct hash_table_elt
{ {
@ -96,9 +96,9 @@ struct hash_table
}; };
void hash_table_init(struct pool* pool, struct hash_table* ht, void hash_table_init(struct pool* pool, struct hash_table* ht,
unsigned num_buckets); unsigned num_buckets) DECLSPEC_HIDDEN;
void hash_table_destroy(struct hash_table* ht); void hash_table_destroy(struct hash_table* ht) DECLSPEC_HIDDEN;
void hash_table_add(struct hash_table* ht, struct hash_table_elt* elt); void hash_table_add(struct hash_table* ht, struct hash_table_elt* elt) DECLSPEC_HIDDEN;
struct hash_table_iter struct hash_table_iter
{ {
@ -109,14 +109,14 @@ struct hash_table_iter
}; };
void hash_table_iter_init(const struct hash_table* ht, void hash_table_iter_init(const struct hash_table* ht,
struct hash_table_iter* hti, const char* name); struct hash_table_iter* hti, const char* name) DECLSPEC_HIDDEN;
void* hash_table_iter_up(struct hash_table_iter* hti); void* hash_table_iter_up(struct hash_table_iter* hti) DECLSPEC_HIDDEN;
#define GET_ENTRY(__i, __t, __f) \ #define GET_ENTRY(__i, __t, __f) \
((__t*)((char*)(__i) - FIELD_OFFSET(__t,__f))) ((__t*)((char*)(__i) - FIELD_OFFSET(__t,__f)))
extern unsigned dbghelp_options; extern unsigned dbghelp_options DECLSPEC_HIDDEN;
/* some more Wine extensions */ /* some more Wine extensions */
#define SYMOPT_WINE_WITH_NATIVE_MODULES 0x40000000 #define SYMOPT_WINE_WITH_NATIVE_MODULES 0x40000000
@ -352,7 +352,7 @@ struct module_format
} u; } u;
}; };
extern const struct wine_rb_functions source_rb_functions; extern const struct wine_rb_functions source_rb_functions DECLSPEC_HIDDEN;
struct module struct module
{ {
struct process* process; struct process* process;
@ -490,111 +490,111 @@ struct cpu
const char* (*fetch_regname)(unsigned regno); const char* (*fetch_regname)(unsigned regno);
}; };
extern struct cpu* dbghelp_current_cpu; extern struct cpu* dbghelp_current_cpu DECLSPEC_HIDDEN;
/* dbghelp.c */ /* dbghelp.c */
extern struct process* process_find_by_handle(HANDLE hProcess); extern struct process* process_find_by_handle(HANDLE hProcess) DECLSPEC_HIDDEN;
extern HANDLE hMsvcrt; extern HANDLE hMsvcrt DECLSPEC_HIDDEN;
extern BOOL validate_addr64(DWORD64 addr); extern BOOL validate_addr64(DWORD64 addr) DECLSPEC_HIDDEN;
extern BOOL pcs_callback(const struct process* pcs, ULONG action, void* data); extern BOOL pcs_callback(const struct process* pcs, ULONG action, void* data) DECLSPEC_HIDDEN;
extern void* fetch_buffer(struct process* pcs, unsigned size); extern void* fetch_buffer(struct process* pcs, unsigned size) DECLSPEC_HIDDEN;
extern const char* wine_dbgstr_addr(const ADDRESS64* addr); extern const char* wine_dbgstr_addr(const ADDRESS64* addr) DECLSPEC_HIDDEN;
extern struct cpu* cpu_find(DWORD); extern struct cpu* cpu_find(DWORD) DECLSPEC_HIDDEN;
/* crc32.c */ /* crc32.c */
extern DWORD calc_crc32(int fd); extern DWORD calc_crc32(int fd) DECLSPEC_HIDDEN;
typedef BOOL (*enum_modules_cb)(const WCHAR*, unsigned long addr, void* user); typedef BOOL (*enum_modules_cb)(const WCHAR*, unsigned long addr, void* user);
/* elf_module.c */ /* elf_module.c */
extern BOOL elf_enum_modules(HANDLE hProc, enum_modules_cb, void*); extern BOOL elf_enum_modules(HANDLE hProc, enum_modules_cb, void*) DECLSPEC_HIDDEN;
extern BOOL elf_fetch_file_info(const WCHAR* name, DWORD_PTR* base, DWORD* size, DWORD* checksum); extern BOOL elf_fetch_file_info(const WCHAR* name, DWORD_PTR* base, DWORD* size, DWORD* checksum) DECLSPEC_HIDDEN;
struct image_file_map; struct image_file_map;
extern BOOL elf_load_debug_info(struct module* module); extern BOOL elf_load_debug_info(struct module* module) DECLSPEC_HIDDEN;
extern struct module* extern struct module*
elf_load_module(struct process* pcs, const WCHAR* name, unsigned long); elf_load_module(struct process* pcs, const WCHAR* name, unsigned long) DECLSPEC_HIDDEN;
extern BOOL elf_read_wine_loader_dbg_info(struct process* pcs); extern BOOL elf_read_wine_loader_dbg_info(struct process* pcs) DECLSPEC_HIDDEN;
extern BOOL elf_synchronize_module_list(struct process* pcs); extern BOOL elf_synchronize_module_list(struct process* pcs) DECLSPEC_HIDDEN;
struct elf_thunk_area; struct elf_thunk_area;
extern int elf_is_in_thunk_area(unsigned long addr, const struct elf_thunk_area* thunks); extern int elf_is_in_thunk_area(unsigned long addr, const struct elf_thunk_area* thunks) DECLSPEC_HIDDEN;
/* macho_module.c */ /* macho_module.c */
#define MACHO_NO_MAP ((const void*)-1) #define MACHO_NO_MAP ((const void*)-1)
extern BOOL macho_enum_modules(HANDLE hProc, enum_modules_cb, void*); extern BOOL macho_enum_modules(HANDLE hProc, enum_modules_cb, void*) DECLSPEC_HIDDEN;
extern BOOL macho_fetch_file_info(const WCHAR* name, DWORD_PTR* base, DWORD* size, DWORD* checksum); extern BOOL macho_fetch_file_info(const WCHAR* name, DWORD_PTR* base, DWORD* size, DWORD* checksum) DECLSPEC_HIDDEN;
struct macho_file_map; struct macho_file_map;
extern BOOL macho_load_debug_info(struct module* module, struct macho_file_map* fmap); extern BOOL macho_load_debug_info(struct module* module, struct macho_file_map* fmap) DECLSPEC_HIDDEN;
extern struct module* extern struct module*
macho_load_module(struct process* pcs, const WCHAR* name, unsigned long); macho_load_module(struct process* pcs, const WCHAR* name, unsigned long) DECLSPEC_HIDDEN;
extern BOOL macho_read_wine_loader_dbg_info(struct process* pcs); extern BOOL macho_read_wine_loader_dbg_info(struct process* pcs) DECLSPEC_HIDDEN;
extern BOOL macho_synchronize_module_list(struct process* pcs); extern BOOL macho_synchronize_module_list(struct process* pcs) DECLSPEC_HIDDEN;
/* module.c */ /* module.c */
extern const WCHAR S_ElfW[]; extern const WCHAR S_ElfW[] DECLSPEC_HIDDEN;
extern const WCHAR S_WineLoaderW[]; extern const WCHAR S_WineLoaderW[] DECLSPEC_HIDDEN;
extern const WCHAR S_SlashW[]; extern const WCHAR S_SlashW[] DECLSPEC_HIDDEN;
extern struct module* extern struct module*
module_find_by_addr(const struct process* pcs, unsigned long addr, module_find_by_addr(const struct process* pcs, unsigned long addr,
enum module_type type); enum module_type type) DECLSPEC_HIDDEN;
extern struct module* extern struct module*
module_find_by_nameA(const struct process* pcs, module_find_by_nameA(const struct process* pcs,
const char* name); const char* name) DECLSPEC_HIDDEN;
extern struct module* extern struct module*
module_is_already_loaded(const struct process* pcs, module_is_already_loaded(const struct process* pcs,
const WCHAR* imgname); const WCHAR* imgname) DECLSPEC_HIDDEN;
extern BOOL module_get_debug(struct module_pair*); extern BOOL module_get_debug(struct module_pair*) DECLSPEC_HIDDEN;
extern struct module* extern struct module*
module_new(struct process* pcs, const WCHAR* name, module_new(struct process* pcs, const WCHAR* name,
enum module_type type, BOOL virtual, enum module_type type, BOOL virtual,
DWORD64 addr, DWORD64 size, DWORD64 addr, DWORD64 size,
unsigned long stamp, unsigned long checksum); unsigned long stamp, unsigned long checksum) DECLSPEC_HIDDEN;
extern struct module* extern struct module*
module_get_containee(const struct process* pcs, module_get_containee(const struct process* pcs,
const struct module* inner); const struct module* inner) DECLSPEC_HIDDEN;
extern enum module_type extern enum module_type
module_get_type_by_name(const WCHAR* name); module_get_type_by_name(const WCHAR* name) DECLSPEC_HIDDEN;
extern void module_reset_debug_info(struct module* module); extern void module_reset_debug_info(struct module* module) DECLSPEC_HIDDEN;
extern BOOL module_remove(struct process* pcs, extern BOOL module_remove(struct process* pcs,
struct module* module); struct module* module) DECLSPEC_HIDDEN;
extern void module_set_module(struct module* module, const WCHAR* name); extern void module_set_module(struct module* module, const WCHAR* name) DECLSPEC_HIDDEN;
extern const WCHAR *get_wine_loader_name(void); extern const WCHAR *get_wine_loader_name(void) DECLSPEC_HIDDEN;
/* msc.c */ /* msc.c */
extern BOOL pe_load_debug_directory(const struct process* pcs, extern BOOL pe_load_debug_directory(const struct process* pcs,
struct module* module, struct module* module,
const BYTE* mapping, const BYTE* mapping,
const IMAGE_SECTION_HEADER* sectp, DWORD nsect, const IMAGE_SECTION_HEADER* sectp, DWORD nsect,
const IMAGE_DEBUG_DIRECTORY* dbg, int nDbg); const IMAGE_DEBUG_DIRECTORY* dbg, int nDbg) DECLSPEC_HIDDEN;
extern BOOL pdb_fetch_file_info(const struct pdb_lookup* pdb_lookup, unsigned* matched); extern BOOL pdb_fetch_file_info(const struct pdb_lookup* pdb_lookup, unsigned* matched) DECLSPEC_HIDDEN;
struct pdb_cmd_pair { struct pdb_cmd_pair {
const char* name; const char* name;
DWORD* pvalue; DWORD* pvalue;
}; };
extern BOOL pdb_virtual_unwind(struct cpu_stack_walk* csw, DWORD_PTR ip, extern BOOL pdb_virtual_unwind(struct cpu_stack_walk* csw, DWORD_PTR ip,
CONTEXT* context, struct pdb_cmd_pair* cpair); CONTEXT* context, struct pdb_cmd_pair* cpair) DECLSPEC_HIDDEN;
/* path.c */ /* path.c */
extern BOOL path_find_symbol_file(const struct process* pcs, PCSTR full_path, extern BOOL path_find_symbol_file(const struct process* pcs, PCSTR full_path,
const GUID* guid, DWORD dw1, DWORD dw2, PSTR buffer, const GUID* guid, DWORD dw1, DWORD dw2, PSTR buffer,
BOOL* is_unmatched); BOOL* is_unmatched) DECLSPEC_HIDDEN;
/* pe_module.c */ /* pe_module.c */
extern BOOL pe_load_nt_header(HANDLE hProc, DWORD64 base, IMAGE_NT_HEADERS* nth); extern BOOL pe_load_nt_header(HANDLE hProc, DWORD64 base, IMAGE_NT_HEADERS* nth) DECLSPEC_HIDDEN;
extern struct module* extern struct module*
pe_load_native_module(struct process* pcs, const WCHAR* name, pe_load_native_module(struct process* pcs, const WCHAR* name,
HANDLE hFile, DWORD64 base, DWORD size); HANDLE hFile, DWORD64 base, DWORD size) DECLSPEC_HIDDEN;
extern struct module* extern struct module*
pe_load_builtin_module(struct process* pcs, const WCHAR* name, pe_load_builtin_module(struct process* pcs, const WCHAR* name,
DWORD64 base, DWORD64 size); DWORD64 base, DWORD64 size) DECLSPEC_HIDDEN;
extern BOOL pe_load_debug_info(const struct process* pcs, extern BOOL pe_load_debug_info(const struct process* pcs,
struct module* module); struct module* module) DECLSPEC_HIDDEN;
extern const char* pe_map_directory(struct module* module, int dirno, DWORD* size); extern const char* pe_map_directory(struct module* module, int dirno, DWORD* size) DECLSPEC_HIDDEN;
extern void pe_unmap_directoy(struct module* module, int dirno); extern void pe_unmap_directoy(struct module* module, int dirno) DECLSPEC_HIDDEN;
/* source.c */ /* source.c */
extern unsigned source_new(struct module* module, const char* basedir, const char* source); extern unsigned source_new(struct module* module, const char* basedir, const char* source) DECLSPEC_HIDDEN;
extern const char* source_get(const struct module* module, unsigned idx); extern const char* source_get(const struct module* module, unsigned idx) DECLSPEC_HIDDEN;
/* stabs.c */ /* stabs.c */
typedef void (*stabs_def_cb)(struct module* module, unsigned long load_offset, typedef void (*stabs_def_cb)(struct module* module, unsigned long load_offset,
@ -604,133 +604,133 @@ typedef void (*stabs_def_cb)(struct module* module, unsigned long load_offset,
extern BOOL stabs_parse(struct module* module, unsigned long load_offset, extern BOOL stabs_parse(struct module* module, unsigned long load_offset,
const void* stabs, int stablen, const void* stabs, int stablen,
const char* strs, int strtablen, const char* strs, int strtablen,
stabs_def_cb callback, void* user); stabs_def_cb callback, void* user) DECLSPEC_HIDDEN;
/* dwarf.c */ /* dwarf.c */
extern BOOL dwarf2_parse(struct module* module, unsigned long load_offset, extern BOOL dwarf2_parse(struct module* module, unsigned long load_offset,
const struct elf_thunk_area* thunks, const struct elf_thunk_area* thunks,
struct image_file_map* fmap); struct image_file_map* fmap) DECLSPEC_HIDDEN;
extern BOOL dwarf2_virtual_unwind(struct cpu_stack_walk* csw, DWORD_PTR ip, extern BOOL dwarf2_virtual_unwind(struct cpu_stack_walk* csw, DWORD_PTR ip,
CONTEXT* context, ULONG_PTR* cfa); CONTEXT* context, ULONG_PTR* cfa) DECLSPEC_HIDDEN;
/* stack.c */ /* stack.c */
extern BOOL sw_read_mem(struct cpu_stack_walk* csw, DWORD64 addr, void* ptr, DWORD sz); extern BOOL sw_read_mem(struct cpu_stack_walk* csw, DWORD64 addr, void* ptr, DWORD sz) DECLSPEC_HIDDEN;
extern DWORD64 sw_xlat_addr(struct cpu_stack_walk* csw, ADDRESS64* addr); extern DWORD64 sw_xlat_addr(struct cpu_stack_walk* csw, ADDRESS64* addr) DECLSPEC_HIDDEN;
extern void* sw_table_access(struct cpu_stack_walk* csw, DWORD64 addr); extern void* sw_table_access(struct cpu_stack_walk* csw, DWORD64 addr) DECLSPEC_HIDDEN;
extern DWORD64 sw_module_base(struct cpu_stack_walk* csw, DWORD64 addr); extern DWORD64 sw_module_base(struct cpu_stack_walk* csw, DWORD64 addr) DECLSPEC_HIDDEN;
/* symbol.c */ /* symbol.c */
extern const char* symt_get_name(const struct symt* sym); extern const char* symt_get_name(const struct symt* sym) DECLSPEC_HIDDEN;
extern BOOL symt_get_address(const struct symt* type, ULONG64* addr); extern BOOL symt_get_address(const struct symt* type, ULONG64* addr) DECLSPEC_HIDDEN;
extern int symt_cmp_addr(const void* p1, const void* p2); extern int symt_cmp_addr(const void* p1, const void* p2) DECLSPEC_HIDDEN;
extern void copy_symbolW(SYMBOL_INFOW* siw, const SYMBOL_INFO* si); extern void copy_symbolW(SYMBOL_INFOW* siw, const SYMBOL_INFO* si) DECLSPEC_HIDDEN;
extern struct symt_ht* extern struct symt_ht*
symt_find_nearest(struct module* module, DWORD_PTR addr); symt_find_nearest(struct module* module, DWORD_PTR addr) DECLSPEC_HIDDEN;
extern struct symt_compiland* extern struct symt_compiland*
symt_new_compiland(struct module* module, unsigned long address, symt_new_compiland(struct module* module, unsigned long address,
unsigned src_idx); unsigned src_idx) DECLSPEC_HIDDEN;
extern struct symt_public* extern struct symt_public*
symt_new_public(struct module* module, symt_new_public(struct module* module,
struct symt_compiland* parent, struct symt_compiland* parent,
const char* typename, const char* typename,
unsigned long address, unsigned size); unsigned long address, unsigned size) DECLSPEC_HIDDEN;
extern struct symt_data* extern struct symt_data*
symt_new_global_variable(struct module* module, symt_new_global_variable(struct module* module,
struct symt_compiland* parent, struct symt_compiland* parent,
const char* name, unsigned is_static, const char* name, unsigned is_static,
struct location loc, unsigned long size, struct location loc, unsigned long size,
struct symt* type); struct symt* type) DECLSPEC_HIDDEN;
extern struct symt_function* extern struct symt_function*
symt_new_function(struct module* module, symt_new_function(struct module* module,
struct symt_compiland* parent, struct symt_compiland* parent,
const char* name, const char* name,
unsigned long addr, unsigned long size, unsigned long addr, unsigned long size,
struct symt* type); struct symt* type) DECLSPEC_HIDDEN;
extern BOOL symt_normalize_function(struct module* module, extern BOOL symt_normalize_function(struct module* module,
const struct symt_function* func); const struct symt_function* func) DECLSPEC_HIDDEN;
extern void symt_add_func_line(struct module* module, extern void symt_add_func_line(struct module* module,
struct symt_function* func, struct symt_function* func,
unsigned source_idx, int line_num, unsigned source_idx, int line_num,
unsigned long offset); unsigned long offset) DECLSPEC_HIDDEN;
extern struct symt_data* extern struct symt_data*
symt_add_func_local(struct module* module, symt_add_func_local(struct module* module,
struct symt_function* func, struct symt_function* func,
enum DataKind dt, const struct location* loc, enum DataKind dt, const struct location* loc,
struct symt_block* block, struct symt_block* block,
struct symt* type, const char* name); struct symt* type, const char* name) DECLSPEC_HIDDEN;
extern struct symt_block* extern struct symt_block*
symt_open_func_block(struct module* module, symt_open_func_block(struct module* module,
struct symt_function* func, struct symt_function* func,
struct symt_block* block, struct symt_block* block,
unsigned pc, unsigned len); unsigned pc, unsigned len) DECLSPEC_HIDDEN;
extern struct symt_block* extern struct symt_block*
symt_close_func_block(struct module* module, symt_close_func_block(struct module* module,
const struct symt_function* func, const struct symt_function* func,
struct symt_block* block, unsigned pc); struct symt_block* block, unsigned pc) DECLSPEC_HIDDEN;
extern struct symt_hierarchy_point* extern struct symt_hierarchy_point*
symt_add_function_point(struct module* module, symt_add_function_point(struct module* module,
struct symt_function* func, struct symt_function* func,
enum SymTagEnum point, enum SymTagEnum point,
const struct location* loc, const struct location* loc,
const char* name); const char* name) DECLSPEC_HIDDEN;
extern BOOL symt_fill_func_line_info(const struct module* module, extern BOOL symt_fill_func_line_info(const struct module* module,
const struct symt_function* func, const struct symt_function* func,
DWORD64 addr, IMAGEHLP_LINE64* line); DWORD64 addr, IMAGEHLP_LINE64* line) DECLSPEC_HIDDEN;
extern BOOL symt_get_func_line_next(const struct module* module, PIMAGEHLP_LINE64 line); extern BOOL symt_get_func_line_next(const struct module* module, PIMAGEHLP_LINE64 line) DECLSPEC_HIDDEN;
extern struct symt_thunk* extern struct symt_thunk*
symt_new_thunk(struct module* module, symt_new_thunk(struct module* module,
struct symt_compiland* parent, struct symt_compiland* parent,
const char* name, THUNK_ORDINAL ord, const char* name, THUNK_ORDINAL ord,
unsigned long addr, unsigned long size); unsigned long addr, unsigned long size) DECLSPEC_HIDDEN;
extern struct symt_data* extern struct symt_data*
symt_new_constant(struct module* module, symt_new_constant(struct module* module,
struct symt_compiland* parent, struct symt_compiland* parent,
const char* name, struct symt* type, const char* name, struct symt* type,
const VARIANT* v); const VARIANT* v) DECLSPEC_HIDDEN;
extern struct symt_hierarchy_point* extern struct symt_hierarchy_point*
symt_new_label(struct module* module, symt_new_label(struct module* module,
struct symt_compiland* compiland, struct symt_compiland* compiland,
const char* name, unsigned long address); const char* name, unsigned long address) DECLSPEC_HIDDEN;
extern struct symt* symt_index2ptr(struct module* module, DWORD id); extern struct symt* symt_index2ptr(struct module* module, DWORD id) DECLSPEC_HIDDEN;
extern DWORD symt_ptr2index(struct module* module, const struct symt* sym); extern DWORD symt_ptr2index(struct module* module, const struct symt* sym) DECLSPEC_HIDDEN;
/* type.c */ /* type.c */
extern void symt_init_basic(struct module* module); extern void symt_init_basic(struct module* module) DECLSPEC_HIDDEN;
extern BOOL symt_get_info(struct module* module, const struct symt* type, extern BOOL symt_get_info(struct module* module, const struct symt* type,
IMAGEHLP_SYMBOL_TYPE_INFO req, void* pInfo); IMAGEHLP_SYMBOL_TYPE_INFO req, void* pInfo) DECLSPEC_HIDDEN;
extern struct symt_basic* extern struct symt_basic*
symt_new_basic(struct module* module, enum BasicType, symt_new_basic(struct module* module, enum BasicType,
const char* typename, unsigned size); const char* typename, unsigned size) DECLSPEC_HIDDEN;
extern struct symt_udt* extern struct symt_udt*
symt_new_udt(struct module* module, const char* typename, symt_new_udt(struct module* module, const char* typename,
unsigned size, enum UdtKind kind); unsigned size, enum UdtKind kind) DECLSPEC_HIDDEN;
extern BOOL symt_set_udt_size(struct module* module, extern BOOL symt_set_udt_size(struct module* module,
struct symt_udt* type, unsigned size); struct symt_udt* type, unsigned size) DECLSPEC_HIDDEN;
extern BOOL symt_add_udt_element(struct module* module, extern BOOL symt_add_udt_element(struct module* module,
struct symt_udt* udt_type, struct symt_udt* udt_type,
const char* name, const char* name,
struct symt* elt_type, unsigned offset, struct symt* elt_type, unsigned offset,
unsigned size); unsigned size) DECLSPEC_HIDDEN;
extern struct symt_enum* extern struct symt_enum*
symt_new_enum(struct module* module, const char* typename, symt_new_enum(struct module* module, const char* typename,
struct symt* basetype); struct symt* basetype) DECLSPEC_HIDDEN;
extern BOOL symt_add_enum_element(struct module* module, extern BOOL symt_add_enum_element(struct module* module,
struct symt_enum* enum_type, struct symt_enum* enum_type,
const char* name, int value); const char* name, int value) DECLSPEC_HIDDEN;
extern struct symt_array* extern struct symt_array*
symt_new_array(struct module* module, int min, int max, symt_new_array(struct module* module, int min, int max,
struct symt* base, struct symt* index); struct symt* base, struct symt* index) DECLSPEC_HIDDEN;
extern struct symt_function_signature* extern struct symt_function_signature*
symt_new_function_signature(struct module* module, symt_new_function_signature(struct module* module,
struct symt* ret_type, struct symt* ret_type,
enum CV_call_e call_conv); enum CV_call_e call_conv) DECLSPEC_HIDDEN;
extern BOOL symt_add_function_signature_parameter(struct module* module, extern BOOL symt_add_function_signature_parameter(struct module* module,
struct symt_function_signature* sig, struct symt_function_signature* sig,
struct symt* param); struct symt* param) DECLSPEC_HIDDEN;
extern struct symt_pointer* extern struct symt_pointer*
symt_new_pointer(struct module* module, symt_new_pointer(struct module* module,
struct symt* ref_type, struct symt* ref_type,
unsigned long size); unsigned long size) DECLSPEC_HIDDEN;
extern struct symt_typedef* extern struct symt_typedef*
symt_new_typedef(struct module* module, struct symt* ref, symt_new_typedef(struct module* module, struct symt* ref,
const char* name); const char* name) DECLSPEC_HIDDEN;

View File

@ -116,18 +116,18 @@ struct image_section_map
}; };
extern BOOL elf_find_section(struct image_file_map* fmap, const char* name, extern BOOL elf_find_section(struct image_file_map* fmap, const char* name,
unsigned sht, struct image_section_map* ism); unsigned sht, struct image_section_map* ism) DECLSPEC_HIDDEN;
extern const char* elf_map_section(struct image_section_map* ism); extern const char* elf_map_section(struct image_section_map* ism) DECLSPEC_HIDDEN;
extern void elf_unmap_section(struct image_section_map* ism); extern void elf_unmap_section(struct image_section_map* ism) DECLSPEC_HIDDEN;
extern DWORD_PTR elf_get_map_rva(const struct image_section_map* ism); extern DWORD_PTR elf_get_map_rva(const struct image_section_map* ism) DECLSPEC_HIDDEN;
extern unsigned elf_get_map_size(const struct image_section_map* ism); extern unsigned elf_get_map_size(const struct image_section_map* ism) DECLSPEC_HIDDEN;
extern BOOL pe_find_section(struct image_file_map* fmap, const char* name, extern BOOL pe_find_section(struct image_file_map* fmap, const char* name,
struct image_section_map* ism); struct image_section_map* ism) DECLSPEC_HIDDEN;
extern const char* pe_map_section(struct image_section_map* psm); extern const char* pe_map_section(struct image_section_map* psm) DECLSPEC_HIDDEN;
extern void pe_unmap_section(struct image_section_map* psm); extern void pe_unmap_section(struct image_section_map* psm) DECLSPEC_HIDDEN;
extern DWORD_PTR pe_get_map_rva(const struct image_section_map* psm); extern DWORD_PTR pe_get_map_rva(const struct image_section_map* psm) DECLSPEC_HIDDEN;
extern unsigned pe_get_map_size(const struct image_section_map* psm); extern unsigned pe_get_map_size(const struct image_section_map* psm) DECLSPEC_HIDDEN;
static inline BOOL image_find_section(struct image_file_map* fmap, const char* name, static inline BOOL image_find_section(struct image_file_map* fmap, const char* name,
struct image_section_map* ism) struct image_section_map* ism)