complete first draft of package
[epclust.git] / old_C_code / stage1 / src / MPI_Communication / unpack.h
CommitLineData
ab4a34ef
BA
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
7Work_t* unpack_work(Byte* packedWork, uint32_t nbSeriesInChunk);
8
9// deserialize a Result_t object from a bytes string
10Result_t* unpack_result(Byte* packedResult);
11
12#endif