diff options
Diffstat (limited to 'src/exif_nikon.h')
-rw-r--r-- | src/exif_nikon.h | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/src/exif_nikon.h b/src/exif_nikon.h index e2baf0d..16e8fb9 100644 --- a/src/exif_nikon.h +++ b/src/exif_nikon.h @@ -26,16 +26,8 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #ifndef EXIF_NIKON_H #define EXIF_NIKON_H -/* Flash control mode */ -/* http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Nikon.html#FlashControlMode */ -#define EXN_FLASH_CONTROL_MODES_MAX 9 -char *EXN_NikonFlashControlModeValues[EXN_FLASH_CONTROL_MODES_MAX] = {"Off", - "iTTL-BL", "iTTL", "Auto Aperture", - "Automatic", "GN (distance priority)", - "Manual", "Repeating Flash", - "N/A" /* "N/A" is not a nikon setting */ - }; - -#define EXN_FLASH_CONTROL_MODE_MASK 0x7F +#include <libexif/exif-data.h> + +extern void exn_get_mnote_nikon_tags(ExifData *ed, unsigned int tag, char * buffer, unsigned int maxsize); #endif |