This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
I am trying to debug a problem in a native DLL using WinDBG. I believe that I have the private symbols loaded, but WinDBG is not displaying the source lines or parameter information. Here is what I am observing; any help would be greatly appreciated! I have the PDB which [...] read more
I want to remove private symbol from a symbol file using binplace.exe, I saved the following command into a batch file 'parse.bat': binplace -a -x -s %_NTTREE%\stripped -n %_NTTREE%\full my-executable-file-name. The question is: When I executed the parse.bat from command-line, binplace can generate stripped symbol file properly, but if I [...] read more
I am trying to send keys combination to another program like that: // keydown ctrl SendMessage(windowBracketsKeyListener, 0x100, (IntPtr)VK_CONTROL, (IntPtr)0x001D0001); // keydown S SendMessage(windowBracketsKeyListener, 0x100, (IntPtr)VK_S, (IntPtr)0x001F0001); SendMessage(windowBracketsKeyListener, 0x102, (IntPtr)115, (IntPtr)0); // keyup ctrl SendMessage(windowBracketsKeyListener, 0x101, (IntPtr)VK_CONTROL, (IntPtr)0xC01D0001); To the last line I have an error (look at the image below). [...] read more