Share via


BUFFER_COMMANDS (Compact 2013)

3/26/2014

This enumeration provides values that are used to send buffer control commands to the driver.

Syntax

typedef enum {
    CS_ALLOCATE,
    CS_ENQUEUE,
    CS_DEALLOCATE
} BUFFER_COMMANDS;

Elements

  • CS_ALLOCATE
    Indicates that the driver should allocate the buffer.
  • CS_ENQUEUE
    Indicates that the driver should add a buffer to its queue.
  • CS_DEALLOCATE
    Indicates that the driver should free the memory for the buffer.

Requirements

Header

camera.h

See Also

Reference

Camera Driver Enumerations