1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/** * * @brief Port specific includes go in this file * */ #ifndef __PORT_H #define __PORT_H #include <pthread.h> #include <mqueue.h> #include <stdint.h> #include <errno.h> #include "stream.h" int initialize_devices(int num_devices, p_stream_t *streams); #endif