Remove prefixes and adapt the JSR82 api a bit more to the Be style

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24251 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Oliver Ruiz Dorantes
2008-03-05 23:29:04 +00:00
parent cf095a3348
commit fc892ed429
4 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -100,9 +100,9 @@ struct hci_command_header {
#define OCF_WRITE_LOCAL_NAME 0x0013 #define OCF_WRITE_LOCAL_NAME 0x0013
#define OCF_READ_LOCAL_NAME 0x0014 #define OCF_READ_LOCAL_NAME 0x0014
struct hci_read_local_name { struct hci_rp_read_local_name {
uint8 status; uint8 status;
char local_name[248]; char local_name[HCI_DEVICE_NAME_SIZE];
} __attribute__ ((packed)); } __attribute__ ((packed));
#define OCF_WRITE_CA_TIMEOUT 0x0016 #define OCF_WRITE_CA_TIMEOUT 0x0016
+1 -1
View File
@@ -12,7 +12,7 @@
#include <bluetooth/HCI/btHCI.h> #include <bluetooth/HCI/btHCI.h>
#include <bluetooth/HCI/btHCI_transport.h> #include <bluetooth/HCI/btHCI_transport.h>
#include <net/net_buffer.h> #include <net_buffer.h>
/* defines */ /* defines */
#define BT_HCI_MODULE_NAME "bus_managers/hci/v1" #define BT_HCI_MODULE_NAME "bus_managers/hci/v1"
+1 -1
View File
@@ -10,7 +10,7 @@
#include <bluetooth/HCI/btHCI.h> #include <bluetooth/HCI/btHCI.h>
#include <net/net_buffer.h> #include <net_buffer.h>
#include <Drivers.h> #include <Drivers.h>
typedef enum { ANCILLYANT = 1, typedef enum { ANCILLYANT = 1,
+1 -1
View File
@@ -37,7 +37,7 @@ class LocalDevice {
BString GetFriendlyName(); BString GetFriendlyName();
DeviceClass GetDeviceClass(); DeviceClass GetDeviceClass();
/* Possible throwing */ /* Possible throwing */
bool SetDiscoverable(int mode); status_t SetDiscoverable(int mode);
BString GetProperty(const char* property); BString GetProperty(const char* property);
void GetProperty(const char* property, uint32* value); void GetProperty(const char* property, uint32* value);