Re: questions about .exe-s
Re: questions about .exe-s
no, it does not work.
only the first one gets executed. the one concatenated never gets executed.
Re: questions about .exe-s
I'm asking...What do you mean by concatenate EXEs? Hence the question mark.
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();