comparison src/audacious/output.c @ 3549:a5b1084e7f38 trunk

C99 initialisers
author William Pitcock <nenolod@atheme.org>
date Tue, 18 Sep 2007 11:58:09 -0500
parents fd4cd1945b91
children a140fadd741d
comparison
equal deleted inserted replaced
3548:864e6ed1fd4a 3549:a5b1084e7f38
55 0, 55 0,
56 0 56 0
57 }; 57 };
58 58
59 OutputPlugin psuedo_output_plugin = { 59 OutputPlugin psuedo_output_plugin = {
60 NULL, 60 .description = "XMMS reverse compatibility output plugin",
61 NULL, 61 .get_volume = output_get_volume,
62 "XMMS reverse compatibility output plugin", 62 .set_volume = output_set_volume,
63 NULL, 63
64 NULL, 64 .open_audio = output_open_audio,
65 NULL, 65 .write_audio = output_write_audio,
66 NULL, 66 .close_audio = output_close_audio,
67 TRUE, 67
68 output_get_volume, 68 .flush = output_flush,
69 output_set_volume, 69 .pause = output_pause,
70 output_open_audio, 70
71 output_write_audio, 71 .buffer_free = output_buffer_free,
72 output_close_audio, 72 .buffer_playing = output_buffer_playing,
73 73 .output_time = get_output_time,
74 output_flush, 74 .written_time = get_written_time,
75 output_pause,
76 output_buffer_free,
77 output_buffer_playing,
78 get_output_time,
79 get_written_time,
80 NULL
81 }; 75 };
82 76
83 OutputPlugin * 77 OutputPlugin *
84 get_current_output_plugin(void) 78 get_current_output_plugin(void)
85 { 79 {