YGetPlaySoundObjectValues - get playing sound object values
#include <Y2/Y.h>
#include <Y2/Ylib.h>
int YGetPlaySoundObjectValues(
YConnection *connection,
YID yid,
YEventSoundPlay *value
)
The YGetPlaySoundObjectValues gets the play values of a sound object already playing. The value of yid must be that of one received from a call to YStartPlaySoundObject or YStartPlaySoundObjectSimple.
The YGetPlaySoundObjectValues returns 0 on success or non-zero on error.
#include <stdio.h>
#include <unistd.h>
#include <Y2/Y.h>
#include <Y2/Ylib.h>
int main(int argc, char *argv[])
{
YID yid;
YEventSoundPlay value;
YConnection *con = YOpenConnection(
"/usr/sbin/starty",
"127.0.0.1:9433"
);
if(con == NULL)
return(1);
/* Start playing a sound object. */
yid = YStartPlaySoundObjectSimple(
con, "/usr/share/sounds/info.wav"
);
/* Get values of the playing sound object. */
if(!YGetPlaySoundObjectValues(
con, yid, &value
))
{
/* Handle values here. */
}
sleep(3);
YDestroyPlaySoundObject(con, yid);
YCloseConnection(con, False);
YStartPlaySoundObject(3) YGetSoundObjectAttributes(3) YDestroyPlaySoundObject(3)