|
I'm not an expert in SCO nor in Progress and I'm not sure what it means to have a file "pop up". But in general, compiled files result from running a compiler on a source file. That means that there are two possibilities.
If you wrote the source code, don't you still have it? If you lost the source code to something that you wrote and it's not working well, maybe a rewrite is in order.
If the object files came from a third party, you need to enlist that third party's aid. If they no longer support the code, maybe they will let you have a copy of the source code.
Also, if this is executable code, in the sense that an exec() system call can run it, you can use adb to disassemble it.
And I agree that you may be able to get some useful information via strings.
|