gnome-sound

Name

gnome-sound — one line description goes here.

Synopsis


#include <gnome.h>


void        gnome_sound_init                (const char *hostname);
void        gnome_sound_shutdown            (void);
int         gnome_sound_sample_load         (const char *sample_name,
                                             const char *filename);
void        gnome_sound_play                (const char *filename);

Description

Details

gnome_sound_init ()

void        gnome_sound_init                (const char *hostname);

Initialize esd connection

hostname : hostname where esd daemon resides.


gnome_sound_shutdown ()

void        gnome_sound_shutdown            (void);

shuts down the gnome sound support


gnome_sound_sample_load ()

int         gnome_sound_sample_load         (const char *sample_name,
                                             const char *filename);

Loads the audio on filename and XXXX

sample_name : the name of the samplefilename : the filename where the audio is storedReturns : a sample_id, or a negative number otherwise.


gnome_sound_play ()

void        gnome_sound_play                (const char *filename);

Plays the audio stored in filename

filename : file containing the sound sample