M2_SETI/T2/tp/exercice-1/iAcquisitionManager.h
2022-11-18 15:07:43 +01:00

18 lines
No EOL
314 B
C
Executable file

#ifndef I_ACQUISITION_MANAGER_H
#define I_ACQUISITION_MANAGER_H
#include "msg.h"
/**
* Get the number of produced messages.
*/
unsigned int getProducedCount(void);
/**
* Gets a message if any, otherwise waits for a message.
*/
MSG_BLOCK getMessage(void);
//TODO create message accessors prototype here.
#endif