1 /* Copyright 2019 The Chromium OS Authors. All rights reserved. 2 * Use of this source code is governed by a BSD-style license that can be 3 * found in the LICENSE file. 4 */ 5 6 #ifndef CRAS_ALSA_PLUGIN_IO_H_ 7 #define CRAS_ALSA_PLUGIN_IO_H_ 8 9 /* 10 * Disclaimer: 11 * The ALSA plugin path in CRAS is intended to be used for development or 12 * testing. CrOS audio team is not responsible for nor provides hot-fix to 13 * any breakage if it’s used in production code. 14 */ 15 16 void alsa_pluigin_io_destroy_all(); 17 18 void cras_alsa_plugin_io_init(const char *device_config_dir); 19 20 #endif /* CRAS_ALSA_PLUGIN_IO_H_ */ 21