commit last state
[ppam-mpi.git] / code / src / MPI_Communication / unpack.h
1 #ifndef PPAM_UNPACK_H
2 #define PPAM_UNPACK_H
3
4 #include "Util/types.h"
5
6 // deserialize a Work_t object from a bytes string
7 Work_t* unpack_work(Byte* packedWork, uint32_t nbSeriesInChunk);
8
9 // deserialize a Result_t object from a bytes string
10 Result_t* unpack_result(Byte* packedResult);
11
12 #endif