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
ec2d618c
Commit
ec2d618c
authored
Apr 20, 2004
by
Ivan Leo Murray-Smith
Committed by
Alexandre Julliard
Apr 20, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace --debugmsg with WINEDEBUG.
parent
552dae7b
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
22 additions
and
22 deletions
+22
-22
configuring.sgml
documentation/configuring.sgml
+8
-8
debugging.sgml
documentation/debugging.sgml
+10
-10
implementation.sgml
documentation/implementation.sgml
+1
-1
opengl.sgml
documentation/opengl.sgml
+1
-1
winelib-bindlls.sgml
documentation/winelib-bindlls.sgml
+2
-2
No files found.
documentation/configuring.sgml
View file @
ec2d618c
...
...
@@ -662,8 +662,8 @@
are
all
optional
and
you
probably
don
't need to add or
remove anything in this section to your config.</emphasis> (In extreme
cases you may want to use these options to manage the amount
of information generated by
the <parameter>--debugmsg
+relay
</parameter>
option.
)
of information generated by
<parameter>WINEDEBUG=
+relay
</parameter> )
</para>
<para>
<programlisting>"File" = "/blanco"</programlisting>
...
...
@@ -683,13 +683,13 @@
<para>
<programlisting>"RelayInclude" = "user32.CreateWindowA;comctl32.*"</programlisting>
Include only the listed functions in a
<parameter>
--debugmsg
+relay</parameter> trace. This entry is
<parameter>
WINEDEBUG=
+relay</parameter> trace. This entry is
ignored if there is a <parameter>RelayExclude</parameter> entry.
</para>
<para>
<programlisting>"RelayExclude" = "RtlEnterCriticalSection;RtlLeaveCriticalSection"</programlisting>
Exclude the listed functions in a
<parameter>
--debugmsg
+relay</parameter> trace. This entry
<parameter>
WINEDEBUG=
+relay</parameter> trace. This entry
overrides any settings in a <parameter>RelayInclude</parameter>
entry. If neither entry is present then the trace includes
everything.
...
...
@@ -1277,8 +1277,8 @@ And here is a setup for Drive A, a generic floppy drive:
<itemizedlist>
<listitem>
<para>
Run the program with <parameter>
--debugmsg
+loaddll</parameter>
to find out which files are
Run the program with <parameter>
WINEDEBUG=+loaddll</parameter>
to find out which files are
needed. Copy the required DLLs one by one to the
<filename>C:\windows\system</filename> directory. Do not
copy KERNEL/KERNEL32, GDI/GDI32, USER/USER32 or NTDLL. These
...
...
@@ -1698,8 +1698,8 @@ And here is a setup for Drive A, a generic floppy drive:
<para>
A very useful help to find out which DLLs are loaded as built-in and
which are loaded as native Windows file can be the debug channel
loaddll, activated via the
Wine command line parameter
<command>
--debugmsg
+loaddll</command>.
loaddll, activated via the
environment variable
<command>
WINEDEBUG=
+loaddll</command>.
</para>
</sect2>
...
...
documentation/debugging.sgml
View file @
ec2d618c
...
...
@@ -230,10 +230,10 @@ HANDLE32 WINAPI YourFunc(LPCSTR s)
</para>
<para>
The <parameter>
--debugmsg</parameter> command lin
e
option
controls the output of the debug messages.
The <parameter>
WINEDEBUG</parameter> environment variabl
e
controls the output of the debug messages.
It has the following syntax:
<parameter>
--debugmsg
[yyy]#xxx[,[yyy1]#xxx1]*</parameter>
<parameter>
WINEDEBUG=
[yyy]#xxx[,[yyy1]#xxx1]*</parameter>
</para>
<itemizedlist>
<listitem>
...
...
@@ -252,7 +252,7 @@ HANDLE32 WINAPI YourFunc(LPCSTR s)
on all classes. For example:
</para>
<programlisting>
--debugmsg
+reg,-file
WINEDEBUG=
+reg,-file
</programlisting>
<para>
enables all messages on the <literal>reg</literal>
...
...
@@ -269,7 +269,7 @@ HANDLE32 WINAPI YourFunc(LPCSTR s)
only on the given class. For example:
</para>
<programlisting>
--debugmsg
trace+reg,warn-file
WINEDEBUG=
trace+reg,warn-file
</programlisting>
<para>
enables trace messages on the <literal>reg</literal>
...
...
@@ -283,18 +283,18 @@ HANDLE32 WINAPI YourFunc(LPCSTR s)
has the intuitive semantics:
</para>
<screen>
--debugmsg
+all -- enables all debug messages
--debugmsg
-all -- disables all debug messages
--debugmsg
yyy+all -- enables debug messages for class yyy on all
WINEDEBUG=
+all -- enables all debug messages
WINEDEBUG=
-all -- disables all debug messages
WINEDEBUG=
yyy+all -- enables debug messages for class yyy on all
channels.
--debugmsg
yyy-all -- disables debug messages for class yyy on all
WINEDEBUG=
yyy-all -- disables debug messages for class yyy on all
channels.
</screen>
<para>
So, for example:
</para>
<screen>
--debugmsg
warn-all -- disables all warning messages.
WINEDEBUG=
warn-all -- disables all warning messages.
</screen>
</listitem>
</itemizedlist>
...
...
documentation/implementation.sgml
View file @
ec2d618c
...
...
@@ -122,7 +122,7 @@ After you have added your table, recompile Wine and test that
it works. If it fails to detect your table, try running
</para>
<screen>
wine --debugmsg +key,+keyboard >& key.log
WINEDEBUG=+key,+keyboard wine > key.log 2>&1
</screen>
<para>
and look in the resulting <filename>key.log</filename> file to
...
...
documentation/opengl.sgml
View file @
ec2d618c
...
...
@@ -306,7 +306,7 @@ Please report (lionel.ulmer@free.fr) !
</para>
<para>
If you have this, run with <parameter>
--debugmsg
+opengl</parameter>
If you have this, run with <parameter>
WINEDEBUG=
+opengl</parameter>
and send me <email>lionel.ulmer@free.fr</email> the TRACE.
</para>
</sect2>
...
...
documentation/winelib-bindlls.sgml
View file @
ec2d618c
...
...
@@ -267,8 +267,8 @@ signed short WINAPI MyProxyWinFunc (unsigned short a, void *b, void *c,
</para>
<para>
Once you have done this you should be using the Linux Shared Object
successfully. If you have problems then
use the --debugmsg
+module
options to
wine to see what is actually happening.
successfully. If you have problems then
set the WINEDEBUG=
+module
environment variable before running
wine to see what is actually happening.
</para>
</sect1>
...
...
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