Commit | Line | Data |
---|---|---|
81923e5c BA |
1 | #ifndef PPAM_PACK_H |
2 | #define PPAM_PACK_H | |
3 | ||
4 | #include "Util/types.h" | |
5 | ||
6 | // serialize a Work_t object into a bytes string | |
7 | void pack_work(Work_t* work, uint32_t nbSeriesInChunk, Byte* packedWork); | |
8 | ||
9 | // serialize a Result_t object into a bytes string | |
10 | void pack_result(Result_t* result, Byte* packedResult); | |
11 | ||
12 | #endif |