diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2014-06-02 16:56:02 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-06-02 23:57:16 -0700 |
commit | cfa51c6526c8e178f675456330ef890e4e2bb2f8 (patch) | |
tree | 6e26529b637e10cb97446635fd3e6b4081af1c6c /dive.c | |
parent | 8e2ed59c833dccba32395b4037f7eb2dd5e1d52a (diff) | |
download | subsurface-cfa51c6526c8e178f675456330ef890e4e2bb2f8.tar.gz |
Add stubs for the main methods that will operate on pictures.
add, remove, get count, and picture_load_exif_data.
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'dive.c')
-rw-r--r-- | dive.c | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -2259,3 +2259,22 @@ int average_depth(struct diveplan *dive) return integral / last_time; } + +void picture_load_exif_data(struct picture *p) +{ + +} + +struct picture* dive_add_picture(struct dive *d, char *picture) +{ + +} + +uint dive_get_picture_count(struct dive *d) +{ +} + +void dive_remove_picture(struct dive *d, char *picture) +{ + +} |