|
-
October 21st, 2011, 02:26 AM
#1
C++ Newb
I don't know if something like this is taboo or "copyright" territory so give a guy a break.
I'm wondering if there is some kind of program out there that would display (real-time) the coding for a running/selected program. For instance, I would be running Firefox and this other program would tell me all the coding details of what's happening on the programming level.
What I'm hoping to do is basically splice bits and pieces of programs together, as well as add individual custom code, giving me a program hybrid allowing things like; save+print, firefox opens 2 windows, etc...
-
October 21st, 2011, 03:04 AM
#2
Re: C++ Newb
Code is compiled to assembly. After it's compiled it's almost impossible to reverse it. So no, there is no such program.
-
October 21st, 2011, 05:44 AM
#3
Re: C++ Newb
 Originally Posted by ikKy
I'm wondering if there is some kind of program out there that would display (real-time) the coding for a running/selected program.
You can't turn hamburger back into a cow. So your answer is "No", this is not possible.
Regards,
Paul McKenzie
-
October 21st, 2011, 07:34 AM
#4
Re: C++ Newb
OK sure.
 Originally Posted by ikKy
I'm wondering if there is some kind of program out there that would display (real-time) the coding for a running/selected program.
Well that sounds like some sort of a remote debugger. Try Windbg.
http://en.wikipedia.org/wiki/WinDbg
 Originally Posted by ikKy
For instance, I would be running Firefox and this other program would tell me all the coding details of what's happening on the programming level.
Well no, not Firefox, you would have to have the source to do that.
 Originally Posted by ikKy
What I'm hoping to do is basically splice bits and pieces of programs together, as well as add individual custom code, giving me a program hybrid allowing things like; save+print, Firefox opens 2 windows, etc...
Well what you want is an API, you may not realize it, since you are new to C++.
The word "mash-up" comes to mind. Maybe you can Google it. In other words you want to integrate a bunch of applications into a new application.
ahoodin
To keep the plot moving, that's why.

Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|