winedump: Header file pe.h is useless, get rid of it.

This commit is contained in:
Eric Pouech 2006-11-29 21:40:08 +01:00 committed by Alexandre Julliard
parent afe309b7d9
commit 80b09ccf4c
5 changed files with 4 additions and 28 deletions

View File

@ -44,7 +44,6 @@
#include "windef.h"
#include "winbase.h"
#include "winedump.h"
#include "pe.h"
#include "cvinclude.h"
/*

View File

@ -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;

View File

@ -44,7 +44,6 @@
#include "windef.h"
#include "winbase.h"
#include "winedump.h"
#include "pe.h"
static const IMAGE_NT_HEADERS32* PE_nt_headers;

View File

@ -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);

View File

@ -245,6 +245,9 @@ void dbg_dump( void );
void pe_dump( void );
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);