Share via


CQueue Class (Windows Embedded CE 6.0)

1/6/2010

Ee495701.83858870-b461-4e7d-9051-c88291146eae(en-US,WinEmbedded.60).gif

This class implements a simple queue abstract data type.

The queue contains a finite number of objects, and a semaphore controls access to these objects.

The semaphore is created with an initial count (N).

Each time an object is added, a call to the Win32 WaitForSingleObject function is made on the handle of the semaphore.

When this function returns, it reserves a slot in the queue for the new object. If no slots are available, the member function blocks until it becomes available.

Each time an object is removed from the queue, the Win32 ReleaseSemaphore function is called on the handle of the semaphore, thus freeing a slot in the queue. If no objects are present in the queue, the function blocks until an object has been added.

Member Functions

Member function Description

CQueue

Constructs a CQueue object.

GetQueueObject

Retrieves an object from the queue.

PutQueueObject

Puts an object into the queue.

Requirements

Windows Embedded CE Windows CE 2.12 and later
Note Microsoft DirectShow applications and DirectShow filters have different include file and Library requirements
For more information, see Setting Up the Build Environment

See Also

Reference

DirectShow Classes