mirror of
https://github.com/lifegpc/pixiv_downloader.git
synced 2026-07-08 01:32:41 +08:00
25 lines
572 B
C
25 lines
572 B
C
#ifndef _EXIF_EXIF_PRIV_H
|
|
#define _EXIF_EXIF_PRIV_H
|
|
#include "exiv2/exiv2.hpp"
|
|
typedef struct ExifDataRef {
|
|
Exiv2::ExifData* data = nullptr;
|
|
} ExifDataRef;
|
|
typedef struct ExifImage {
|
|
Exiv2::Image::UniquePtr image;
|
|
ExifDataRef exif_data_ref;
|
|
} ExifImage;
|
|
typedef struct ExifKey {
|
|
Exiv2::ExifKey* key = nullptr;
|
|
} ExifKey;
|
|
typedef struct ExifValue {
|
|
Exiv2::Value::UniquePtr value;
|
|
} ExifValue;
|
|
typedef struct ExifData {
|
|
Exiv2::ExifData data;
|
|
ExifDataRef ref;
|
|
} ExifData;
|
|
typedef struct ExifDatum {
|
|
Exiv2::Exifdatum* data;
|
|
} ExifDatum;
|
|
#endif
|