aboutsummaryrefslogtreecommitdiff
path: root/include/Program.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/Program.h')
-rw-r--r--include/Program.h10
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