1 /* 2 * Copyright 2018 Oticon A/S 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef BS_PC_BASE_FIFO_USER_H 8 #define BS_PC_BASE_FIFO_USER_H 9 10 /** 11 * For other modules which also want to create FIFOs in the com directory 12 */ 13 14 #ifdef __cplusplus 15 extern "C"{ 16 #endif 17 18 extern char *pb_com_path; 19 extern int pb_com_path_length; 20 21 extern int pb_create_fifo_if_not_there(const char* fifo_name); 22 23 #ifdef __cplusplus 24 } 25 #endif 26 27 #endif 28