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
36eed034
Commit
36eed034
authored
May 03, 2001
by
Eric Pouech
Committed by
Alexandre Julliard
May 03, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a small section about expressions in winedbg.
parent
c9cf68d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
0 deletions
+32
-0
debugger.sgml
documentation/debugger.sgml
+32
-0
No files found.
documentation/debugger.sgml
View file @
36eed034
...
...
@@ -1337,6 +1337,11 @@ watch <id> adds a watch command (on write) at the address of
symbol <id>
info break lists all (break|watch)points (with state)
</screen>
<para>
When setting a breakpoint on an <id>, if several symbols with this
<id> exist, the debugger will prompt for the symbol you want to use.
Pick up the one you want from its number.
</para>
</sect2>
<sect2>
...
...
@@ -1470,6 +1475,33 @@ c => character (only printable 0x20-0x7f are actually
b => 8 bit unsigned hexadecimal integer
</screen>
</sect2>
<sect2>
<title>Expressions</title>
<para>
Expressions in Wine Debugger are mostly written in a C form. However, there
are a few discrepancies:
<itemizedlist>
<listitem>
<para>
Identifiers can take a '.' in their names. This allow mainly to access symbols
from different DLLs like USER32.DLL.CreateWindowA
</para>
</listitem>
<listitem>
<para>
Because of previous rule, fields access from a struct must be written as:
<screen>
my_struct . my_field
</screen>
(note the spaces after and before the dot).
</para>
</listitem>
</itemizedlist>
</para>
</sect2>
</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