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