View Single Post
Old 21st June 2016, 10:27   #2957  |  Link
Sir Didymus
Registered User
 
Join Date: Mar 2004
Location: Italy
Posts: 948
Could you try this?

http://www10.zippyshare.com/v/rGVzWdp0/file.html

It is a snippet of code doing this:
Code:
#include <stdio.h>
#include <process.h>

main()

{
	int ret = 0;

	printf ("Test1 - Using \"system()\" OS call\n");
	printf ("      - TP1 - before executing MuxMan...\n");
	ret = system ("MuxMan.exe");
	printf ("      - TP2 - after executing MuxMan; \"system()\" --> %d\n", ret);
}
Put the test1.exe in the same folder where MuxMan is located, and launch it from a console windows, as shown in attached images 1, 2 and 3. Is MuxMan starting?

Last edited by Sir Didymus; 21st June 2016 at 10:36.
Sir Didymus is offline   Reply With Quote