hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * BlueALSA - ctl.h
 * Copyright (c) 2016-2018 Arkadiusz Bokowy
 *
 * This file is a part of bluez-alsa.
 *
 * This project is licensed under the terms of the MIT license.
 *
 */
 
#ifndef BLUEALSA_CTL_H_
#define BLUEALSA_CTL_H_
 
#include "shared/ctl-proto.h"
 
int bluealsa_ctl_thread_init(void);
void bluealsa_ctl_free(void);
 
int bluealsa_ctl_event(enum ba_event event);
 
#endif