ITS
apiData.h
Go to the documentation of this file.
1 
5 #ifndef APIDATA_H
6 #define APIDATA_H
7 
8 #include <QtGlobal>
9 
17 quint64 extractUInt(char *data, int l, int *offset);
25 qint64 extractInt(char *data, int l, int *offset);
31 void passBytes(int *offset, int l);
32 
33 #endif // APIDATA_H
void passBytes(int *offset, int l)
passBytes Increase the offset.
Definition: apiData.cpp:41
quint64 extractUInt(char *data, int l, int *offset)
extractUInt Extract an unsigned integer from byte array.
Definition: apiData.cpp:3
qint64 extractInt(char *data, int l, int *offset)
extractInt Extract an signed integer from byte array.
Definition: apiData.cpp:22