Mercurial > sdl-ios-xcode
comparison src/audio/pulse/SDL_pulseaudio.c @ 4396:f5d3f7fa071d SDL-1.2
1.2 pulseaudio: make some function pointers static.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Sun, 17 Jan 2010 05:17:59 +0000 |
parents | 14f95e514408 |
children | fe15c4e8efe6 |
comparison
equal
deleted
inserted
replaced
4395:3c35b8d3b9fc | 4396:f5d3f7fa071d |
---|---|
80 pa_channel_map *m, | 80 pa_channel_map *m, |
81 unsigned channels, | 81 unsigned channels, |
82 pa_channel_map_def_t def | 82 pa_channel_map_def_t def |
83 ); | 83 ); |
84 | 84 |
85 pa_mainloop * (*SDL_NAME(pa_mainloop_new))(void); | 85 static pa_mainloop * (*SDL_NAME(pa_mainloop_new))(void); |
86 pa_mainloop_api * (*SDL_NAME(pa_mainloop_get_api))(pa_mainloop *m); | 86 static pa_mainloop_api * (*SDL_NAME(pa_mainloop_get_api))(pa_mainloop *m); |
87 int (*SDL_NAME(pa_mainloop_iterate))(pa_mainloop *m, int block, int *retval); | 87 static int (*SDL_NAME(pa_mainloop_iterate))(pa_mainloop *m, int block, int *retval); |
88 void (*SDL_NAME(pa_mainloop_free))(pa_mainloop *m); | 88 static void (*SDL_NAME(pa_mainloop_free))(pa_mainloop *m); |
89 | 89 |
90 pa_operation_state_t (*SDL_NAME(pa_operation_get_state))(pa_operation *o); | 90 static pa_operation_state_t (*SDL_NAME(pa_operation_get_state))(pa_operation *o); |
91 void (*SDL_NAME(pa_operation_cancel))(pa_operation *o); | 91 static void (*SDL_NAME(pa_operation_cancel))(pa_operation *o); |
92 void (*SDL_NAME(pa_operation_unref))(pa_operation *o); | 92 static void (*SDL_NAME(pa_operation_unref))(pa_operation *o); |
93 | 93 |
94 pa_context * (*SDL_NAME(pa_context_new))( | 94 static pa_context * (*SDL_NAME(pa_context_new))( |
95 pa_mainloop_api *m, const char *name); | 95 pa_mainloop_api *m, const char *name); |
96 int (*SDL_NAME(pa_context_connect))( | 96 static int (*SDL_NAME(pa_context_connect))( |
97 pa_context *c, const char *server, | 97 pa_context *c, const char *server, |
98 pa_context_flags_t flags, const pa_spawn_api *api); | 98 pa_context_flags_t flags, const pa_spawn_api *api); |
99 pa_context_state_t (*SDL_NAME(pa_context_get_state))(pa_context *c); | 99 static pa_context_state_t (*SDL_NAME(pa_context_get_state))(pa_context *c); |
100 void (*SDL_NAME(pa_context_disconnect))(pa_context *c); | 100 static void (*SDL_NAME(pa_context_disconnect))(pa_context *c); |
101 void (*SDL_NAME(pa_context_unref))(pa_context *c); | 101 static void (*SDL_NAME(pa_context_unref))(pa_context *c); |
102 | 102 |
103 pa_stream * (*SDL_NAME(pa_stream_new))(pa_context *c, | 103 static pa_stream * (*SDL_NAME(pa_stream_new))(pa_context *c, |
104 const char *name, const pa_sample_spec *ss, const pa_channel_map *map); | 104 const char *name, const pa_sample_spec *ss, const pa_channel_map *map); |
105 int (*SDL_NAME(pa_stream_connect_playback))(pa_stream *s, const char *dev, | 105 static int (*SDL_NAME(pa_stream_connect_playback))(pa_stream *s, const char *dev, |
106 const pa_buffer_attr *attr, pa_stream_flags_t flags, | 106 const pa_buffer_attr *attr, pa_stream_flags_t flags, |
107 pa_cvolume *volume, pa_stream *sync_stream); | 107 pa_cvolume *volume, pa_stream *sync_stream); |
108 pa_stream_state_t (*SDL_NAME(pa_stream_get_state))(pa_stream *s); | 108 static pa_stream_state_t (*SDL_NAME(pa_stream_get_state))(pa_stream *s); |
109 size_t (*SDL_NAME(pa_stream_writable_size))(pa_stream *s); | 109 static size_t (*SDL_NAME(pa_stream_writable_size))(pa_stream *s); |
110 int (*SDL_NAME(pa_stream_write))(pa_stream *s, const void *data, size_t nbytes, | 110 static int (*SDL_NAME(pa_stream_write))(pa_stream *s, const void *data, size_t nbytes, |
111 pa_free_cb_t free_cb, int64_t offset, pa_seek_mode_t seek); | 111 pa_free_cb_t free_cb, int64_t offset, pa_seek_mode_t seek); |
112 pa_operation * (*SDL_NAME(pa_stream_drain))(pa_stream *s, | 112 static pa_operation * (*SDL_NAME(pa_stream_drain))(pa_stream *s, |
113 pa_stream_success_cb_t cb, void *userdata); | 113 pa_stream_success_cb_t cb, void *userdata); |
114 int (*SDL_NAME(pa_stream_disconnect))(pa_stream *s); | 114 static int (*SDL_NAME(pa_stream_disconnect))(pa_stream *s); |
115 void (*SDL_NAME(pa_stream_unref))(pa_stream *s); | 115 static void (*SDL_NAME(pa_stream_unref))(pa_stream *s); |
116 | 116 |
117 static struct { | 117 static struct { |
118 const char *name; | 118 const char *name; |
119 void **func; | 119 void **func; |
120 } pulse_functions[] = { | 120 } pulse_functions[] = { |