winedump: Header file pe.h is useless, get rid of it.
This commit is contained in:
parent
afe309b7d9
commit
80b09ccf4c
|
@ -44,7 +44,6 @@
|
|||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "winedump.h"
|
||||
#include "pe.h"
|
||||
#include "cvinclude.h"
|
||||
|
||||
/*
|
||||
|
|
|
@ -44,7 +44,6 @@
|
|||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "winedump.h"
|
||||
#include "pe.h"
|
||||
|
||||
static void* dump_base;
|
||||
static unsigned long dump_total_len;
|
||||
|
|
|
@ -44,7 +44,6 @@
|
|||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "winedump.h"
|
||||
#include "pe.h"
|
||||
|
||||
static const IMAGE_NT_HEADERS32* PE_nt_headers;
|
||||
|
||||
|
|
|
@ -1,24 +0,0 @@
|
|||
/*
|
||||
* PE dumping utility
|
||||
*
|
||||
* Copyright 2001 Eric Pouech
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
extern void dump_codeview(unsigned long ptr, unsigned long len);
|
||||
extern void dump_coff(unsigned long coffbase, unsigned long len, const void* sect_map);
|
||||
extern void dump_frame_pointer_omission(unsigned long base, unsigned long len);
|
||||
|
|
@ -244,7 +244,10 @@ void lib_dump( const char *lib_base, unsigned long lib_size );
|
|||
void dbg_dump( void );
|
||||
void pe_dump( void );
|
||||
|
||||
void dump_stabs(const void* pv_stabs, unsigned szstabs, const char* stabstr, unsigned szstr);
|
||||
void dump_stabs(const void* pv_stabs, unsigned szstabs, const char* stabstr, unsigned szstr);
|
||||
void dump_codeview(unsigned long ptr, unsigned long len);
|
||||
void dump_coff(unsigned long coffbase, unsigned long len, const void* sect_map);
|
||||
void dump_frame_pointer_omission(unsigned long base, unsigned long len);
|
||||
|
||||
FILE *open_file (const char *name, const char *ext, const char *mode);
|
||||
|
||||
|
|
Loading…
Reference in New Issue