|
-
September 27th, 2009, 12:31 PM
#1
questions about .exe-s
Hello.
Is there a format for .exe files? I know they can have resources. Knowing that there are programs to extract the resources from it, makes me believe there is a format. Can somebody tell me how things are arranged in an .exe file?
And, one more question: if I concatenate two .exe files, why is it that only the first gets executed? is there a way I can make both execute?
-
November 20th, 2009, 11:44 AM
#2
Re: questions about .exe-s
If the post was helpful...Rate it! Remember to use [code] or [php] tags.
-
November 21st, 2009, 03:24 PM
#3
Re: questions about .exe-s
no, it does not work.
only the first one gets executed. the one concatenated never gets executed.
-
November 22nd, 2009, 07:12 PM
#4
Re: questions about .exe-s
I'm asking...What do you mean by concatenate EXEs? Hence the question mark.
If the post was helpful...Rate it! Remember to use [code] or [php] tags.
-
November 23rd, 2009, 05:28 AM
#5
Re: questions about .exe-s
by concatenating 2 files, I mean, reading the first file in a buffer, write the buffer in in the result file, read the second file in a buffer, write the buffer in the result file.
that is, in pseudocode:
resultfile.create();
file1.open();
file1.read(buffer);
resultfile.write(buffer);
file1.close();
file2.open();
file2.read(buffer);
resultfile.write(buffer);
file2.close();
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
|