xref: /haiku/src/add-ons/kernel/bluetooth/hci/acl.h (revision 99d027cd0238c1d86da86d7c3f4200509ccc61a6)
1 /*
2  * Copyright 2008 Oliver Ruiz Dorantes, oliver.ruiz.dorantes_at_gmail.com
3  * All rights reserved. Distributed under the terms of the MIT License.
4  */
5 #ifndef _ACL_PROC_H_
6 #define _ACL_PROC_H_
7 
8 #include <net_buffer.h>
9 
10 #include <bluetooth/HCI/btHCI.h>
11 
12 status_t AclAssembly(net_buffer* buffer, hci_id hid);
13 
14 status_t InitializeAclConnectionThread();
15 status_t QuitAclConnectionThread();
16 
17 #endif
18