AuRequeueEvent (3)
Leading comments
$NCDId: @(#)AuReqEvt.man,v 1.1 1994/09/27 00:34:02 greg Exp $ copyright 1994 Steven King portions are * Copyright 1993 Network Computing Devices, Inc. * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that * the above copyright notice appear in all copies and that both that * copyright notice and this permission notice appear in supporting * documentation, and that the name Network Computing...
Name
AuRequeueEvent - put an event back on the queueSynopsis
#include <audio/audiolib.h>
void AuRequeueEvent(server, event, skip)
AuServer *server;
AuEvent *event;
int skip;
Arguments
- server
- Specifies the connection to the audio server.
- event
- Specifies the event to put back on the queue.
- skip
- Specifies how far from the front of the queue to place the event.
Description
AuRequeueEvent puts the specified event on the event queue. The event can be placed at any position in the queue, skip determines how from the front of the queue the event is placed. If skip is less than or equal zero, the event is placed at the head of the queue. If skip is greater than zero and greater than or equal the number of events already in the queue, the event is placed at the end of the queue, otherwise, the event is placed at the specified offset in the queue.See Also
AuNextEvent, AuEventsQueued, AuScanEvents, AuScanForTypedEvent.audiolib - Network Audio System C Language Interface