[snip]
 Step 1 :       .exe binary file ------ Linker (assembly language)
.......... .obj file/s

 Step 2 :        .obj file/s -------- .c (Compiler) source code file/s

Is it Right or i am going somewhere illogical?
[/snip]

Really this cannot be done with any degree of reliability, if at all.
The .obj file has been stripped of things and has had additional code
placed into it. This is dependent upon the compiler (.obj files from
compiler to compiler have different looks to them based on several
items. Makefiles are different.).The .exe file is a translation of the
.obj into assembly language.

Does the compiled code you want to use have hooks into it, an API? If so
you can use PHP to interact with the API.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to