comparison src/mediastreamer/ms.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
24 #define MS_H 24 #define MS_H
25 #include "msfilter.h" 25 #include "msfilter.h"
26 #include "mssync.h" 26 #include "mssync.h"
27 27
28 28
29 void ms_init(); 29 void ms_init(void);
30 30
31 /* compile graphs attached to a sync source*/ 31 /* compile graphs attached to a sync source*/
32 int ms_compile(MSSync *source); 32 int ms_compile(MSSync *source);
33 33
34 34
71 */ 71 */
72 void ms_stop(MSSync *sync); 72 void ms_stop(MSSync *sync);
73 73
74 74
75 gchar * ms_proc_get_param(gchar *parameter); 75 gchar * ms_proc_get_param(gchar *parameter);
76 gint ms_proc_get_type(); 76 gint ms_proc_get_type(void);
77 gint ms_proc_get_speed(); 77 gint ms_proc_get_speed(void);
78 78
79 79
80 80
81 #endif 81 #endif