1 /*
2  * Copyright 2018 Oticon A/S
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 #ifndef BS_PLAYBACK_ARGS_H
7 #define BS_PLAYBACK_ARGS_H
8 
9 #include "bs_types.h"
10 #include "bs_cmd_line.h"
11 #include "bs_cmd_line_typical.h"
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
17 typedef struct{
18   BS_BASIC_DEVICE_OPTIONS_FIELDS
19   bool txoff;
20   bool rxoff;
21   bool rssioff;
22   char* inputf;
23 } playback_args_t;
24 
25 void bs_playback_argsparse(int argc, char *argv[], playback_args_t *args);
26 
27 #ifdef __cplusplus
28 }
29 #endif
30 
31 #endif
32