CMake build system, big pile of libs: bspatch, quazip, java, the launcher
This commit is contained in:
parent
d6d5c86a73
commit
b1d00fce8d
69 changed files with 16978 additions and 27 deletions
26
quazip/quacrc32.h
Normal file
26
quazip/quacrc32.h
Normal file
|
@ -0,0 +1,26 @@
|
|||
#ifndef QUACRC32_H
|
||||
#define QUACRC32_H
|
||||
|
||||
#include "quachecksum32.h"
|
||||
|
||||
///CRC32 checksum
|
||||
/** \class QuaCrc32 quacrc32.h <quazip/quacrc32.h>
|
||||
* This class wrappers the crc32 function with the QuaChecksum32 interface.
|
||||
* See QuaChecksum32 for more info.
|
||||
*/
|
||||
class QUAZIP_EXPORT QuaCrc32 : public QuaChecksum32 {
|
||||
|
||||
public:
|
||||
QuaCrc32();
|
||||
|
||||
quint32 calculate(const QByteArray &data);
|
||||
|
||||
void reset();
|
||||
void update(const QByteArray &buf);
|
||||
quint32 value();
|
||||
|
||||
private:
|
||||
quint32 checksum;
|
||||
};
|
||||
|
||||
#endif //QUACRC32_H
|
Loading…
Add table
Add a link
Reference in a new issue