diff options
Diffstat (limited to 'src/marshal.h')
-rw-r--r-- | src/marshal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/marshal.h b/src/marshal.h index 49d58e4..977a89b 100644 --- a/src/marshal.h +++ b/src/marshal.h @@ -44,6 +44,7 @@ class Entry; void marshalInt(StorageIntf *s,int v); void marshalUInt(StorageIntf *s,uint v); +void marshalUInt64(StorageIntf *s,uint64 v); void marshalBool(StorageIntf *s,bool b); void marshalQCString(StorageIntf *s,const QCString &str); void marshalQGString(StorageIntf *s,const QGString &str); @@ -70,6 +71,7 @@ void marshalEntryTree(StorageIntf *s,Entry *e); int unmarshalInt(StorageIntf *s); uint unmarshalUInt(StorageIntf *s); +uint64 unmarshalUInt64(StorageIntf *s); bool unmarshalBool(StorageIntf *s); QCString unmarshalQCString(StorageIntf *s); QGString unmarshalQGString(StorageIntf *s); |