Mon, 03 Oct 2005 03:17:46 +0000
[gaim-migrate @ 13866]
Rewrite of the "transparency" plugin. This should suck less and now offers the option of being opaque on focus. I need to evaluate the "Always on top" functionality of the Buddy List because it may conflict wiht the WinGaim Options plugin.
| 11118 | 1 | #include "module.h" |
| 2 | ||
| 3 | MODULE = Gaim::Sound PACKAGE = Gaim::Sound PREFIX = gaim_sound_ | |
| 4 | PROTOTYPES: ENABLE | |
| 5 | ||
| 6 | Gaim::Sound::UiOps | |
| 7 | gaim_sound_get_ui_ops() | |
| 8 | ||
| 9 | ||
| 10 | void | |
| 11 | gaim_sound_init() | |
| 12 | ||
| 13 | ||
| 14 | void | |
| 15 | gaim_sound_play_event(event) | |
| 16 | Gaim::SoundEventID event | |
| 17 | ||
| 18 | void | |
| 19 | gaim_sound_play_file(filename) | |
| 20 | const char *filename | |
| 21 | ||
| 22 | void | |
| 23 | gaim_sound_set_ui_ops(ops) | |
| 24 | Gaim::Sound::UiOps ops | |
| 25 | ||
| 26 | void | |
| 27 | gaim_sound_uninit() | |
| 28 | ||
| 29 |