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
ee681d5a
Commit
ee681d5a
authored
Dec 03, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Dec 04, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedump: Make usage message more consistent.
Using infinitives, <arg> for option arguments.
parent
3af42ea7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
24 deletions
+24
-24
main.c
tools/winedump/main.c
+24
-24
No files found.
tools/winedump/main.c
View file @
ee681d5a
...
...
@@ -207,30 +207,30 @@ struct my_option
};
static
const
struct
my_option
option_table
[]
=
{
{
"--help"
,
NONE
,
0
,
do_usage
,
"--help Display this help message"
},
{
"-h"
,
NONE
,
0
,
do_usage
,
"-h Synonym for --help"
},
{
"-?"
,
NONE
,
0
,
do_usage
,
"-? Synonym for --help"
},
{
"sym"
,
DMGL
,
0
,
do_demangle
,
"sym <sym> Demangle C++ symbol <sym> and exit"
},
{
"spec"
,
SPEC
,
0
,
do_spec
,
"spec <dll>
Use dll
for input file and generate implementation code"
},
{
"-I"
,
SPEC
,
1
,
do_include
,
"-I
dir
Look for prototypes in 'dir' (implies -c)"
},
{
"-c"
,
SPEC
,
0
,
do_code
,
"-c Generate skeleton code (requires -I)"
},
{
"-t"
,
SPEC
,
0
,
do_trace
,
"-t TRACE arguments (implies -c)"
},
{
"-f"
,
SPEC
,
1
,
do_forward
,
"-f
dll
Forward calls to 'dll' (implies -t)"
},
{
"-D"
,
SPEC
,
0
,
do_document
,
"-D Generate documentation"
},
{
"-o"
,
SPEC
,
1
,
do_name
,
"-o
name Set the output dll name (default: dll). n
ote: strips .dll extensions"
},
{
"-C"
,
SPEC
,
0
,
do_cdecl
,
"-C Assume __cdecl calls (default: __stdcall)"
},
{
"-s"
,
SPEC
,
1
,
do_start
,
"-s
num
Start prototype search after symbol 'num'"
},
{
"-e"
,
SPEC
,
1
,
do_end
,
"-e
num
End prototype search after symbol 'num'"
},
{
"-S"
,
SPEC
,
1
,
do_symfile
,
"-S
symfile
Search only prototype names found in 'symfile'"
},
{
"-q"
,
SPEC
,
0
,
do_quiet
,
"-q Don't show progress (quiet)."
},
{
"-v"
,
SPEC
,
0
,
do_verbose
,
"-v Show lots of detail while working (verbose)."
},
{
"dump"
,
DUMP
,
0
,
do_dump
,
"dump <file>
Dumps the contents of a file
(dll, exe, lib...)"
},
{
"-C"
,
DUMP
,
0
,
do_symdmngl
,
"-C
Turns
on symbol demangling"
},
{
"-f"
,
DUMP
,
0
,
do_dumphead
,
"-f
Dumps
file header information"
},
{
"-G"
,
DUMP
,
0
,
do_rawdebug
,
"-G
Dumps
raw debug information"
},
{
"-j"
,
DUMP
,
1
,
do_dumpsect
,
"-j
sect_name Dumps only the content of section sect_name
(import, export, debug, resource, tls, clr, reloc, except)"
},
{
"-t"
,
DUMP
,
0
,
do_symtable
,
"-t
Dumps
symbol table"
},
{
"-x"
,
DUMP
,
0
,
do_dumpall
,
"-x
Dumps
everything"
},
{
"--help"
,
NONE
,
0
,
do_usage
,
"--help
Display this help message"
},
{
"-h"
,
NONE
,
0
,
do_usage
,
"-h
Synonym for --help"
},
{
"-?"
,
NONE
,
0
,
do_usage
,
"-?
Synonym for --help"
},
{
"sym"
,
DMGL
,
0
,
do_demangle
,
"sym <sym>
Demangle C++ symbol <sym> and exit"
},
{
"spec"
,
SPEC
,
0
,
do_spec
,
"spec <dll>
Use 'dll'
for input file and generate implementation code"
},
{
"-I"
,
SPEC
,
1
,
do_include
,
"-I
<dir>
Look for prototypes in 'dir' (implies -c)"
},
{
"-c"
,
SPEC
,
0
,
do_code
,
"-c
Generate skeleton code (requires -I)"
},
{
"-t"
,
SPEC
,
0
,
do_trace
,
"-t
TRACE arguments (implies -c)"
},
{
"-f"
,
SPEC
,
1
,
do_forward
,
"-f
<dll>
Forward calls to 'dll' (implies -t)"
},
{
"-D"
,
SPEC
,
0
,
do_document
,
"-D
Generate documentation"
},
{
"-o"
,
SPEC
,
1
,
do_name
,
"-o
<name> Set the output dll name (default: dll). N
ote: strips .dll extensions"
},
{
"-C"
,
SPEC
,
0
,
do_cdecl
,
"-C
Assume __cdecl calls (default: __stdcall)"
},
{
"-s"
,
SPEC
,
1
,
do_start
,
"-s
<num>
Start prototype search after symbol 'num'"
},
{
"-e"
,
SPEC
,
1
,
do_end
,
"-e
<num>
End prototype search after symbol 'num'"
},
{
"-S"
,
SPEC
,
1
,
do_symfile
,
"-S
<symfile>
Search only prototype names found in 'symfile'"
},
{
"-q"
,
SPEC
,
0
,
do_quiet
,
"-q
Don't show progress (quiet)."
},
{
"-v"
,
SPEC
,
0
,
do_verbose
,
"-v
Show lots of detail while working (verbose)."
},
{
"dump"
,
DUMP
,
0
,
do_dump
,
"dump <file>
Dump the contents of 'file'
(dll, exe, lib...)"
},
{
"-C"
,
DUMP
,
0
,
do_symdmngl
,
"-C
Turn
on symbol demangling"
},
{
"-f"
,
DUMP
,
0
,
do_dumphead
,
"-f
Dump
file header information"
},
{
"-G"
,
DUMP
,
0
,
do_rawdebug
,
"-G
Dump
raw debug information"
},
{
"-j"
,
DUMP
,
1
,
do_dumpsect
,
"-j
<sect_name> Dump only the content of section 'sect_name'
(import, export, debug, resource, tls, clr, reloc, except)"
},
{
"-t"
,
DUMP
,
0
,
do_symtable
,
"-t
Dump
symbol table"
},
{
"-x"
,
DUMP
,
0
,
do_dumpall
,
"-x
Dump
everything"
},
{
NULL
,
NONE
,
0
,
NULL
,
NULL
}
};
...
...
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