Interface
GVncAudio
Prerequisite
In order to implement Audio, your type must inherit fromGObject.
Instance methods
vnc_audio_playback_start
Indicate that the remote desktop is about to start
audio playback in format format.
Interface structure
struct GVncAudioInterface {
  GTypeInterface parent;
  gboolean (* playback_start) (
    VncAudio* audio,
    VncAudioFormat* format
  );
  gboolean (* playback_stop) (
    VncAudio* audio
  );
  gboolean (* playback_data) (
    VncAudio* audio,
    VncAudioSample* sample
  );
  
}No description available.
Interface members
| parent |  | 
| No description available. | |
| playback_start |  | 
| No description available. | |
| playback_stop |  | 
| No description available. | |
| playback_data |  | 
| No description available. |