New command -concat
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
|
||||
/* xorriso - creates, loads, manipulates and burns ISO 9660 filesystem images.
|
||||
|
||||
Copyright 2007-2010 Thomas Schmitt, <scdbackup@gmx.net>
|
||||
Copyright 2007-2014 Thomas Schmitt, <scdbackup@gmx.net>
|
||||
|
||||
Provided under GPL version 2 or later.
|
||||
|
||||
@ -71,11 +71,19 @@ int Xorriso_convert_datestring(struct XorrisO *xorriso, char *cmd,
|
||||
|
||||
int Xorriso_check_temp_mem_limit(struct XorrisO *xorriso, off_t mem, int flag);
|
||||
|
||||
/* @param flag bit0= use env_path to find the desired program
|
||||
*/
|
||||
int Xorriso_execv(struct XorrisO *xorriso, char *cmd, char *env_path,
|
||||
int Xorriso_execv(struct XorrisO *xorriso, char *cmd,
|
||||
int in_argc, char **in_argv, char *env_path,
|
||||
int *stdin_pipe, int *stdout_pipe, pid_t *forked_pid,
|
||||
int *status, int flag);
|
||||
|
||||
int Xorriso_pipe_open(struct XorrisO *xorriso, char *purpose, char *cmd,
|
||||
int in_argc, char **in_argv, char *env_path,
|
||||
int *fd, pid_t *forked_pid, int flag);
|
||||
|
||||
int Xorriso_wait_child_end(struct XorrisO *xorriso, int child_pid,
|
||||
int *status, int flag);
|
||||
|
||||
|
||||
int Xorriso_path_is_excluded(struct XorrisO *xorriso, char *path, int flag);
|
||||
|
||||
int Xorriso_path_is_hidden(struct XorrisO *xorriso, char *path, int flag);
|
||||
|
Reference in New Issue
Block a user