Share via


CSSTATE (Windows Embedded CE 6.0)

1/6/2010

This enumeration provides values to describe the state of a pin.

Syntax

typedef enum {
  CSSTATE_STOP,
  CSSTATE_PAUSE,
  CSSTATE_RUN
} CSSTATE, *PCSSTATE;

Elements

  • CSSTATE_STOP
    Indicates the initial state of a pin. No data is actually being read or written. In this state, the pin uses the least amount of resources possible.
  • CSSTATE_PAUSE
    Indicates the pin is ready to read or write data, but data transfer is temporarily paused. The driver should be prepared to instantly transition to the run state with all needed resources, such as bandwidth on USB, buffers, etc., already allocated.
  • CSSTATE_RUN
    Indicates the state from which the pin can actually read or write data.

Requirements

Header cs.h
Windows Embedded CE Windows Embedded CE 6.0 and later

See Also

Reference

Camera Driver Enumerations