Libray für .exe
-
Hallo, ich möchte ein Libray schreiben um eine .exe zu öffnen.
Wie fange ich da am besten an???LG
PS: Hier geht es nicht um die Windows API
-
#include <fstream> int main(){ using namespace std; ifstream f("Test.exe", ifstream::in || ifstream::binary); }
-
nwp3 schrieb:
#include <fstream> int main(){ using namespace std; ifstream f("Test.exe", ifstream::in || ifstream::binary); }
-