diff options
author | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2013-03-20 10:03:52 +0100 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2013-03-20 10:03:52 +0100 |
commit | ff7f3216fe76e0a4598bdf737671a5e25a780ded (patch) | |
tree | 611970247e33c4af6b1a2a6345bb39b3cb05295e /NEWS | |
parent | 71acacfd31e36fcb314d0d75306d26f9518e1d6a (diff) | |
download | libuca-ff7f3216fe76e0a4598bdf737671a5e25a780ded.tar.gz libuca-ff7f3216fe76e0a4598bdf737671a5e25a780ded.tar.bz2 libuca-ff7f3216fe76e0a4598bdf737671a5e25a780ded.tar.xz libuca-ff7f3216fe76e0a4598bdf737671a5e25a780ded.zip |
uca_camera_grab takes a gpointer and returns bool
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -1,3 +1,20 @@ +Changes in libuca 1.2 +===================== + +API break +--------- + +The interface of uca_camera_grab() has changed. The buffer must be provided as a +void pointer (or gpointer in GLib speak), _not_ the address of a void pointer. +Furthermore, uca_camera_grab() returns TRUE if grabbing an image was successful +and FALSE if not. + +The plugin manager does not call the plugins "constructor" function directly but +instantiates it via the GInitable initialization function. Therefore, all +plugins must implement initialization code in the objects init function and flag +errors in the init method from the GInitable interface. + + Changes in libuca 1.1 ===================== |