diff options
author | David Robillard <d@drobilla.net> | 2012-08-09 01:41:00 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-08-09 01:41:00 +0000 |
commit | 020e59f28530ee2ee72f3567981fa7bff7b8e89b (patch) | |
tree | 4e5feabd4af7eb6b4573dc607d831f9eecb37b8e /src/suil_internal.h | |
parent | 66f3296e7826c8beda165fcc029cc5a616dade6f (diff) | |
download | suil-020e59f28530ee2ee72f3567981fa7bff7b8e89b.tar.gz suil-020e59f28530ee2ee72f3567981fa7bff7b8e89b.tar.bz2 suil-020e59f28530ee2ee72f3567981fa7bff7b8e89b.zip |
Fix warnings: -Wshadow -Wpointer-arith -Wcast-align -Wstrict-prototypes -Wmissing-prototypes.
Fix broken suil_wrapper_new prototypes discovered by the above.
git-svn-id: http://svn.drobilla.net/lad/trunk/suil@4630 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/suil_internal.h')
-rw-r--r-- | src/suil_internal.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/suil_internal.h b/src/suil_internal.h index 0e565cb..b72c545 100644 --- a/src/suil_internal.h +++ b/src/suil_internal.h @@ -37,6 +37,10 @@ static inline char* dlerror(void) { return "Unknown error"; } #include "suil/suil.h" +#ifdef __cplusplus +extern "C" { +#endif + #define SUIL_ERRORF(fmt, ...) fprintf(stderr, "suil error: " fmt, __VA_ARGS__) struct SuilHostImpl { @@ -89,7 +93,15 @@ typedef SuilWrapper* (*SuilWrapperNewFunc)(SuilHost* host, LV2_Feature*** features, unsigned n_features); -typedef void (*SuilVoidFunc)(); +/** Prototype for suil_wrapper_new in each module. */ +SuilWrapper* +suil_wrapper_new(SuilHost* host, + const char* host_type_uri, + const char* ui_type_uri, + LV2_Feature*** features, + unsigned n_features); + +typedef void (*SuilVoidFunc)(void); /** dlsym wrapper to return a function pointer (without annoying warning) */ static inline SuilVoidFunc @@ -124,4 +136,8 @@ suil_add_feature(LV2_Feature*** features, *n += 1; } +#ifdef __cplusplus +} /* extern "C" */ +#endif + #endif // SUIL_INTERNAL_H |