hi, during debugging the wireshark dissector i am getting the error as "no symbols have been loaded" , i have given the correct path to .pdb file but still getting the same error. can anybody help me in this issue. asked 08 Jun '11, 01:57 sagu072 retagged 08 Jun '11, 19:48 helloworld |
Which debugger are you using?
I've used gdb, Eclipse, Netbeans, and Visual Studio to debug Wireshark, and I"ve never had to specify a pdb file.
Hi I am using MSVC++ Express Edition and have the same problem. I can step in wireshark with F11 (starting at WinMain) but when I set a breakpoint within my custom plugin I get the "no symbols have been loaded for this document" message.
Any help?
Where are you running Wireshark from for your debug session?
Sorry it was quite simple. When I start the debugger (at WinMain) my plugin dll had not been loaded, so when I set a breakpoint at a plugin source file, MSVC++ complains.
However, when I click continue and then load a capture that triggers my plugin, the dll is loaded (with the symbols) and the breakpoint becomes valid!