forked from solettaproject/soletta
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsol-bluetooth-impl-none.c
More file actions
147 lines (125 loc) · 3.02 KB
/
sol-bluetooth-impl-none.c
File metadata and controls
147 lines (125 loc) · 3.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/*
* This file is part of the Soletta Project
*
* Copyright (C) 2016 Intel Corporation. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <sol-bluetooth.h>
SOL_API struct sol_bt_conn *
sol_bt_conn_ref(struct sol_bt_conn *conn)
{
return NULL;
}
SOL_API void
sol_bt_conn_unref(struct sol_bt_conn *conn)
{
}
SOL_API struct sol_bt_conn *
sol_bt_connect(const struct sol_network_link_addr *addr,
bool (*on_connect)(void *user_data, struct sol_bt_conn *conn),
void (*on_disconnect)(void *user_data, struct sol_bt_conn *conn),
void (*on_error)(void *user_data, int error),
const void *user_data)
{
return NULL;
}
SOL_API int
sol_bt_disconnect(struct sol_bt_conn *conn)
{
return -ENOSYS;
}
SOL_API struct sol_bt_session *
sol_bt_enable(void (*enabled)(void *data, bool powered), const void *user_data)
{
return NULL;
}
SOL_API int
sol_bt_disable(struct sol_bt_session *session)
{
return -ENOSYS;
}
SOL_API struct sol_bt_scan_pending *
sol_bt_start_scan(enum sol_bt_transport transport,
void (*cb)(void *user_data, const struct sol_bt_device_info *device),
const void *user_data)
{
return NULL;
}
SOL_API int
sol_bt_stop_scan(struct sol_bt_scan_pending *handle)
{
return -ENOSYS;
}
SOL_API const struct sol_network_link_addr *
sol_bt_conn_get_addr(const struct sol_bt_conn *conn)
{
return NULL;
}
SOL_API const struct sol_bt_device_info *
sol_bt_conn_get_device_info(const struct sol_bt_conn *conn)
{
return NULL;
}
SOL_API int
sol_bt_conn_pair(struct sol_bt_conn *conn,
void (*cb)(void *user_data, bool success, struct sol_bt_conn *conn),
void *user_data)
{
return -ENOSYS;
}
SOL_API int
sol_bt_conn_pair_cancel(struct sol_bt_conn *conn)
{
return -ENOSYS;
}
SOL_API int
sol_bt_forget_device(const struct sol_network_link_addr *addr)
{
return -ENOSYS;
}
SOL_API int
sol_bt_register_agent(const struct sol_bt_agent *agent, void *data)
{
return -ENOSYS;
}
SOL_API int
sol_bt_unregister_agent(const struct sol_bt_agent *agent)
{
return -ENOSYS;
}
SOL_API int
sol_bt_agent_reply_passkey_entry(struct sol_bt_conn *conn, uint32_t passkey)
{
return -ENOSYS;
}
SOL_API int
sol_bt_agent_reply_cancel(struct sol_bt_conn *conn)
{
return -ENOSYS;
}
SOL_API int
sol_bt_agent_reply_passkey_confirm(struct sol_bt_conn *conn)
{
return -ENOSYS;
}
SOL_API int
sol_bt_agent_reply_pairing_confirm(struct sol_bt_conn *conn)
{
return -ENOSYS;
}
SOL_API int
sol_bt_agent_reply_pincode_entry(struct sol_bt_conn *conn, const char *pin)
{
return -ENOSYS;
}