diff options
| author | Johannes Herman <johannes.herman@gmail.com> | 2025-10-18 02:51:36 +0200 |
|---|---|---|
| committer | Johannes Herman <johannes.herman@gmail.com> | 2025-10-18 02:51:36 +0200 |
| commit | 2b2a25794fae72dc2f05bc3a670c32cd00f2cace (patch) | |
| tree | 0297afcaa0d9ef12a00666dca00d660ee46f3828 /inc | |
| parent | 1ed62f1b59c65a00b5db42ba1c6396f59cf96a3b (diff) | |
parsing and writing of snap delta chunk
Diffstat (limited to 'inc')
| -rw-r--r-- | inc/demo.h | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -63,8 +63,18 @@ typedef struct typedef struct { - int datasize; - char *data; + unsigned short type; + unsigned short id; + int size; + int *data; +} demodeltaitem; + +typedef struct +{ + int numremoveditems; + int numitemdeltas; + int *removeditemkeys; + demodeltaitem *itemdeltas; } demodelta; typedef struct |
