From 65cf7681a04f2511db8c7829e9828b53a6676c88 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Fri, 2 Aug 2019 20:08:27 +0200 Subject: Convert to sfml, starting on manganelo and youtube --- include/Program.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'include/Program.h') 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 -- cgit v1.2.3