diff options
Diffstat (limited to 'src/inputPlugin.h')
-rw-r--r-- | src/inputPlugin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inputPlugin.h b/src/inputPlugin.h index 6e9b21106..ecb1b9801 100644 --- a/src/inputPlugin.h +++ b/src/inputPlugin.h @@ -31,10 +31,10 @@ /* optional, set this to NULL if the InputPlugin doesn't have/need one * this must return < 0 if there is an error and >= 0 otherwise */ -typedef int (*InputPlugin_initFunc) (); +typedef int (*InputPlugin_initFunc) (void); /* optional, set this to NULL if the InputPlugin doesn't have/need one */ -typedef void (*InputPlugin_finishFunc) (); +typedef void (*InputPlugin_finishFunc) (void); /* boolean return value, returns 1 if the InputStream is decodable by * the InputPlugin, 0 if not */ |