diff options
Diffstat (limited to 'xbmc/pictures/IptcParse.h')
-rw-r--r-- | xbmc/pictures/IptcParse.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/xbmc/pictures/IptcParse.h b/xbmc/pictures/IptcParse.h new file mode 100644 index 0000000..ba00135 --- /dev/null +++ b/xbmc/pictures/IptcParse.h @@ -0,0 +1,10 @@ +#pragma once + +#include "libexif.h" + +class CIptcParse +{ + public: + static bool Process(const unsigned char* const Data, const unsigned short length, IPTCInfo_t *info); +}; + |