kernel: Make sure the file contains data for the ReadFile test.
[wine/multimedia.git] / tools / winedump / winedump.man.in
blob19fd8de446bcbc8bfc2b07e032d04fae0f2e70bd
1 .\" -*- nroff -*-
2 .TH WINEDUMP 1 "October 2005" "@PACKAGE_STRING@" "Wine Developers Manual"
3 .SH NAME
4 winedump \- A Wine DLL tool
5 .SH SYNOPSIS
6 .BR "winedump " [ "-h " "| "
7 .BI "sym " "<sym> "
9 .BI "spec " "<dll> "
11 .BI "dump " "<dll>"
12 .RI "] [" "mode_options" ]
13 .SH DESCRIPTION
14 .B winedump
15 is a Wine tool which aims to help:
16 .nf
17 A: Reimplementing a Win32 DLL for use within Wine, or
18 .nf
19 B: Compiling a Win32 application with Winelib that uses x86 DLLs
20 .PP
21 For both tasks in order to be able to link to the Win functions some
22 glue code is needed.  This 'glue' comes in the form of a \fI.spec\fR file.
23 The \fI.spec\fR file, along with some dummy code, is used to create a
24 Wine .so corresponding to the Windows DLL.  The \fBwinebuild\fR program
25 can then resolve calls made to DLL functions.
26 .PP
27 Creating a \fI.spec\fR file is a labour intensive task during which it is
28 easy to make a mistake. The idea of \fBwinedump\fR is to automate this task
29 and create the majority of the support code needed for your DLL. In
30 addition you can have \fBwinedump\fR create code to help you re-implement a
31 DLL, by providing tracing of calls to the DLL, and (in some cases)
32 automatically determining the parameters, calling conventions, and
33 return values of the DLL's functions.
34 .PP
35 Another use for this tool is to display (dump) information about a 32bit
36 DLL or PE format image file. When used in this way \fBwinedump\fR functions
37 similarly to tools such as pedump provided by many Win32 compiler
38 vendors.
39 .PP
40 Finally \fBwinedump\fR can be also used to demangle C++ symbols.
41 .SH MODES
42 .B winedump
43 can be used in several different modes.  The first argument to the
44 program determines the mode winedump will run in.
45 .IP \fB-h\fR
46 Help mode.
47 Basic usage help is printed.
48 .IP \fBdump\fR
49 To dump the contents of a PE file.
50 .IP \fBspec\fR
51 For generating .spec files and stub DLLs.
52 .IP \fBsym\fR
53 Symbol mode.
54 Used to demangle C++ symbols.
55 .SH OPTIONS
56 Mode options depend on the mode given as the first argument.
57 .PP
58 .B Help mode:
59 .nf
60 No options are used.
61 The program prints the help info and than exits.
62 .PP
63 .B Dump mode:
64 .IP \fI<dll>\fR
65 Dumps the content of the dll named \fI<dll>\fR.
66 .IP \fB-C\fR
67 Turns on symbol demangling.
68 .IP \fB-f\fR
69 Dumps file header information.
70 This option dumps only the standard PE header structures,
71 along with the COFF sections available in the file.
72 .IP "\fB-j \fIsect_name\fR"
73 Dumps only the content of section sect_name (import,
74 export, debug).
75 To dump only a given directory, specify them using this
76 option. Currently only the import, export and debug
77 directories are implemented.
78 .IP \fB-x\fR
79 Dumps everything.
80 This command prints all available information about the
81 file. You may wish to pipe the output through more/less or
82 into a file, since a lot of output will be produced.
83 .PP
84 .B Spec mode:
85 .IP \fI<dll>\fR
86 Use dll for input file and generate implementation code.
87 .IP "\fB-I \fIdir\fR"
88 Look for prototypes in '\fIdir\fR' (implies \fB-c\fR). In the case of
89 Windows DLLs, this could be either the standard include
90 directory from your compiler, or a SDK include directory.
91 If you have a text document with prototypes (such as
92 documentation) that can be used also, however you may need
93 to delete some non-code lines to ensure that prototypes are
94 parsed correctly.
95 The '\fIdir\fR' argument can also be a file specification (e.g.
96 "include/*"). If it contains wildcards you must quote it to
97 prevent the shell from expanding it.
98 If you have no prototypes, specify /dev/null for '\fIdir\fR'.
99 Winedump may still be able to generate some working stub
100 code for you.
101 .IP \fB-c\fR
102 Generate skeleton code (requires \fB-I\fR).
103 This option tells winedump to create function stubs for each
104 function in the DLL. As winedump reads each exported symbol
105 from the source DLL, it first tries to demangle the name. If
106 the name is a C++ symbol, the arguments, class and return
107 value are all encoded into the symbol name. Winedump
108 converts this information into a C function prototype. If
109 this fails, the file(s) specified in the \fB-I\fR argument are
110 scanned for a function prototype. If one is found it is used
111 for the next step of the process, code generation.
112 .IP \fB-t\fR
113 TRACE arguments (implies \fB-c\fR).
114 This option produces the same code as \fB-c\fR, except that
115 arguments are printed out when the function is called.
116 Structs that are passed by value are printed as "struct",
117 and functions that take variable argument lists print "...".
118 .IP "\fB-f \fIdll\fR"
119 Forward calls to '\fIdll\fR' (implies \fB-t\fR).
120 This is the most complicated level of code generation. The
121 same code is generated as \fB-t\fR, however support is added for
122 forwarding calls to another DLL. The DLL to forward to is
123 given as '\fIdll\fR'.
124 .IP \fB-D\fR
125 Generate documentation.
126 By default, winedump generates a standard comment at the
127 header of each function it generates. Passing this option
128 makes winedump output a full header template for standard
129 Wine documentation, listing the parameters and return value
130 of the function.
131 .IP "\fB-o \fIname\fR"
132 Set the output dll name (default: \fIdll\fR).
133 By default, if winedump is run on DLL 'foo', it creates
134 files 'foo.spec', 'foo_main.c' etc, and prefixes any
135 functions generated with 'FOO_'.  If '-o bar' is given,
136 these will become 'bar.spec', 'bar_main.c' and 'BAR_'
137 respectively.
138 This option is mostly useful when generating a forwarding DLL.
139 .IP \fB-C\fR
140 Assume __cdecl calls (default: __stdcall).
141 If winebuild cannot determine the calling convention,
142 __stdcall is used by default, unless this option has
143 been given.
144 Unless \fB-q\fR is given, a warning will be printed for every
145 function that winedump determines the calling convention
146 for and which does not match the assumed calling convention.
147 .IP "\fB-s \fInum\fR"
148 Start prototype search after symbol '\fInum\fR'.
149 .IP "\fB-e \fInum\fR"
150 End prototype search after symbol '\fInum\fR'.
151 By passing the \fB-s\fR or \fB-e\fR options you can have winedump try to
152 generate code for only some functions in your DLL. This may
153 be used to generate a single function, for example, if you
154 wanted to add functionality to an existing DLL.
155 .IP "\fB-S \fIsymfile\fR"
156 Search only prototype names found in '\fIsymfile\fR'.
157 If you want to only generate code for a subset of exported
158 functions from your source DLL, you can use this option to
159 provide a text file containing the names of the symbols to
160 extract, one per line. Only the symbols present in this file
161 will be used in your output DLL.
162 .IP \fB-q\fR
163 Don't show progress (quiet).
164 No output is printed unless a fatal error is encountered.
165 .IP \fB-v\fR
166 Show lots of detail while working (verbose).
167 There are 3 levels of output while winedump is running. The
168 default level, when neither -q or -v are given, prints the
169 number of exported functions found in the dll, followed by
170 the name of each function as it is processed, and a status
171 indication of whether it was processed OK.  With -v given, a
172 lot of information is dumped while winedump works: this is
173 intended to help debug any problems.
175 .B Sym mode:
176 .IP \fI<sym>\fR
177 Demangles C++ symbol '\fI<sym>\fR' and then exits.
178 .SH FILES
179 .I function_grep.pl
181 Perl script used to retrieve a function prototype.
184 Files output in
185 .B spec mode
187 .I foo.dll:
189 .I foo.spec
191 This is the .spec file.
193 .I foo_dll.h
195 .I foo_main.c
197 These are the source code files containing the minimum set
198 of code to build a stub DLL. The C file contains one
199 function, FOO_Init, which does nothing (but must be
200 present).
202 .I Makefile.in
204 This is a template for 'configure' to produce a makefile. It
205 is designed for a DLL that will be inserted into the Wine
206 source tree.
208 .I foo_install
210 A shell script for adding
211 .I foo
212 to the Wine source tree.
213 .SH BUGS
214 C++ name demangling is currently under development. Since the
215 algorithm used is not documented, it must be decoded. Many simple
216 prototypes are already working however.
217 .SH AUTHORS
218 Jon P. Griffiths <jon_p_griffiths at yahoo dot com>
220 Michael Stefaniuc <mstefani at redhat dot com>
221 .SH "SEE ALSO"
222 .BR winedump "'s README file"
224 The Winelib User Guide
226 The Wine Developers Guide