1 /* 2 * Copyright 2008 Oliver Ruiz Dorantes. All rights reserved. 3 * Copyright 2024, Haiku, Inc. All rights reserved. 4 * Distributed under the terms of the MIT License. 5 */ 6 #ifndef L2CAP_INTERNAL_H 7 #define L2CAP_INTERNAL_H 8 9 10 #include <btCoreData.h> 11 #include <net_protocol.h> 12 #include <net_stack.h> 13 14 15 extern bluetooth_core_data_module_info *btCoreData; 16 extern bt_hci_module_info* btDevices; 17 extern net_buffer_module_info *gBufferModule; 18 extern net_stack_module_info *gStackModule; 19 extern net_socket_module_info *gSocketModule; 20 21 22 #endif // L2CAP_INTERNAL_H 23