• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

android/bluetooth/23-Nov-2023-3,1231,351

bluetooth/23-Nov-2023-1,850860

Android.bpD23-Nov-20234.1 KiB108105

BUILD.gnD23-Nov-20231.2 KiB4339

READMED23-Nov-2023604 1310

README

1This directory contains all the "common" sources between the bluetooth daemon
2and our client library. All source files here are under the "bluetooth"
3subdirectory, which is the exported root path for the client static library.
4Only common files should go here. All headers that go into common/bluetooth must
5only include other headers from common/bluetooth and must use "bluetooth" as the
6root path, e.g.:
7
8#include <bluetooth/uuid.h>
9
10This is so that client applications that link against the client library have
11one common include path exported to them, and our headers can find eachother
12within that.
13