1 /* Copyright (c) 2013 The Chromium 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_BT_MANAGER_H_ 7 #define CRAS_BT_MANAGER_H_ 8 9 #include <dbus/dbus.h> 10 11 void cras_bt_start(DBusConnection *conn); 12 void cras_bt_stop(DBusConnection *conn); 13 14 #endif /* CRAS_BT_MANAGER_H_ */ 15