8976dbe878
- Some styling (Mika Lindqvist) git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26799 a95241bf-73f2-0310-859d-f6bbb57e9c96
18 lines
348 B
C
18 lines
348 B
C
/*
|
|
* Copyright 2008 Mika Lindqvist, monni1995_at_gmail.com
|
|
* All rights reserved. Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _BTHCI_SCO_H_
|
|
#define _BTHCI_SCO_H_
|
|
|
|
#include <bluetooth/HCI/btHCI.h>
|
|
|
|
#define HCI_SCO_HDR_SIZE 3
|
|
|
|
struct hci_sco_header {
|
|
uint16 handle;
|
|
uint8 slen;
|
|
} __attribute__((packed));
|
|
|
|
#endif // _BTHCI_SCO_H_
|