Code::Blocks Forums

User forums => General (but related to Code::Blocks) => Topic started by: wever on January 08, 2015, 06:03:23 pm

Title: problem to view binary string
Post by: wever on January 08, 2015, 06:03:23 pm
Could it be possible something to do to view the binary string char* program in struct FILES files?

(http://oi62.tinypic.com/6xyer6.jpg)

There is loaded 11000 bytes but I see only 7 bytes in the windows. That's wrong.
Title: Re: problem to view binary string
Post by: BlueHazzard on January 08, 2015, 06:50:29 pm
i can give you a "workaround" i don't know if there is a easier solition:
add a watch with the name "files[0].program". Now you should be able to klick on "..." on the left of the value filde in the watches and see all the content.
A other possibility would be to search for the address of "files[0]->program" and look it up in the memory window (debug->Debugging windows->memory)

greetings