diff options
Diffstat (limited to 'base/pickle.h')
-rw-r--r-- | base/pickle.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/base/pickle.h b/base/pickle.h index 3a17007..66340ca 100644 --- a/base/pickle.h +++ b/base/pickle.h @@ -67,6 +67,7 @@ class Pickle { bool ReadInt(void** iter, int* result) const; bool ReadLong(void** iter, long* result) const; bool ReadSize(void** iter, size_t* result) const; + bool ReadUInt32(void** iter, uint32* result) const; bool ReadInt64(void** iter, int64* result) const; bool ReadIntPtr(void** iter, intptr_t* result) const; bool ReadString(void** iter, std::string* result) const; @@ -94,6 +95,9 @@ class Pickle { bool WriteSize(size_t value) { return WriteBytes(&value, sizeof(value)); } + bool WriteUInt32(uint32 value) { + return WriteBytes(&value, sizeof(value)); + } bool WriteInt64(int64 value) { return WriteBytes(&value, sizeof(value)); } |