pipeline in c++

Status
Not open for further replies.

romeo_8693

"The RaCaLaNGeL"©
guys anyone knows how to pipeline programs in c++?in other words call another prog fron one(exe only)
 

QwertyManiac

Commander in Chief
I don't get you, what do you mean by pipeline here, run another process along with a running one? Use threads for that purpose?
 
OP
romeo_8693

romeo_8693

"The RaCaLaNGeL"©
Auto Gordian Knot is best example of what i want to say....it calls several other progs one after another.i want something like that...say i want to start winamp from my prog how would i do it?


As for using system() is it through "cmd"?
 

QwertyManiac

Commander in Chief
One after another is easy. Yes, use system() call, system("command -args")

Where command can of course, be any executable on Windows. Even Winamp, just give the full path to it.
 
Status
Not open for further replies.
Top Bottom