major folder reorganisation, R pkg is now epclust/ at first level. Experimental usage...
[epclust.git] / old_C_code / stage1 / src / MPI_Communication / unpack.h
diff --git a/old_C_code/stage1/src/MPI_Communication/unpack.h b/old_C_code/stage1/src/MPI_Communication/unpack.h
new file mode 100644 (file)
index 0000000..3c7b414
--- /dev/null
@@ -0,0 +1,12 @@
+#ifndef PPAM_UNPACK_H
+#define PPAM_UNPACK_H
+
+#include "Util/types.h"
+
+// deserialize a Work_t object from a bytes string
+Work_t* unpack_work(Byte* packedWork, uint32_t nbSeriesInChunk);
+
+// deserialize a Result_t object from a bytes string
+Result_t* unpack_result(Byte* packedResult);
+
+#endif