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
12status_t AclAssembly(net_buffer* buffer, hci_id hid);
13
14status_t InitializeAclConnectionThread();
15status_t QuitAclConnectionThread();
16
17#endif
18