|
2644
|
1 #include "bluetooth.h"
|
|
|
2 #define DEBUG 1
|
|
|
3 static gboolean plugin_active = FALSE,exiting=FALSE;
|
|
|
4
|
|
|
5 void bluetooth_init ( void );
|
|
|
6 void bluetooth_cleanup ( void );
|
|
|
7 void bt_cfg(void);
|
|
|
8 void bt_about(void);
|
|
|
9 GeneralPlugin bluetooth_gp =
|
|
|
10 {
|
|
|
11 .description = "Bluetooth audio suport",
|
|
|
12 .init = bluetooth_init,
|
|
|
13 .about = bt_about,
|
|
|
14 .configure = bt_cfg,
|
|
|
15 .cleanup = bluetooth_cleanup
|
|
|
16 };
|
|
|
17 GeneralPlugin *bluetooth_gplist[] = { &bluetooth_gp, NULL };
|
|
|
18 DECLARE_PLUGIN(bluetooth_gp, NULL, NULL, NULL, NULL, NULL, bluetooth_gplist, NULL, NULL)
|
|
|
19
|
|
|
20 void bluetooth_init ( void )
|
|
|
21 {
|
|
|
22
|
|
|
23 }
|
|
|
24
|
|
|
25 void bluetooth_cleanup ( void )
|
|
|
26 {
|
|
|
27
|
|
|
28 }
|
|
|
29 /*void bt_cfg( void )
|
|
|
30 {
|
|
|
31
|
|
|
32 }
|
|
|
33 */
|
|
|
34 void bt_about( void )
|
|
|
35 {
|
|
|
36
|
|
|
37 }
|
|
|
38
|
|
|
39
|
|
|
40 void refresh_call(void){
|
|
|
41 printf("refresh function called\n");
|
|
|
42 }
|
|
|
43
|
|
|
44 void connect_call(void){
|
|
|
45 printf("connect function \n");
|
|
|
46 }
|
|
|
47
|