diff options
author | Avuton Olrich <avuton@gmail.com> | 2006-07-20 16:02:40 +0000 |
---|---|---|
committer | Avuton Olrich <avuton@gmail.com> | 2006-07-20 16:02:40 +0000 |
commit | 29a25b9933b32800f58dd73d5d1fc21993071c92 (patch) | |
tree | 4f456a6f8e44d42acc289c35534ea3e59c0aa96f /src/inputPlugin.h | |
parent | 099f0e103f7591eef81183292d704b3a77a99018 (diff) | |
download | mpd-29a25b9933b32800f58dd73d5d1fc21993071c92.tar.gz mpd-29a25b9933b32800f58dd73d5d1fc21993071c92.tar.xz mpd-29a25b9933b32800f58dd73d5d1fc21993071c92.zip |
Add mpd-indent.sh
Indent the entire tree, hopefully we can keep
it indented.
git-svn-id: https://svn.musicpd.org/mpd/trunk@4410 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/inputPlugin.h')
-rw-r--r-- | src/inputPlugin.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/inputPlugin.h b/src/inputPlugin.h index b7de1ca96..d32ca59e2 100644 --- a/src/inputPlugin.h +++ b/src/inputPlugin.h @@ -31,36 +31,36 @@ /* 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) (); /* optional, set this to NULL if the InputPlugin doesn't have/need one */ -typedef void (* InputPlugin_finishFunc) (); +typedef void (*InputPlugin_finishFunc) (); /* boolean return value, returns 1 if the InputStream is decodable by * the InputPlugin, 0 if not */ -typedef unsigned int (* InputPlugin_tryDecodeFunc) (InputStream *); +typedef unsigned int (*InputPlugin_tryDecodeFunc) (InputStream *); /* this will be used to decode InputStreams, and is recommended for files * and networked (HTTP) connections. * * returns -1 on error, 0 on success */ -typedef int (* InputPlugin_streamDecodeFunc) (OutputBuffer *, DecoderControl *, - InputStream *); +typedef int (*InputPlugin_streamDecodeFunc) (OutputBuffer *, DecoderControl *, + InputStream *); /* use this if and only if your InputPlugin can only be passed a filename or * handle as input, and will not allow callbacks to be set (like Ogg-Vorbis * and FLAC libraries allow) * * returns -1 on error, 0 on success */ -typedef int (* InputPlugin_fileDecodeFunc) (OutputBuffer *, DecoderControl *, - char * path); +typedef int (*InputPlugin_fileDecodeFunc) (OutputBuffer *, DecoderControl *, + char *path); /* file should be the full path! Returns NULL if a tag cannot be found * or read */ -typedef MpdTag * (* InputPlugin_tagDupFunc) (char * file); +typedef MpdTag *(*InputPlugin_tagDupFunc) (char *file); typedef struct _InputPlugin { - char * name; + char *name; InputPlugin_initFunc initFunc; InputPlugin_finishFunc finishFunc; InputPlugin_tryDecodeFunc tryDecodeFunc; @@ -72,8 +72,8 @@ typedef struct _InputPlugin { unsigned char streamTypes; /* last element in these arrays must always be a NULL: */ - char ** suffixes; - char ** mimeTypes; + char **suffixes; + char **mimeTypes; } InputPlugin; /* individual functions to load/unload plugins */ @@ -82,11 +82,11 @@ void unloadInputPlugin(InputPlugin * inputPlugin); /* interface for using plugins */ -InputPlugin * getInputPluginFromSuffix(char * suffix, unsigned int next); +InputPlugin *getInputPluginFromSuffix(char *suffix, unsigned int next); -InputPlugin * getInputPluginFromMimeType(char * mimeType, unsigned int next); +InputPlugin *getInputPluginFromMimeType(char *mimeType, unsigned int next); -InputPlugin * getInputPluginFromName(char * name); +InputPlugin *getInputPluginFromName(char *name); void printAllInputPluginSuffixes(FILE * fp); |