commit last state
[ppam-mpi.git] / code / src / MPI_Communication / pack.h
CommitLineData
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
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