Module: wine Branch: master Commit: 9738f40e792838bbca71a6bc6dfa453608378cf6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=9738f40e792838bbca71a6bc6d...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Sat Aug 28 16:43:20 2010 +0100
dbghelp: Remove unused functions.
---
dlls/dbghelp/pe_module.c | 11 ----------- 1 files changed, 0 insertions(+), 11 deletions(-)
diff --git a/dlls/dbghelp/pe_module.c b/dlls/dbghelp/pe_module.c index d41cdf4..1a41f94 100644 --- a/dlls/dbghelp/pe_module.c +++ b/dlls/dbghelp/pe_module.c @@ -463,17 +463,6 @@ static BOOL pe_load_coff_symbol_table(struct module* module) return TRUE; }
-static inline void* pe_get_sect(IMAGE_NT_HEADERS* nth, void* mapping, - IMAGE_SECTION_HEADER* sect) -{ - return (sect) ? RtlImageRvaToVa(nth, mapping, sect->VirtualAddress, NULL) : NULL; -} - -static inline DWORD pe_get_sect_size(IMAGE_SECTION_HEADER* sect) -{ - return (sect) ? sect->SizeOfRawData : 0; -} - /****************************************************************** * pe_load_stabs *