mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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:
parent
8e2ed59c83
commit
cfa51c6526
2 changed files with 34 additions and 8 deletions
19
dive.c
19
dive.c
|
@ -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)
|
||||
{
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue