T
tempnode
I have a problem that I can't seem to solve:
I need to write an unmanaged C++ app that will run off of a floppy.
Basically, I will boot into DOS (from a floppy), and run my executable
from the floppy. The executable will crunch some data and then launch
another application.
How can I launch the other application?
I've tried system(), but it needs a specific path, which isn't viable
in DOS mode. The two apps will be in the same directory, so basically
this is the process:
CrunchData();
LaunchApp();
How could I launch the other app? I can't use Process since this will
be unmanaged code for DOS, either =(
Thanks so much.
I need to write an unmanaged C++ app that will run off of a floppy.
Basically, I will boot into DOS (from a floppy), and run my executable
from the floppy. The executable will crunch some data and then launch
another application.
How can I launch the other application?
I've tried system(), but it needs a specific path, which isn't viable
in DOS mode. The two apps will be in the same directory, so basically
this is the process:
CrunchData();
LaunchApp();
How could I launch the other app? I can't use Process since this will
be unmanaged code for DOS, either =(
Thanks so much.