add missing header file for last commit
This commit is contained in:
@@ -6,21 +6,27 @@
|
|||||||
#include <vector>
|
#include <vector>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
|
//encryption types
|
||||||
|
#define ENC_NONE 0
|
||||||
|
#define ENC_ONYXKDU 1
|
||||||
|
#define ENC_EMKDU_V1 2
|
||||||
|
#define ENC_EMKDU_V2 4
|
||||||
|
|
||||||
class LLJ2cParser
|
class LLJ2cParser
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
LLJ2cParser(U8* data,int data_size);
|
LLJ2cParser(U8* data,int data_size);
|
||||||
std::vector<U8> GetNextComment();
|
std::vector<U8> GetNextComment();
|
||||||
|
std::vector<U8> mData;
|
||||||
private:
|
private:
|
||||||
U8 nextChar();
|
U8 nextChar();
|
||||||
std::vector<U8> nextCharArray(int len);
|
std::vector<U8> nextCharArray(int len);
|
||||||
std::vector<U8> mData;
|
|
||||||
std::vector<U8>::iterator mIter;
|
std::vector<U8>::iterator mIter;
|
||||||
};
|
};
|
||||||
class LLImageMetaDataReader
|
class LLImageMetaDataReader
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
static std::string ExtractEncodedComment(U8* data,int data_size);
|
static unsigned int ExtractEncodedComment(U8* data,int data_size, std::string& output);
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
// </edit>
|
// </edit>
|
||||||
|
|||||||
Reference in New Issue
Block a user