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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
|
/*
* Generated by gdbus-codegen 2.45.4. DO NOT EDIT.
*
* The license of this code is the same as for the source it was derived from.
*/
#ifndef __GENERATED_CODE_H__
#define __GENERATED_CODE_H__
#include <gio/gio.h>
G_BEGIN_DECLS
/* ------------------------------------------------------------------------ */
/* Declarations for org.bluez.Adapter1 */
#define TYPE_ADAPTER1 (adapter1_get_type ())
#define ADAPTER1(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_ADAPTER1, Adapter1))
#define IS_ADAPTER1(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_ADAPTER1))
#define ADAPTER1_GET_IFACE(o) (G_TYPE_INSTANCE_GET_INTERFACE ((o), TYPE_ADAPTER1, Adapter1Iface))
struct _Adapter1;
typedef struct _Adapter1 Adapter1;
typedef struct _Adapter1Iface Adapter1Iface;
struct _Adapter1Iface
{
GTypeInterface parent_iface;
gboolean (*handle_remove_device) (
Adapter1 *object,
GDBusMethodInvocation *invocation,
const gchar *arg_device);
gboolean (*handle_start_discovery) (
Adapter1 *object,
GDBusMethodInvocation *invocation);
gboolean (*handle_stop_discovery) (
Adapter1 *object,
GDBusMethodInvocation *invocation);
const gchar * (*get_address) (Adapter1 *object);
const gchar * (*get_alias) (Adapter1 *object);
guint (*get_class) (Adapter1 *object);
gboolean (*get_discoverable) (Adapter1 *object);
guint (*get_discoverable_timeout) (Adapter1 *object);
gboolean (*get_discovering) (Adapter1 *object);
const gchar * (*get_modalias) (Adapter1 *object);
const gchar * (*get_name) (Adapter1 *object);
gboolean (*get_pairable) (Adapter1 *object);
guint (*get_pairable_timeout) (Adapter1 *object);
gboolean (*get_powered) (Adapter1 *object);
const gchar *const * (*get_uuids) (Adapter1 *object);
};
GType adapter1_get_type (void) G_GNUC_CONST;
GDBusInterfaceInfo *adapter1_interface_info (void);
guint adapter1_override_properties (GObjectClass *klass, guint property_id_begin);
/* D-Bus method call completion functions: */
void adapter1_complete_start_discovery (
Adapter1 *object,
GDBusMethodInvocation *invocation);
void adapter1_complete_stop_discovery (
Adapter1 *object,
GDBusMethodInvocation *invocation);
void adapter1_complete_remove_device (
Adapter1 *object,
GDBusMethodInvocation *invocation);
/* D-Bus method calls: */
void adapter1_call_start_discovery (
Adapter1 *proxy,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
gboolean adapter1_call_start_discovery_finish (
Adapter1 *proxy,
GAsyncResult *res,
GError **error);
gboolean adapter1_call_start_discovery_sync (
Adapter1 *proxy,
GCancellable *cancellable,
GError **error);
void adapter1_call_stop_discovery (
Adapter1 *proxy,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
gboolean adapter1_call_stop_discovery_finish (
Adapter1 *proxy,
GAsyncResult *res,
GError **error);
gboolean adapter1_call_stop_discovery_sync (
Adapter1 *proxy,
GCancellable *cancellable,
GError **error);
void adapter1_call_remove_device (
Adapter1 *proxy,
const gchar *arg_device,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
gboolean adapter1_call_remove_device_finish (
Adapter1 *proxy,
GAsyncResult *res,
GError **error);
gboolean adapter1_call_remove_device_sync (
Adapter1 *proxy,
const gchar *arg_device,
GCancellable *cancellable,
GError **error);
/* D-Bus property accessors: */
const gchar *adapter1_get_address (Adapter1 *object);
gchar *adapter1_dup_address (Adapter1 *object);
void adapter1_set_address (Adapter1 *object, const gchar *value);
const gchar *adapter1_get_name (Adapter1 *object);
gchar *adapter1_dup_name (Adapter1 *object);
void adapter1_set_name (Adapter1 *object, const gchar *value);
const gchar *adapter1_get_alias (Adapter1 *object);
gchar *adapter1_dup_alias (Adapter1 *object);
void adapter1_set_alias (Adapter1 *object, const gchar *value);
guint adapter1_get_class (Adapter1 *object);
void adapter1_set_class (Adapter1 *object, guint value);
gboolean adapter1_get_powered (Adapter1 *object);
void adapter1_set_powered (Adapter1 *object, gboolean value);
gboolean adapter1_get_discoverable (Adapter1 *object);
void adapter1_set_discoverable (Adapter1 *object, gboolean value);
guint adapter1_get_discoverable_timeout (Adapter1 *object);
void adapter1_set_discoverable_timeout (Adapter1 *object, guint value);
gboolean adapter1_get_pairable (Adapter1 *object);
void adapter1_set_pairable (Adapter1 *object, gboolean value);
guint adapter1_get_pairable_timeout (Adapter1 *object);
void adapter1_set_pairable_timeout (Adapter1 *object, guint value);
gboolean adapter1_get_discovering (Adapter1 *object);
void adapter1_set_discovering (Adapter1 *object, gboolean value);
const gchar *const *adapter1_get_uuids (Adapter1 *object);
gchar **adapter1_dup_uuids (Adapter1 *object);
void adapter1_set_uuids (Adapter1 *object, const gchar *const *value);
const gchar *adapter1_get_modalias (Adapter1 *object);
gchar *adapter1_dup_modalias (Adapter1 *object);
void adapter1_set_modalias (Adapter1 *object, const gchar *value);
/* ---- */
#define TYPE_ADAPTER1_PROXY (adapter1_proxy_get_type ())
#define ADAPTER1_PROXY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_ADAPTER1_PROXY, Adapter1Proxy))
#define ADAPTER1_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), TYPE_ADAPTER1_PROXY, Adapter1ProxyClass))
#define ADAPTER1_PROXY_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_ADAPTER1_PROXY, Adapter1ProxyClass))
#define IS_ADAPTER1_PROXY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_ADAPTER1_PROXY))
#define IS_ADAPTER1_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_ADAPTER1_PROXY))
typedef struct _Adapter1Proxy Adapter1Proxy;
typedef struct _Adapter1ProxyClass Adapter1ProxyClass;
typedef struct _Adapter1ProxyPrivate Adapter1ProxyPrivate;
struct _Adapter1Proxy
{
/*< private >*/
GDBusProxy parent_instance;
Adapter1ProxyPrivate *priv;
};
struct _Adapter1ProxyClass
{
GDBusProxyClass parent_class;
};
GType adapter1_proxy_get_type (void) G_GNUC_CONST;
void adapter1_proxy_new (
GDBusConnection *connection,
GDBusProxyFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
Adapter1 *adapter1_proxy_new_finish (
GAsyncResult *res,
GError **error);
Adapter1 *adapter1_proxy_new_sync (
GDBusConnection *connection,
GDBusProxyFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GError **error);
void adapter1_proxy_new_for_bus (
GBusType bus_type,
GDBusProxyFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
Adapter1 *adapter1_proxy_new_for_bus_finish (
GAsyncResult *res,
GError **error);
Adapter1 *adapter1_proxy_new_for_bus_sync (
GBusType bus_type,
GDBusProxyFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GError **error);
/* ---- */
#define TYPE_ADAPTER1_SKELETON (adapter1_skeleton_get_type ())
#define ADAPTER1_SKELETON(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_ADAPTER1_SKELETON, Adapter1Skeleton))
#define ADAPTER1_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), TYPE_ADAPTER1_SKELETON, Adapter1SkeletonClass))
#define ADAPTER1_SKELETON_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_ADAPTER1_SKELETON, Adapter1SkeletonClass))
#define IS_ADAPTER1_SKELETON(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_ADAPTER1_SKELETON))
#define IS_ADAPTER1_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_ADAPTER1_SKELETON))
typedef struct _Adapter1Skeleton Adapter1Skeleton;
typedef struct _Adapter1SkeletonClass Adapter1SkeletonClass;
typedef struct _Adapter1SkeletonPrivate Adapter1SkeletonPrivate;
struct _Adapter1Skeleton
{
/*< private >*/
GDBusInterfaceSkeleton parent_instance;
Adapter1SkeletonPrivate *priv;
};
struct _Adapter1SkeletonClass
{
GDBusInterfaceSkeletonClass parent_class;
};
GType adapter1_skeleton_get_type (void) G_GNUC_CONST;
Adapter1 *adapter1_skeleton_new (void);
/* ------------------------------------------------------------------------ */
/* Declarations for org.bluez.Device1 */
#define TYPE_DEVICE1 (device1_get_type ())
#define DEVICE1(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_DEVICE1, Device1))
#define IS_DEVICE1(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_DEVICE1))
#define DEVICE1_GET_IFACE(o) (G_TYPE_INSTANCE_GET_INTERFACE ((o), TYPE_DEVICE1, Device1Iface))
struct _Device1;
typedef struct _Device1 Device1;
typedef struct _Device1Iface Device1Iface;
struct _Device1Iface
{
GTypeInterface parent_iface;
gboolean (*handle_cancel_pairing) (
Device1 *object,
GDBusMethodInvocation *invocation);
gboolean (*handle_connect) (
Device1 *object,
GDBusMethodInvocation *invocation);
gboolean (*handle_connect_profile) (
Device1 *object,
GDBusMethodInvocation *invocation,
const gchar *arg_UUID);
gboolean (*handle_disconnect) (
Device1 *object,
GDBusMethodInvocation *invocation);
gboolean (*handle_disconnect_profile) (
Device1 *object,
GDBusMethodInvocation *invocation,
const gchar *arg_UUID);
gboolean (*handle_pair) (
Device1 *object,
GDBusMethodInvocation *invocation);
const gchar * (*get_adapter) (Device1 *object);
const gchar * (*get_address) (Device1 *object);
const gchar * (*get_alias) (Device1 *object);
guint16 (*get_appearance) (Device1 *object);
gboolean (*get_blocked) (Device1 *object);
guint (*get_class) (Device1 *object);
gboolean (*get_connected) (Device1 *object);
const gchar * (*get_icon) (Device1 *object);
gboolean (*get_legacy_pairing) (Device1 *object);
const gchar * (*get_modalias) (Device1 *object);
const gchar * (*get_name) (Device1 *object);
gboolean (*get_paired) (Device1 *object);
gint16 (*get_rssi) (Device1 *object);
gboolean (*get_trusted) (Device1 *object);
const gchar *const * (*get_uuids) (Device1 *object);
};
GType device1_get_type (void) G_GNUC_CONST;
GDBusInterfaceInfo *device1_interface_info (void);
guint device1_override_properties (GObjectClass *klass, guint property_id_begin);
/* D-Bus method call completion functions: */
void device1_complete_disconnect (
Device1 *object,
GDBusMethodInvocation *invocation);
void device1_complete_connect (
Device1 *object,
GDBusMethodInvocation *invocation);
void device1_complete_connect_profile (
Device1 *object,
GDBusMethodInvocation *invocation);
void device1_complete_disconnect_profile (
Device1 *object,
GDBusMethodInvocation *invocation);
void device1_complete_pair (
Device1 *object,
GDBusMethodInvocation *invocation);
void device1_complete_cancel_pairing (
Device1 *object,
GDBusMethodInvocation *invocation);
/* D-Bus method calls: */
void device1_call_disconnect (
Device1 *proxy,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
gboolean device1_call_disconnect_finish (
Device1 *proxy,
GAsyncResult *res,
GError **error);
gboolean device1_call_disconnect_sync (
Device1 *proxy,
GCancellable *cancellable,
GError **error);
void device1_call_connect (
Device1 *proxy,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
gboolean device1_call_connect_finish (
Device1 *proxy,
GAsyncResult *res,
GError **error);
gboolean device1_call_connect_sync (
Device1 *proxy,
GCancellable *cancellable,
GError **error);
void device1_call_connect_profile (
Device1 *proxy,
const gchar *arg_UUID,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
gboolean device1_call_connect_profile_finish (
Device1 *proxy,
GAsyncResult *res,
GError **error);
gboolean device1_call_connect_profile_sync (
Device1 *proxy,
const gchar *arg_UUID,
GCancellable *cancellable,
GError **error);
void device1_call_disconnect_profile (
Device1 *proxy,
const gchar *arg_UUID,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
gboolean device1_call_disconnect_profile_finish (
Device1 *proxy,
GAsyncResult *res,
GError **error);
gboolean device1_call_disconnect_profile_sync (
Device1 *proxy,
const gchar *arg_UUID,
GCancellable *cancellable,
GError **error);
void device1_call_pair (
Device1 *proxy,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
gboolean device1_call_pair_finish (
Device1 *proxy,
GAsyncResult *res,
GError **error);
gboolean device1_call_pair_sync (
Device1 *proxy,
GCancellable *cancellable,
GError **error);
void device1_call_cancel_pairing (
Device1 *proxy,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
gboolean device1_call_cancel_pairing_finish (
Device1 *proxy,
GAsyncResult *res,
GError **error);
gboolean device1_call_cancel_pairing_sync (
Device1 *proxy,
GCancellable *cancellable,
GError **error);
/* D-Bus property accessors: */
const gchar *device1_get_address (Device1 *object);
gchar *device1_dup_address (Device1 *object);
void device1_set_address (Device1 *object, const gchar *value);
const gchar *device1_get_name (Device1 *object);
gchar *device1_dup_name (Device1 *object);
void device1_set_name (Device1 *object, const gchar *value);
const gchar *device1_get_alias (Device1 *object);
gchar *device1_dup_alias (Device1 *object);
void device1_set_alias (Device1 *object, const gchar *value);
guint device1_get_class (Device1 *object);
void device1_set_class (Device1 *object, guint value);
guint16 device1_get_appearance (Device1 *object);
void device1_set_appearance (Device1 *object, guint16 value);
const gchar *device1_get_icon (Device1 *object);
gchar *device1_dup_icon (Device1 *object);
void device1_set_icon (Device1 *object, const gchar *value);
gboolean device1_get_paired (Device1 *object);
void device1_set_paired (Device1 *object, gboolean value);
gboolean device1_get_trusted (Device1 *object);
void device1_set_trusted (Device1 *object, gboolean value);
gboolean device1_get_blocked (Device1 *object);
void device1_set_blocked (Device1 *object, gboolean value);
gboolean device1_get_legacy_pairing (Device1 *object);
void device1_set_legacy_pairing (Device1 *object, gboolean value);
gint16 device1_get_rssi (Device1 *object);
void device1_set_rssi (Device1 *object, gint16 value);
gboolean device1_get_connected (Device1 *object);
void device1_set_connected (Device1 *object, gboolean value);
const gchar *const *device1_get_uuids (Device1 *object);
gchar **device1_dup_uuids (Device1 *object);
void device1_set_uuids (Device1 *object, const gchar *const *value);
const gchar *device1_get_modalias (Device1 *object);
gchar *device1_dup_modalias (Device1 *object);
void device1_set_modalias (Device1 *object, const gchar *value);
const gchar *device1_get_adapter (Device1 *object);
gchar *device1_dup_adapter (Device1 *object);
void device1_set_adapter (Device1 *object, const gchar *value);
/* ---- */
#define TYPE_DEVICE1_PROXY (device1_proxy_get_type ())
#define DEVICE1_PROXY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_DEVICE1_PROXY, Device1Proxy))
#define DEVICE1_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), TYPE_DEVICE1_PROXY, Device1ProxyClass))
#define DEVICE1_PROXY_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_DEVICE1_PROXY, Device1ProxyClass))
#define IS_DEVICE1_PROXY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_DEVICE1_PROXY))
#define IS_DEVICE1_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_DEVICE1_PROXY))
typedef struct _Device1Proxy Device1Proxy;
typedef struct _Device1ProxyClass Device1ProxyClass;
typedef struct _Device1ProxyPrivate Device1ProxyPrivate;
struct _Device1Proxy
{
/*< private >*/
GDBusProxy parent_instance;
Device1ProxyPrivate *priv;
};
struct _Device1ProxyClass
{
GDBusProxyClass parent_class;
};
GType device1_proxy_get_type (void) G_GNUC_CONST;
void device1_proxy_new (
GDBusConnection *connection,
GDBusProxyFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
Device1 *device1_proxy_new_finish (
GAsyncResult *res,
GError **error);
Device1 *device1_proxy_new_sync (
GDBusConnection *connection,
GDBusProxyFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GError **error);
void device1_proxy_new_for_bus (
GBusType bus_type,
GDBusProxyFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
Device1 *device1_proxy_new_for_bus_finish (
GAsyncResult *res,
GError **error);
Device1 *device1_proxy_new_for_bus_sync (
GBusType bus_type,
GDBusProxyFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GError **error);
/* ---- */
#define TYPE_DEVICE1_SKELETON (device1_skeleton_get_type ())
#define DEVICE1_SKELETON(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_DEVICE1_SKELETON, Device1Skeleton))
#define DEVICE1_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), TYPE_DEVICE1_SKELETON, Device1SkeletonClass))
#define DEVICE1_SKELETON_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_DEVICE1_SKELETON, Device1SkeletonClass))
#define IS_DEVICE1_SKELETON(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_DEVICE1_SKELETON))
#define IS_DEVICE1_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_DEVICE1_SKELETON))
typedef struct _Device1Skeleton Device1Skeleton;
typedef struct _Device1SkeletonClass Device1SkeletonClass;
typedef struct _Device1SkeletonPrivate Device1SkeletonPrivate;
struct _Device1Skeleton
{
/*< private >*/
GDBusInterfaceSkeleton parent_instance;
Device1SkeletonPrivate *priv;
};
struct _Device1SkeletonClass
{
GDBusInterfaceSkeletonClass parent_class;
};
GType device1_skeleton_get_type (void) G_GNUC_CONST;
Device1 *device1_skeleton_new (void);
/* ------------------------------------------------------------------------ */
/* Declarations for org.bluez.GattService1 */
#define TYPE_GATT_SERVICE1 (gatt_service1_get_type ())
#define GATT_SERVICE1(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_GATT_SERVICE1, GattService1))
#define IS_GATT_SERVICE1(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_GATT_SERVICE1))
#define GATT_SERVICE1_GET_IFACE(o) (G_TYPE_INSTANCE_GET_INTERFACE ((o), TYPE_GATT_SERVICE1, GattService1Iface))
struct _GattService1;
typedef struct _GattService1 GattService1;
typedef struct _GattService1Iface GattService1Iface;
struct _GattService1Iface
{
GTypeInterface parent_iface;
const gchar *const * (*get_characteristics) (GattService1 *object);
const gchar * (*get_device) (GattService1 *object);
gboolean (*get_primary) (GattService1 *object);
const gchar * (*get_uuid) (GattService1 *object);
};
GType gatt_service1_get_type (void) G_GNUC_CONST;
GDBusInterfaceInfo *gatt_service1_interface_info (void);
guint gatt_service1_override_properties (GObjectClass *klass, guint property_id_begin);
/* D-Bus property accessors: */
const gchar *gatt_service1_get_uuid (GattService1 *object);
gchar *gatt_service1_dup_uuid (GattService1 *object);
void gatt_service1_set_uuid (GattService1 *object, const gchar *value);
const gchar *gatt_service1_get_device (GattService1 *object);
gchar *gatt_service1_dup_device (GattService1 *object);
void gatt_service1_set_device (GattService1 *object, const gchar *value);
gboolean gatt_service1_get_primary (GattService1 *object);
void gatt_service1_set_primary (GattService1 *object, gboolean value);
const gchar *const *gatt_service1_get_characteristics (GattService1 *object);
gchar **gatt_service1_dup_characteristics (GattService1 *object);
void gatt_service1_set_characteristics (GattService1 *object, const gchar *const *value);
/* ---- */
#define TYPE_GATT_SERVICE1_PROXY (gatt_service1_proxy_get_type ())
#define GATT_SERVICE1_PROXY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_GATT_SERVICE1_PROXY, GattService1Proxy))
#define GATT_SERVICE1_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), TYPE_GATT_SERVICE1_PROXY, GattService1ProxyClass))
#define GATT_SERVICE1_PROXY_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_GATT_SERVICE1_PROXY, GattService1ProxyClass))
#define IS_GATT_SERVICE1_PROXY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_GATT_SERVICE1_PROXY))
#define IS_GATT_SERVICE1_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_GATT_SERVICE1_PROXY))
typedef struct _GattService1Proxy GattService1Proxy;
typedef struct _GattService1ProxyClass GattService1ProxyClass;
typedef struct _GattService1ProxyPrivate GattService1ProxyPrivate;
struct _GattService1Proxy
{
/*< private >*/
GDBusProxy parent_instance;
GattService1ProxyPrivate *priv;
};
struct _GattService1ProxyClass
{
GDBusProxyClass parent_class;
};
GType gatt_service1_proxy_get_type (void) G_GNUC_CONST;
void gatt_service1_proxy_new (
GDBusConnection *connection,
GDBusProxyFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
GattService1 *gatt_service1_proxy_new_finish (
GAsyncResult *res,
GError **error);
GattService1 *gatt_service1_proxy_new_sync (
GDBusConnection *connection,
GDBusProxyFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GError **error);
void gatt_service1_proxy_new_for_bus (
GBusType bus_type,
GDBusProxyFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
GattService1 *gatt_service1_proxy_new_for_bus_finish (
GAsyncResult *res,
GError **error);
GattService1 *gatt_service1_proxy_new_for_bus_sync (
GBusType bus_type,
GDBusProxyFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GError **error);
/* ---- */
#define TYPE_GATT_SERVICE1_SKELETON (gatt_service1_skeleton_get_type ())
#define GATT_SERVICE1_SKELETON(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_GATT_SERVICE1_SKELETON, GattService1Skeleton))
#define GATT_SERVICE1_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), TYPE_GATT_SERVICE1_SKELETON, GattService1SkeletonClass))
#define GATT_SERVICE1_SKELETON_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_GATT_SERVICE1_SKELETON, GattService1SkeletonClass))
#define IS_GATT_SERVICE1_SKELETON(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_GATT_SERVICE1_SKELETON))
#define IS_GATT_SERVICE1_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_GATT_SERVICE1_SKELETON))
typedef struct _GattService1Skeleton GattService1Skeleton;
typedef struct _GattService1SkeletonClass GattService1SkeletonClass;
typedef struct _GattService1SkeletonPrivate GattService1SkeletonPrivate;
struct _GattService1Skeleton
{
/*< private >*/
GDBusInterfaceSkeleton parent_instance;
GattService1SkeletonPrivate *priv;
};
struct _GattService1SkeletonClass
{
GDBusInterfaceSkeletonClass parent_class;
};
GType gatt_service1_skeleton_get_type (void) G_GNUC_CONST;
GattService1 *gatt_service1_skeleton_new (void);
/* ------------------------------------------------------------------------ */
/* Declarations for org.bluez.GattCharacteristic1 */
#define TYPE_GATT_CHARACTERISTIC1 (gatt_characteristic1_get_type ())
#define GATT_CHARACTERISTIC1(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_GATT_CHARACTERISTIC1, GattCharacteristic1))
#define IS_GATT_CHARACTERISTIC1(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_GATT_CHARACTERISTIC1))
#define GATT_CHARACTERISTIC1_GET_IFACE(o) (G_TYPE_INSTANCE_GET_INTERFACE ((o), TYPE_GATT_CHARACTERISTIC1, GattCharacteristic1Iface))
struct _GattCharacteristic1;
typedef struct _GattCharacteristic1 GattCharacteristic1;
typedef struct _GattCharacteristic1Iface GattCharacteristic1Iface;
struct _GattCharacteristic1Iface
{
GTypeInterface parent_iface;
gboolean (*handle_read_value) (
GattCharacteristic1 *object,
GDBusMethodInvocation *invocation);
gboolean (*handle_start_notify) (
GattCharacteristic1 *object,
GDBusMethodInvocation *invocation);
gboolean (*handle_stop_notify) (
GattCharacteristic1 *object,
GDBusMethodInvocation *invocation);
gboolean (*handle_write_value) (
GattCharacteristic1 *object,
GDBusMethodInvocation *invocation,
const gchar *arg_value);
const gchar *const * (*get_descriptors) (GattCharacteristic1 *object);
const gchar *const * (*get_flags) (GattCharacteristic1 *object);
gboolean (*get_notifying) (GattCharacteristic1 *object);
const gchar * (*get_service) (GattCharacteristic1 *object);
const gchar * (*get_uuid) (GattCharacteristic1 *object);
const GBytes * (*get_value) (GattCharacteristic1 *object);
};
GType gatt_characteristic1_get_type (void) G_GNUC_CONST;
GDBusInterfaceInfo *gatt_characteristic1_interface_info (void);
guint gatt_characteristic1_override_properties (GObjectClass *klass, guint property_id_begin);
/* D-Bus method call completion functions: */
void gatt_characteristic1_complete_read_value (
GattCharacteristic1 *object,
GDBusMethodInvocation *invocation,
const gchar *value);
void gatt_characteristic1_complete_write_value (
GattCharacteristic1 *object,
GDBusMethodInvocation *invocation);
void gatt_characteristic1_complete_start_notify (
GattCharacteristic1 *object,
GDBusMethodInvocation *invocation);
void gatt_characteristic1_complete_stop_notify (
GattCharacteristic1 *object,
GDBusMethodInvocation *invocation);
/* D-Bus method calls: */
void gatt_characteristic1_call_read_value (
GattCharacteristic1 *proxy,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
gboolean gatt_characteristic1_call_read_value_finish (
GattCharacteristic1 *proxy,
GBytes **out_value,
GAsyncResult *res,
GError **error);
gboolean gatt_characteristic1_call_read_value_sync (
GattCharacteristic1 *proxy,
GBytes **out_value,
GCancellable *cancellable,
GError **error);
void gatt_characteristic1_call_write_value (
GattCharacteristic1 *proxy,
GBytes *arg_value,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
gboolean gatt_characteristic1_call_write_value_finish (
GattCharacteristic1 *proxy,
GAsyncResult *res,
GError **error);
gboolean gatt_characteristic1_call_write_value_sync (
GattCharacteristic1 *proxy,
GBytes *arg_value,
GCancellable *cancellable,
GError **error);
void gatt_characteristic1_call_start_notify (
GattCharacteristic1 *proxy,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
gboolean gatt_characteristic1_call_start_notify_finish (
GattCharacteristic1 *proxy,
GAsyncResult *res,
GError **error);
gboolean gatt_characteristic1_call_start_notify_sync (
GattCharacteristic1 *proxy,
GCancellable *cancellable,
GError **error);
void gatt_characteristic1_call_stop_notify (
GattCharacteristic1 *proxy,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
gboolean gatt_characteristic1_call_stop_notify_finish (
GattCharacteristic1 *proxy,
GAsyncResult *res,
GError **error);
gboolean gatt_characteristic1_call_stop_notify_sync (
GattCharacteristic1 *proxy,
GCancellable *cancellable,
GError **error);
/* D-Bus property accessors: */
const gchar *gatt_characteristic1_get_uuid (GattCharacteristic1 *object);
gchar *gatt_characteristic1_dup_uuid (GattCharacteristic1 *object);
void gatt_characteristic1_set_uuid (GattCharacteristic1 *object, const gchar *value);
const gchar *gatt_characteristic1_get_service (GattCharacteristic1 *object);
gchar *gatt_characteristic1_dup_service (GattCharacteristic1 *object);
void gatt_characteristic1_set_service (GattCharacteristic1 *object, const gchar *value);
const GBytes *gatt_characteristic1_get_value (GattCharacteristic1 *object);
GBytes *gatt_characteristic1_dup_value (GattCharacteristic1 *object);
void gatt_characteristic1_set_value (GattCharacteristic1 *object, const GBytes *value);
gboolean gatt_characteristic1_get_notifying (GattCharacteristic1 *object);
void gatt_characteristic1_set_notifying (GattCharacteristic1 *object, gboolean value);
const gchar *const *gatt_characteristic1_get_flags (GattCharacteristic1 *object);
gchar **gatt_characteristic1_dup_flags (GattCharacteristic1 *object);
void gatt_characteristic1_set_flags (GattCharacteristic1 *object, const gchar *const *value);
const gchar *const *gatt_characteristic1_get_descriptors (GattCharacteristic1 *object);
gchar **gatt_characteristic1_dup_descriptors (GattCharacteristic1 *object);
void gatt_characteristic1_set_descriptors (GattCharacteristic1 *object, const gchar *const *value);
/* ---- */
#define TYPE_GATT_CHARACTERISTIC1_PROXY (gatt_characteristic1_proxy_get_type ())
#define GATT_CHARACTERISTIC1_PROXY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_GATT_CHARACTERISTIC1_PROXY, GattCharacteristic1Proxy))
#define GATT_CHARACTERISTIC1_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), TYPE_GATT_CHARACTERISTIC1_PROXY, GattCharacteristic1ProxyClass))
#define GATT_CHARACTERISTIC1_PROXY_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_GATT_CHARACTERISTIC1_PROXY, GattCharacteristic1ProxyClass))
#define IS_GATT_CHARACTERISTIC1_PROXY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_GATT_CHARACTERISTIC1_PROXY))
#define IS_GATT_CHARACTERISTIC1_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_GATT_CHARACTERISTIC1_PROXY))
typedef struct _GattCharacteristic1Proxy GattCharacteristic1Proxy;
typedef struct _GattCharacteristic1ProxyClass GattCharacteristic1ProxyClass;
typedef struct _GattCharacteristic1ProxyPrivate GattCharacteristic1ProxyPrivate;
struct _GattCharacteristic1Proxy
{
/*< private >*/
GDBusProxy parent_instance;
GattCharacteristic1ProxyPrivate *priv;
};
struct _GattCharacteristic1ProxyClass
{
GDBusProxyClass parent_class;
};
GType gatt_characteristic1_proxy_get_type (void) G_GNUC_CONST;
void gatt_characteristic1_proxy_new (
GDBusConnection *connection,
GDBusProxyFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
GattCharacteristic1 *gatt_characteristic1_proxy_new_finish (
GAsyncResult *res,
GError **error);
GattCharacteristic1 *gatt_characteristic1_proxy_new_sync (
GDBusConnection *connection,
GDBusProxyFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GError **error);
void gatt_characteristic1_proxy_new_for_bus (
GBusType bus_type,
GDBusProxyFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
GattCharacteristic1 *gatt_characteristic1_proxy_new_for_bus_finish (
GAsyncResult *res,
GError **error);
GattCharacteristic1 *gatt_characteristic1_proxy_new_for_bus_sync (
GBusType bus_type,
GDBusProxyFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GError **error);
/* ---- */
#define TYPE_GATT_CHARACTERISTIC1_SKELETON (gatt_characteristic1_skeleton_get_type ())
#define GATT_CHARACTERISTIC1_SKELETON(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_GATT_CHARACTERISTIC1_SKELETON, GattCharacteristic1Skeleton))
#define GATT_CHARACTERISTIC1_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), TYPE_GATT_CHARACTERISTIC1_SKELETON, GattCharacteristic1SkeletonClass))
#define GATT_CHARACTERISTIC1_SKELETON_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_GATT_CHARACTERISTIC1_SKELETON, GattCharacteristic1SkeletonClass))
#define IS_GATT_CHARACTERISTIC1_SKELETON(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_GATT_CHARACTERISTIC1_SKELETON))
#define IS_GATT_CHARACTERISTIC1_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_GATT_CHARACTERISTIC1_SKELETON))
typedef struct _GattCharacteristic1Skeleton GattCharacteristic1Skeleton;
typedef struct _GattCharacteristic1SkeletonClass GattCharacteristic1SkeletonClass;
typedef struct _GattCharacteristic1SkeletonPrivate GattCharacteristic1SkeletonPrivate;
struct _GattCharacteristic1Skeleton
{
/*< private >*/
GDBusInterfaceSkeleton parent_instance;
GattCharacteristic1SkeletonPrivate *priv;
};
struct _GattCharacteristic1SkeletonClass
{
GDBusInterfaceSkeletonClass parent_class;
};
GType gatt_characteristic1_skeleton_get_type (void) G_GNUC_CONST;
GattCharacteristic1 *gatt_characteristic1_skeleton_new (void);
/* ------------------------------------------------------------------------ */
/* Declarations for org.bluez.GattDescriptor1 */
#define TYPE_GATT_DESCRIPTOR1 (gatt_descriptor1_get_type ())
#define GATT_DESCRIPTOR1(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_GATT_DESCRIPTOR1, GattDescriptor1))
#define IS_GATT_DESCRIPTOR1(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_GATT_DESCRIPTOR1))
#define GATT_DESCRIPTOR1_GET_IFACE(o) (G_TYPE_INSTANCE_GET_INTERFACE ((o), TYPE_GATT_DESCRIPTOR1, GattDescriptor1Iface))
struct _GattDescriptor1;
typedef struct _GattDescriptor1 GattDescriptor1;
typedef struct _GattDescriptor1Iface GattDescriptor1Iface;
struct _GattDescriptor1Iface
{
GTypeInterface parent_iface;
gboolean (*handle_read_value) (
GattDescriptor1 *object,
GDBusMethodInvocation *invocation);
gboolean (*handle_write_value) (
GattDescriptor1 *object,
GDBusMethodInvocation *invocation,
const gchar *arg_value);
const gchar * (*get_characteristic) (GattDescriptor1 *object);
const gchar * (*get_uuid) (GattDescriptor1 *object);
const GBytes * (*get_value) (GattDescriptor1 *object);
};
GType gatt_descriptor1_get_type (void) G_GNUC_CONST;
GDBusInterfaceInfo *gatt_descriptor1_interface_info (void);
guint gatt_descriptor1_override_properties (GObjectClass *klass, guint property_id_begin);
/* D-Bus method call completion functions: */
void gatt_descriptor1_complete_read_value (
GattDescriptor1 *object,
GDBusMethodInvocation *invocation,
const gchar *value);
void gatt_descriptor1_complete_write_value (
GattDescriptor1 *object,
GDBusMethodInvocation *invocation);
/* D-Bus method calls: */
void gatt_descriptor1_call_read_value (
GattDescriptor1 *proxy,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
gboolean gatt_descriptor1_call_read_value_finish (
GattDescriptor1 *proxy,
GBytes **out_value,
GAsyncResult *res,
GError **error);
gboolean gatt_descriptor1_call_read_value_sync (
GattDescriptor1 *proxy,
GBytes **out_value,
GCancellable *cancellable,
GError **error);
void gatt_descriptor1_call_write_value (
GattDescriptor1 *proxy,
GBytes *arg_value,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
gboolean gatt_descriptor1_call_write_value_finish (
GattDescriptor1 *proxy,
GAsyncResult *res,
GError **error);
gboolean gatt_descriptor1_call_write_value_sync (
GattDescriptor1 *proxy,
GBytes *arg_value,
GCancellable *cancellable,
GError **error);
/* D-Bus property accessors: */
const gchar *gatt_descriptor1_get_uuid (GattDescriptor1 *object);
gchar *gatt_descriptor1_dup_uuid (GattDescriptor1 *object);
void gatt_descriptor1_set_uuid (GattDescriptor1 *object, const gchar *value);
const gchar *gatt_descriptor1_get_characteristic (GattDescriptor1 *object);
gchar *gatt_descriptor1_dup_characteristic (GattDescriptor1 *object);
void gatt_descriptor1_set_characteristic (GattDescriptor1 *object, const gchar *value);
const GBytes *gatt_descriptor1_get_value (GattDescriptor1 *object);
GBytes *gatt_descriptor1_dup_value (GattDescriptor1 *object);
void gatt_descriptor1_set_value (GattDescriptor1 *object, const GBytes *value);
/* ---- */
#define TYPE_GATT_DESCRIPTOR1_PROXY (gatt_descriptor1_proxy_get_type ())
#define GATT_DESCRIPTOR1_PROXY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_GATT_DESCRIPTOR1_PROXY, GattDescriptor1Proxy))
#define GATT_DESCRIPTOR1_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), TYPE_GATT_DESCRIPTOR1_PROXY, GattDescriptor1ProxyClass))
#define GATT_DESCRIPTOR1_PROXY_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_GATT_DESCRIPTOR1_PROXY, GattDescriptor1ProxyClass))
#define IS_GATT_DESCRIPTOR1_PROXY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_GATT_DESCRIPTOR1_PROXY))
#define IS_GATT_DESCRIPTOR1_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_GATT_DESCRIPTOR1_PROXY))
typedef struct _GattDescriptor1Proxy GattDescriptor1Proxy;
typedef struct _GattDescriptor1ProxyClass GattDescriptor1ProxyClass;
typedef struct _GattDescriptor1ProxyPrivate GattDescriptor1ProxyPrivate;
struct _GattDescriptor1Proxy
{
/*< private >*/
GDBusProxy parent_instance;
GattDescriptor1ProxyPrivate *priv;
};
struct _GattDescriptor1ProxyClass
{
GDBusProxyClass parent_class;
};
GType gatt_descriptor1_proxy_get_type (void) G_GNUC_CONST;
void gatt_descriptor1_proxy_new (
GDBusConnection *connection,
GDBusProxyFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
GattDescriptor1 *gatt_descriptor1_proxy_new_finish (
GAsyncResult *res,
GError **error);
GattDescriptor1 *gatt_descriptor1_proxy_new_sync (
GDBusConnection *connection,
GDBusProxyFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GError **error);
void gatt_descriptor1_proxy_new_for_bus (
GBusType bus_type,
GDBusProxyFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
GattDescriptor1 *gatt_descriptor1_proxy_new_for_bus_finish (
GAsyncResult *res,
GError **error);
GattDescriptor1 *gatt_descriptor1_proxy_new_for_bus_sync (
GBusType bus_type,
GDBusProxyFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GError **error);
/* ---- */
#define TYPE_GATT_DESCRIPTOR1_SKELETON (gatt_descriptor1_skeleton_get_type ())
#define GATT_DESCRIPTOR1_SKELETON(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_GATT_DESCRIPTOR1_SKELETON, GattDescriptor1Skeleton))
#define GATT_DESCRIPTOR1_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), TYPE_GATT_DESCRIPTOR1_SKELETON, GattDescriptor1SkeletonClass))
#define GATT_DESCRIPTOR1_SKELETON_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_GATT_DESCRIPTOR1_SKELETON, GattDescriptor1SkeletonClass))
#define IS_GATT_DESCRIPTOR1_SKELETON(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_GATT_DESCRIPTOR1_SKELETON))
#define IS_GATT_DESCRIPTOR1_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_GATT_DESCRIPTOR1_SKELETON))
typedef struct _GattDescriptor1Skeleton GattDescriptor1Skeleton;
typedef struct _GattDescriptor1SkeletonClass GattDescriptor1SkeletonClass;
typedef struct _GattDescriptor1SkeletonPrivate GattDescriptor1SkeletonPrivate;
struct _GattDescriptor1Skeleton
{
/*< private >*/
GDBusInterfaceSkeleton parent_instance;
GattDescriptor1SkeletonPrivate *priv;
};
struct _GattDescriptor1SkeletonClass
{
GDBusInterfaceSkeletonClass parent_class;
};
GType gatt_descriptor1_skeleton_get_type (void) G_GNUC_CONST;
GattDescriptor1 *gatt_descriptor1_skeleton_new (void);
/* ---- */
#define TYPE_OBJECT (object_get_type ())
#define OBJECT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_OBJECT, Object))
#define IS_OBJECT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_OBJECT))
#define OBJECT_GET_IFACE(o) (G_TYPE_INSTANCE_GET_INTERFACE ((o), TYPE_OBJECT, Object))
struct _Object;
typedef struct _Object Object;
typedef struct _ObjectIface ObjectIface;
struct _ObjectIface
{
GTypeInterface parent_iface;
};
GType object_get_type (void) G_GNUC_CONST;
Adapter1 *object_get_adapter1 (Object *object);
Device1 *object_get_device1 (Object *object);
GattService1 *object_get_gatt_service1 (Object *object);
GattCharacteristic1 *object_get_gatt_characteristic1 (Object *object);
GattDescriptor1 *object_get_gatt_descriptor1 (Object *object);
Adapter1 *object_peek_adapter1 (Object *object);
Device1 *object_peek_device1 (Object *object);
GattService1 *object_peek_gatt_service1 (Object *object);
GattCharacteristic1 *object_peek_gatt_characteristic1 (Object *object);
GattDescriptor1 *object_peek_gatt_descriptor1 (Object *object);
#define TYPE_OBJECT_PROXY (object_proxy_get_type ())
#define OBJECT_PROXY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_OBJECT_PROXY, ObjectProxy))
#define OBJECT_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), TYPE_OBJECT_PROXY, ObjectProxyClass))
#define OBJECT_PROXY_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_OBJECT_PROXY, ObjectProxyClass))
#define IS_OBJECT_PROXY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_OBJECT_PROXY))
#define IS_OBJECT_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_OBJECT_PROXY))
typedef struct _ObjectProxy ObjectProxy;
typedef struct _ObjectProxyClass ObjectProxyClass;
typedef struct _ObjectProxyPrivate ObjectProxyPrivate;
struct _ObjectProxy
{
/*< private >*/
GDBusObjectProxy parent_instance;
ObjectProxyPrivate *priv;
};
struct _ObjectProxyClass
{
GDBusObjectProxyClass parent_class;
};
GType object_proxy_get_type (void) G_GNUC_CONST;
ObjectProxy *object_proxy_new (GDBusConnection *connection, const gchar *object_path);
#define TYPE_OBJECT_SKELETON (object_skeleton_get_type ())
#define OBJECT_SKELETON(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_OBJECT_SKELETON, ObjectSkeleton))
#define OBJECT_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), TYPE_OBJECT_SKELETON, ObjectSkeletonClass))
#define OBJECT_SKELETON_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_OBJECT_SKELETON, ObjectSkeletonClass))
#define IS_OBJECT_SKELETON(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_OBJECT_SKELETON))
#define IS_OBJECT_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_OBJECT_SKELETON))
typedef struct _ObjectSkeleton ObjectSkeleton;
typedef struct _ObjectSkeletonClass ObjectSkeletonClass;
typedef struct _ObjectSkeletonPrivate ObjectSkeletonPrivate;
struct _ObjectSkeleton
{
/*< private >*/
GDBusObjectSkeleton parent_instance;
ObjectSkeletonPrivate *priv;
};
struct _ObjectSkeletonClass
{
GDBusObjectSkeletonClass parent_class;
};
GType object_skeleton_get_type (void) G_GNUC_CONST;
ObjectSkeleton *object_skeleton_new (const gchar *object_path);
void object_skeleton_set_adapter1 (ObjectSkeleton *object, Adapter1 *interface_);
void object_skeleton_set_device1 (ObjectSkeleton *object, Device1 *interface_);
void object_skeleton_set_gatt_service1 (ObjectSkeleton *object, GattService1 *interface_);
void object_skeleton_set_gatt_characteristic1 (ObjectSkeleton *object, GattCharacteristic1 *interface_);
void object_skeleton_set_gatt_descriptor1 (ObjectSkeleton *object, GattDescriptor1 *interface_);
/* ---- */
#define TYPE_OBJECT_MANAGER_CLIENT (object_manager_client_get_type ())
#define OBJECT_MANAGER_CLIENT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_OBJECT_MANAGER_CLIENT, ObjectManagerClient))
#define OBJECT_MANAGER_CLIENT_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), TYPE_OBJECT_MANAGER_CLIENT, ObjectManagerClientClass))
#define OBJECT_MANAGER_CLIENT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_OBJECT_MANAGER_CLIENT, ObjectManagerClientClass))
#define IS_OBJECT_MANAGER_CLIENT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_OBJECT_MANAGER_CLIENT))
#define IS_OBJECT_MANAGER_CLIENT_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_OBJECT_MANAGER_CLIENT))
typedef struct _ObjectManagerClient ObjectManagerClient;
typedef struct _ObjectManagerClientClass ObjectManagerClientClass;
typedef struct _ObjectManagerClientPrivate ObjectManagerClientPrivate;
struct _ObjectManagerClient
{
/*< private >*/
GDBusObjectManagerClient parent_instance;
ObjectManagerClientPrivate *priv;
};
struct _ObjectManagerClientClass
{
GDBusObjectManagerClientClass parent_class;
};
GType object_manager_client_get_type (void) G_GNUC_CONST;
GType object_manager_client_get_proxy_type (GDBusObjectManagerClient *manager, const gchar *object_path, const gchar *interface_name, gpointer user_data);
void object_manager_client_new (
GDBusConnection *connection,
GDBusObjectManagerClientFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
GDBusObjectManager *object_manager_client_new_finish (
GAsyncResult *res,
GError **error);
GDBusObjectManager *object_manager_client_new_sync (
GDBusConnection *connection,
GDBusObjectManagerClientFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GError **error);
void object_manager_client_new_for_bus (
GBusType bus_type,
GDBusObjectManagerClientFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
GDBusObjectManager *object_manager_client_new_for_bus_finish (
GAsyncResult *res,
GError **error);
GDBusObjectManager *object_manager_client_new_for_bus_sync (
GBusType bus_type,
GDBusObjectManagerClientFlags flags,
const gchar *name,
const gchar *object_path,
GCancellable *cancellable,
GError **error);
G_END_DECLS
#endif /* __GENERATED_CODE_H__ */
|