complete first draft of package
[epclust.git] / old_C_code / stage1 / src / MPI_Communication / pack.h
CommitLineData
ab4a34ef
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
7void pack_work(Work_t* work, uint32_t nbSeriesInChunk, Byte* packedWork);
8
9// serialize a Result_t object into a bytes string
10void pack_result(Result_t* result, Byte* packedResult);
11
12#endif