blob: 3a073d00ddb677c0901b29058b0ba87a71391dba [file] [log] [blame]
/* Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef CRAS_HFP_IODEV_H_
#define CRAS_HFP_IODEV_H_
#include "cras_bt_device.h"
#include "cras_hfp_info.h"
#include "cras_types.h"
struct hfp_slc_handle;
/*
* Creates an hfp iodev.
*/
struct cras_iodev *hfp_iodev_create(
enum CRAS_STREAM_DIRECTION dir,
struct cras_bt_device *device,
struct hfp_slc_handle *slc,
enum cras_bt_device_profile profile,
struct hfp_info *info);
void hfp_iodev_destroy(struct cras_iodev *iodev);
#endif /* CRAS_HFP_IODEV_H_ */