36#ifndef THIRD_PARTY_SNAPPY_OPENSOURCE_SNAPPY_STUBS_PUBLIC_H_
37#define THIRD_PARTY_SNAPPY_OPENSOURCE_SNAPPY_STUBS_PUBLIC_H_
53#define SNAPPY_PATCHLEVEL 3
54#define SNAPPY_VERSION \
55 ((SNAPPY_MAJOR << 16) | (SNAPPY_MINOR << 8) | SNAPPY_PATCHLEVEL)
71typedef signed char int8;
72typedef unsigned char uint8;
74typedef unsigned short uint16;
76typedef unsigned int uint32;
77typedef long long int64;
78typedef unsigned long long uint64;
81typedef std::string string;
83#define DISALLOW_COPY_AND_ASSIGN(TypeName) \
84 TypeName(const TypeName&); \
85 void operator=(const TypeName&)
unsigned long long uint64_t