Home | History | Annotate | Download | only in server
      1 /* Copyright (c) 2013 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_DBUS_CONTROL_H_
      7 #define CRAS_DBUS_CONTROL_H_
      8 
      9 /* Starts the dbus control interface, begins listening for incoming messages. */
     10 void cras_dbus_control_start(DBusConnection *conn);
     11 
     12 /* Stops monitoring the dbus interface for command messages. */
     13 void cras_dbus_control_stop();
     14 
     15 #endif /* CRAS_DBUS_CONTROL_H_ */
     16