Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
80b09ccf
Commit
80b09ccf
authored
Nov 29, 2006
by
Eric Pouech
Committed by
Alexandre Julliard
Nov 30, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedump: Header file pe.h is useless, get rid of it.
parent
afe309b7
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
28 deletions
+4
-28
debug.c
tools/winedump/debug.c
+0
-1
dump.c
tools/winedump/dump.c
+0
-1
pe.c
tools/winedump/pe.c
+0
-1
pe.h
tools/winedump/pe.h
+0
-24
winedump.h
tools/winedump/winedump.h
+4
-1
No files found.
tools/winedump/debug.c
View file @
80b09ccf
...
...
@@ -44,7 +44,6 @@
#include "windef.h"
#include "winbase.h"
#include "winedump.h"
#include "pe.h"
#include "cvinclude.h"
/*
...
...
tools/winedump/dump.c
View file @
80b09ccf
...
...
@@ -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
;
...
...
tools/winedump/pe.c
View file @
80b09ccf
...
...
@@ -44,7 +44,6 @@
#include "windef.h"
#include "winbase.h"
#include "winedump.h"
#include "pe.h"
static
const
IMAGE_NT_HEADERS32
*
PE_nt_headers
;
...
...
tools/winedump/pe.h
deleted
100644 → 0
View file @
afe309b7
/*
* 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
);
tools/winedump/winedump.h
View file @
80b09ccf
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment