libgphoto2 photo camera library (libgphoto2) API
2.5.10.1
|
#include "config.h"
#include <gphoto2/gphoto2-setting.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <gphoto2/gphoto2-result.h>
#include <gphoto2/gphoto2-port-log.h>
#include <gphoto2/gphoto2-port-portability.h>
Data Structures | |
struct | Setting |
Macros | |
#define | _BSD_SOURCE |
#define | CHECK_RESULT(result) {int r = (result); if (r < 0) return (r);} |
Functions | |
int | gp_setting_get (char *id, char *key, char *value) |
Retrieve a specific gphoto setting. More... | |
int | gp_setting_set (char *id, char *key, char *value) |
Set a specific gphoto setting. More... | |
int gp_setting_get | ( | char * | id, |
char * | key, | ||
char * | value | ||
) |
Retrieve a specific gphoto setting.
id | the frontend id of the caller |
key | the key the frontend queries |
value | retrieved value |
This function retrieves the setting key for a specific frontend id and copies the value into the passed value pointer.
References GP_ERROR, and GP_OK.
Referenced by gp_filesystem_get_info().
int gp_setting_set | ( | char * | id, |
char * | key, | ||
char * | value | ||
) |
Set a specific gphoto setting.
id | the frontend id of the caller |
key | the key the frontend queries |
value | retrieved value |
This function sets the setting key for a specific frontend id to the value.
References GP_ERROR, GP_OK, and gp_system_mkdir().
Referenced by gp_filesystem_get_info().