diff options
author | Matthias Vogelgesang <matthias.vogelgesang@ipe.fzk.de> | 2011-03-08 13:56:00 +0100 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@ipe.fzk.de> | 2011-03-08 13:56:00 +0100 |
commit | c7b0d014b3a568ceb2db5d582a57cb7002face5e (patch) | |
tree | 7d2faff2da40e016b1980472d96e6d6fc1afab40 /src/uca-cam.h | |
parent | 3804fd2355997cc5d2b811ffcbc546a367aa2b48 (diff) | |
download | libuca-c7b0d014b3a568ceb2db5d582a57cb7002face5e.tar.gz libuca-c7b0d014b3a568ceb2db5d582a57cb7002face5e.tar.bz2 libuca-c7b0d014b3a568ceb2db5d582a57cb7002face5e.tar.xz libuca-c7b0d014b3a568ceb2db5d582a57cb7002face5e.zip |
Add more offset properties
Diffstat (limited to 'src/uca-cam.h')
-rw-r--r-- | src/uca-cam.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/uca-cam.h b/src/uca-cam.h index 5710b0a..a7f1827 100644 --- a/src/uca-cam.h +++ b/src/uca-cam.h @@ -39,15 +39,17 @@ typedef uint32_t (*uca_cam_destroy) (struct uca_camera_t *cam); /** * \brief Set a property - * \param[in] property_name Name of the property as defined in XXX + * \param[in] property ID of the property as defined in XXX + * \param[out] data Where to read the property's value from * \return UCA_ERR_PROP_INVALID if property is not supported on the camera or * UCA_ERR_PROP_VALUE_OUT_OF_RANGE if value cannot be set. */ typedef uint32_t (*uca_cam_set_property) (struct uca_camera_t *cam, enum uca_property_ids property, void *data); /** - * \brief Set a property - * \param[in] property_name Name of the property as defined in XXX + * \brief Get a property + * \param[in] property ID of the property as defined in XXX + * \param[out] data Where to store the property's value * \return UCA_ERR_PROP_INVALID if property is not supported on the camera */ typedef uint32_t (*uca_cam_get_property) (struct uca_camera_t *cam, enum uca_property_ids property, void *data); |