YGetAudioStats - current Audio values retrieving
#include <Y2/Y.h>
#include <Y2/Ylib.h>
int YGetAudioStats(
YConnection *connection,
YEventAudioStats *buf
)
The YGetAudioStats function fetches the current Audio values from the Y server and stores them into the pointer buf.
The YGetAudioStats function returns 0 on success and -1 on error.
#include <stdio.h>
#include <Y2/Y.h>
#include <Y2/Ylib.h>
int main(int argc, char *argv[])
{
YEventAudioStats buf;
YConnection *con = YOpenConnection(
"/usr/sbin/starty",
"127.0.0.1:9433"
);
if(con == NULL)
return(1);
if(YGetAudioStats(con, &buf))
printf("Failed.\n");
else
printf("Success.\n");
YCloseConnection(con, False);
YEventAudioStats(3) YChangeAudioModePreset(3) YSetAudioModeValues(3)