hc
2024-01-05 071106ecf68c401173c58808b1cf5f68cc50d390
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