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>
This commit is contained in:
Tomaz Canabrava 2014-06-02 16:56:02 -03:00 committed by Dirk Hohndel
parent 8e2ed59c83
commit cfa51c6526
2 changed files with 34 additions and 8 deletions

19
dive.c
View file

@ -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)
{
}