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
5f6419fa
Commit
5f6419fa
authored
Apr 13, 2000
by
Eric Pouech
Committed by
Alexandre Julliard
Apr 13, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Got rid of -debug wine's option (wine now requires an external debugger).
parent
02ee9dda
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1 addition
and
24 deletions
+1
-24
wine.man.in
documentation/wine.man.in
+0
-3
options.h
include/options.h
+0
-1
main.c
misc/main.c
+0
-1
options.c
misc/options.c
+0
-9
main.c
miscemu/main.c
+1
-10
No files found.
documentation/wine.man.in
View file @
5f6419fa
...
...
@@ -101,9 +101,6 @@ file contained in the source distribution.
Use the named configuration file rather than the default
(@sysconfdir@/wine.conf or ~/.winerc).
.TP
.I --debug
Enter the debugger before starting application.
.TP
.I --debugmsg [xxx]#name[,[xxx1]#name1][,<+|->relay=yyy1[:yyy2]]
Turn debugging messages on or off.
.RS +7
...
...
include/options.h
View file @
5f6419fa
...
...
@@ -61,7 +61,6 @@ struct options
char
*
display
;
/* display name */
char
*
dllFlags
;
/* -dll flags (hack for Winelib support) */
int
synchronous
;
/* X synchronous mode */
int
debug
;
WINE_LANGUAGE
language
;
/* Current language */
int
managed
;
/* Managed windows */
char
*
configFileName
;
/* Command line config file */
...
...
misc/main.c
View file @
5f6419fa
...
...
@@ -89,7 +89,6 @@ struct options Options =
NULL
,
/* display */
NULL
,
/* dllFlags */
FALSE
,
/* synchronous */
FALSE
,
/* debug */
0
,
/* language */
FALSE
,
/* Managed windows */
NULL
/* Alternate config file name */
...
...
misc/options.c
View file @
5f6419fa
...
...
@@ -23,11 +23,9 @@ struct option
};
static
void
do_config
(
const
char
*
arg
);
static
void
do_debug
(
const
char
*
arg
);
static
void
do_desktop
(
const
char
*
arg
);
static
void
do_display
(
const
char
*
arg
);
static
void
do_dll
(
const
char
*
arg
);
static
void
do_failreadonly
(
const
char
*
arg
);
static
void
do_help
(
const
char
*
arg
);
static
void
do_managed
(
const
char
*
arg
);
static
void
do_synchronous
(
const
char
*
arg
);
...
...
@@ -37,8 +35,6 @@ static const struct option option_table[] =
{
{
"config"
,
0
,
1
,
do_config
,
"--config name Specify config file to use"
},
{
"debug"
,
0
,
0
,
do_debug
,
"--debug Enter debugger before starting application"
},
{
"debugmsg"
,
0
,
1
,
MAIN_ParseDebugOptions
,
"--debugmsg name Turn debugging-messages on or off"
},
{
"desktop"
,
0
,
1
,
do_desktop
,
...
...
@@ -82,11 +78,6 @@ static void do_synchronous( const char *arg )
Options
.
synchronous
=
TRUE
;
}
static
void
do_debug
(
const
char
*
arg
)
{
Options
.
debug
=
TRUE
;
}
static
void
do_desktop
(
const
char
*
arg
)
{
Options
.
desktopGeometry
=
strdup
(
arg
);
...
...
miscemu/main.c
View file @
5f6419fa
...
...
@@ -18,18 +18,9 @@
#include "wine/exception.h"
#include "debugtools.h"
extern
DWORD
DEBUG_WinExec
(
LPCSTR
lpCmdLine
,
int
sw
);
static
BOOL
exec_program
(
LPCSTR
cmdline
)
{
HINSTANCE
handle
;
if
(
Options
.
debug
)
handle
=
DEBUG_WinExec
(
cmdline
,
SW_SHOWNORMAL
);
else
handle
=
WinExec
(
cmdline
,
SW_SHOWNORMAL
);
HINSTANCE
handle
=
WinExec
(
cmdline
,
SW_SHOWNORMAL
);
if
(
handle
<
32
)
{
MESSAGE
(
"%s: can't exec '%s': "
,
argv0
,
cmdline
);
...
...
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