We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
If you need to see the return value of a function such as:
UINT foo() { return bar(); }
Then put the brakepoint on the closing curly brace - or step to that brace, and then put the following into the debugger window:
(UINT)$eax
that should show you the value that's being returned. There are aparently restrictions, see this posting: http://stackoverflow.com/a/267682