diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/Program.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/Program.h b/include/Program.h index 5f986a4..f891d8e 100644 --- a/include/Program.h +++ b/include/Program.h @@ -1,6 +1,10 @@ #ifndef QUICKMEDIA_PROGRAM_H #define QUICKMEDIA_PROGRAM_H +#ifdef __cplusplus +extern "C" { +#endif + /* Return 0 if you want to continue reading */ typedef int (*ProgramOutputCallback)(char *data, int size, void *userdata); @@ -8,6 +12,10 @@ typedef int (*ProgramOutputCallback)(char *data, int size, void *userdata); @args need to have at least 2 arguments. The first which is the program name and the last which is NULL, which indicates end of args */ -int exec_program(char **args, ProgramOutputCallback output_callback, void *userdata); +int exec_program(const char **args, ProgramOutputCallback output_callback, void *userdata); + +#ifdef __cplusplus +} +#endif #endif |