I've developed a Windows Application that can run on Linux under wine, this application can run other program by a system call, can i call a Linux native application from a system call inside the windows wine app ?
How can i do it ?
Thanks
Launch a native application from wine app (system call)
Re: Launch a native application from wine app (system call)
You can, but you have to take care of proper synchronization between Wine and Linux.aleroot wrote:I've developed a Windows Application that can run on Linux under wine, this application can run other program by a system call, can i call a Linux native application from a system call inside the windows wine app ?
Re: Launch a native application from wine app (system call)
Have you triedaleroot wrote: How can i do it ?
CreateProcess(... "z:\path\to\native\app"...);
? That assumes the Z: mapping for / is present.