comparison src/mediastreamer/msilbcdec.h @ 12323:fc464a0abccc

[gaim-migrate @ 14627] Function prototypes need to be of the form foo(void); instead of foo(); for function that don't take any arguments. This allows the compiler to detect mistakes were someone passes arguments to such a function. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Sun, 04 Dec 2005 18:19:56 +0000
parents e67993da8a22
children
comparison
equal deleted inserted replaced
12322:c7ae1fd0827d 12323:fc464a0abccc
53 } MSILBCDecoderClass; 53 } MSILBCDecoderClass;
54 54
55 /* PUBLIC */ 55 /* PUBLIC */
56 56
57 /* call this before if don't load the plugin dynamically */ 57 /* call this before if don't load the plugin dynamically */
58 void ms_ilbc_codec_init(); 58 void ms_ilbc_codec_init(void);
59 59
60 #define MS_ILBCDECODER(filter) ((MSILBCDecoder*)(filter)) 60 #define MS_ILBCDECODER(filter) ((MSILBCDecoder*)(filter))
61 #define MS_ILBCDECODER_CLASS(klass) ((MSILBCDecoderClass*)(klass)) 61 #define MS_ILBCDECODER_CLASS(klass) ((MSILBCDecoderClass*)(klass))
62 MSFilter * ms_ilbc_decoder_new(void); 62 MSFilter * ms_ilbc_decoder_new(void);
63 63