Loading/Saving of sessions containing MIDI tracks and/or busses
[ardour.git] / libs / pbd3 / pbd / forkexec.h
1 #ifndef __forkexec_h__
2 #define __forkexec_h__
3
4 #include <unistd.h>
5
6 pid_t forkexec(char **argv, char **envp, int outpipe[2], int inpipe[2]);
7 pid_t forkexec_cmd(char *cmd, char **envp, int outpipe[2], int inpipe[2]);
8
9 #endif // __forkexec_h__