-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInterfaceAttribute.init
1405 lines (1405 loc) · 336 KB
/
InterfaceAttribute.init
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
INSERT INTO `InterfaceAttribute` VALUES (1,'gets','libc','Recommendation','This interface is an extreme security risk, and is marked obsolete in both ISO-C and POSIX. Use <int libc;fgets>fgets</int> instead');
INSERT INTO `InterfaceAttribute` VALUES (3,'finite','libm','Recommendation','This interface is obsolete. Use the <const isfinite>isfinite()</const> macro from ISO C99');
INSERT INTO `InterfaceAttribute` VALUES (4,'finitef','libm','Recommendation','This interface is obsolete. Use the <const isfinite>isfinite</const> macro from ISO C99');
INSERT INTO `InterfaceAttribute` VALUES (5,'finitel','libm','Recommendation','This interface is obsolete. Use the <const isfinite>isfinite</const> macro from ISO C99');
INSERT INTO `InterfaceAttribute` VALUES (6,'drem','libm','Recommendation','This interface is obsolete. Use <int libm;remainder>remainder</int> from ISO C99');
INSERT INTO `InterfaceAttribute` VALUES (7,'dremf','libm','Recommendation','This interface is obsolete. Use <int libm;remainderf>remainderf</int> from ISO C99');
INSERT INTO `InterfaceAttribute` VALUES (8,'dreml','libm','Recommendation','This interface is obsolete. Use <int libm;remainderl>remainderl</int> from ISO C99');
INSERT INTO `InterfaceAttribute` VALUES (9,'fstatfs','libc','Recommendation','Use <int libc;fstatvfs>fstatvfs</int> instead');
INSERT INTO `InterfaceAttribute` VALUES (10,'fstatfs64','libc','Recommendation','Use <int libc;fstatvfs64>fstatvfs64</int> instead');
INSERT INTO `InterfaceAttribute` VALUES (11,'gethostbyaddr','libc','Recommendation','Use <int libc;getaddrinfo>getaddrinfo</int> instead');
INSERT INTO `InterfaceAttribute` VALUES (12,'gethostbyaddr_r','libc','Recommendation','Use <int libc;getaddrinfo>getaddrinfo</int> instead');
INSERT INTO `InterfaceAttribute` VALUES (13,'gethostbyname','libc','Recommendation','Use <int libc;getaddrinfo>getaddrinfo</int> instead');
INSERT INTO `InterfaceAttribute` VALUES (14,'gethostbyname2','libc','Recommendation','Use <int libc;getaddrinfo>getaddrinfo</int> instead');
INSERT INTO `InterfaceAttribute` VALUES (15,'gethostbyname2_r','libc','Recommendation','Use <int libc;getaddrinfo>getaddrinfo</int> instead');
INSERT INTO `InterfaceAttribute` VALUES (16,'gethostbyname_r','libc','Recommendation','Use <int libc;getaddrinfo>getaddrinfo</int> instead');
INSERT INTO `InterfaceAttribute` VALUES (17,'matherr','libm','Recommendation','Use IEEE 754 floating point exceptions instead');
INSERT INTO `InterfaceAttribute` VALUES (18,'statfs','libc','Recommendation','Use <int libc;statvfs>statvfs</int> instead');
INSERT INTO `InterfaceAttribute` VALUES (19,'statfs64','libc','Recommendation','Use <int libc;stavfs64>stavfs64</int> instead');
INSERT INTO `InterfaceAttribute` VALUES (20,'getdomainname','libc','Recommendation','This function is essentially useless. The NIS domain name returned by it is not the same as the domain portion of a fully qualified domain name (for example, in DNS) and can be unspecified. In addition, even if the the value returned is not equal to \"(none)\", the application should not imply that NIS is in use.');
INSERT INTO `InterfaceAttribute` VALUES (21,'gdkx_colormap_get','libgdk-x11-2.0','Recommendation','gdkx_colormap_get is deprecated and should not be used in newly-written code. Always use <int libgdk-x11-2.0;gdk_x11_colormap_foreign_new>gdk_x11_colormap_foreign_new</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (22,'gdk_char_height','libgdk-x11-2.0','Recommendation','gdk_char_height is deprecated and should not be used in newly-written code. The value returned by this function is not generally useful, because you cannot determine how this total height will be drawn in relation to the baseline.');
INSERT INTO `InterfaceAttribute` VALUES (23,'gdk_char_measure','libgdk-x11-2.0','Recommendation','gdk_char_measure is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (24,'gdk_char_width','libgdk-x11-2.0','Recommendation','gdk_char_width is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (25,'gdk_char_width_wc','libgdk-x11-2.0','Recommendation','gdk_char_width_wc is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (26,'gdk_colormap_change','libgdk-x11-2.0','Recommendation','gdk_colormap_change is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (27,'gdk_colormap_get_system_size','libgdk-x11-2.0','Recommendation','gdk_colormap_get_system_size is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (28,'gdk_colormap_ref','libgdk-x11-2.0','Recommendation','gdk_colormap_ref is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_ref>g_object_ref</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (29,'gdk_colormap_unref','libgdk-x11-2.0','Recommendation','gdk_colormap_unref is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_unref>g_object_unref</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (30,'gdk_colors_alloc','libgdk-x11-2.0','Recommendation','gdk_colors_alloc is deprecated and should not be used in newly-written code. See <int libgdk-x11-2.0;gdk_colormap_alloc_colors>gdk_colormap_alloc_colors</int>.');
INSERT INTO `InterfaceAttribute` VALUES (31,'gdk_colors_free','libgdk-x11-2.0','Recommendation','gdk_colors_free is deprecated and should not be used in newly-written code. See <int libgdk-x11-2.0;gdk_colormap_free_colors>gdk_colormap_free_colors</int>.');
INSERT INTO `InterfaceAttribute` VALUES (32,'gdk_colors_store','libgdk-x11-2.0','Recommendation','gdk_colors_store is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (33,'gdk_color_alloc','libgdk-x11-2.0','Recommendation','gdk_color_alloc is deprecated and should not be used in newly-written code. Use <int libgdk-x11-2.0;gdk_colormap_alloc_color>gdk_colormap_alloc_color</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (34,'gdk_color_black','libgdk-x11-2.0','Recommendation','gdk_color_black is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (35,'gdk_color_change','libgdk-x11-2.0','Recommendation','gdk_color_change is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (36,'gdk_color_white','libgdk-x11-2.0','Recommendation','gdk_color_white is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (37,'gdk_drag_context_ref','libgdk-x11-2.0','Recommendation','gdk_drag_context_ref is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_ref>g_object_ref</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (38,'gdk_drag_context_unref','libgdk-x11-2.0','Recommendation','gdk_drag_context_unref is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_unref>g_object_unref</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (39,'gdk_drawable_get_data','libgdk-x11-2.0','Recommendation','gdk_drawable_get_data is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_get_data>g_object_get_data</int> instead');
INSERT INTO `InterfaceAttribute` VALUES (40,'gdk_drawable_ref','libgdk-x11-2.0','Recommendation','gdk_drawable_ref is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (41,'gdk_drawable_set_data','libgdk-x11-2.0','Recommendation','gdk_drawable_set_data is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_set_data>g_object_set_data</int> instead');
INSERT INTO `InterfaceAttribute` VALUES (42,'gdk_drawable_unref','libgdk-x11-2.0','Recommendation','gdk_drawable_unref is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (43,'gdk_draw_string','libgdk-x11-2.0','Recommendation','gdk_draw_string is deprecated and should not be used in newly-written code. Use <int libgdk-x11-2.0;gdk_draw_layout>gdk_draw_layout</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (44,'gdk_draw_text','libgdk-x11-2.0','Recommendation','gdk_draw_text is deprecated and should not be used in newly-written code. Use <int libgdk-x11-2.0;gdk_draw_layout>gdk_draw_layout</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (45,'gdk_draw_text_wc','libgdk-x11-2.0','Recommendation','gdk_draw_text_wc is deprecated and should not be used in newly-written code. Use <int libgdk-x11-2.0;gdk_draw_layout>gdk_draw_layout</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (46,'gdk_exit','libgdk-x11-2.0','Recommendation','gdk_exit is deprecated and should not be used in newly-written code. This routine is provided mainly for backwards compatibility, since it is used to perform tasks necessary to exit the application cleanly. Those tasks are now performed in a function which is automatically called on exit (via the use of <int libglib-2.0;g_atexit>g_atexit</int>).');
INSERT INTO `InterfaceAttribute` VALUES (47,'gdk_fontset_load','libgdk-x11-2.0','Recommendation','gdk_fontset_load is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (48,'gdk_fontset_load_for_display','libgdk-x11-2.0','Recommendation','gdk_fontset_load_for_display is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (49,'gdk_font_equal','libgdk-x11-2.0','Recommendation','gdk_font_equal is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (50,'gdk_font_from_description','libgdk-x11-2.0','Recommendation','gdk_font_from_description is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (51,'gdk_font_from_description_for_display','libgdk-x11-2.0','Recommendation','gdk_font_from_description_for_display is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (52,'gdk_font_get_display','libgdk-x11-2.0','Recommendation','gdk_font_get_display is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (53,'gdk_font_id','libgdk-x11-2.0','Recommendation','gdk_font_id is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (54,'gdk_font_load','libgdk-x11-2.0','Recommendation','gdk_font_load is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (55,'gdk_font_load_for_display','libgdk-x11-2.0','Recommendation','gdk_font_load_for_display is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (56,'gdk_font_ref','libgdk-x11-2.0','Recommendation','gdk_font_ref is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (57,'gdk_font_unref','libgdk-x11-2.0','Recommendation','gdk_font_unref is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (58,'gdk_gc_ref','libgdk-x11-2.0','Recommendation','gdk_gc_ref is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_ref>g_object_ref</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (59,'gdk_gc_set_font','libgdk-x11-2.0','Recommendation','gdk_gc_set_font is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (60,'gdk_gc_unref','libgdk-x11-2.0','Recommendation','gdk_gc_unref is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_unref>g_object_unref</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (61,'gdk_get_use_xshm','libgdk-x11-2.0','Recommendation','gdk_get_use_xshm is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (62,'gdk_image_get','libgdk-x11-2.0','Recommendation','gdk_image_get is deprecated and should not be used in newly-written code. This is a deprecated wrapper for gdk_drawable_get_image(); <int libgdk-x11-2.0;gdk_drawable_get_image>gdk_drawable_get_image</int> should be used instead. Or even better: in most cases <int libgdk-x11-2.0;gdk_pixbuf_get_from_drawable>gdk_pixbuf_get_from_drawable</int> is the most convenient choice.');
INSERT INTO `InterfaceAttribute` VALUES (63,'gdk_image_new_bitmap','libgdk-x11-2.0','Recommendation','gdk_image_new_bitmap is deprecated and should not be used in newly-written code. This function is incredibly broken. The passed-in data must be allocated by <int libc;malloc>malloc</int> (NOT g_malloc()) and will be freed when the image is freed.');
INSERT INTO `InterfaceAttribute` VALUES (64,'gdk_image_ref','libgdk-x11-2.0','Recommendation','gdk_image_ref is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_ref>g_object_ref</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (65,'gdk_image_unref','libgdk-x11-2.0','Recommendation','gdk_image_unref is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_unref>g_object_unref</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (66,'gdk_input_add','libgdk-x11-2.0','Recommendation','gdk_input_add is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (67,'gdk_input_add_full','libgdk-x11-2.0','Recommendation','gdk_input_add_full is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (68,'gdk_input_remove','libgdk-x11-2.0','Recommendation','gdk_input_remove is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (69,'gdk_mbstowcs','libgdk-x11-2.0','Recommendation','gdk_mbstowcs is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (70,'gdk_pango_context_set_colormap','libgdk-x11-2.0','Recommendation','gdk_pango_context_set_colormap is deprecated and should not be used in newly-written code. This function used to set the colormap to be used for drawing with context. The colormap is now always derived from the graphics context used for drawing, so calling this function is no longer necessary.');
INSERT INTO `InterfaceAttribute` VALUES (71,'gdk_pixbuf_render_to_drawable','libgdk-x11-2.0','Recommendation','gdk_pixbuf_render_to_drawable has been deprecated since GTK version 2.4 and should not be used in newly-written code. This function is obsolete. Use <int libgdk-x11-2.0;gdk_draw_pixbuf>gdk_draw_pixbuf</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (73,'gdk_pixbuf_render_to_drawable_alpha','libgdk-x11-2.0','Recommendation','gdk_pixbuf_render_to_drawable_alpha has been deprecated since GTK version 2.4 and should not be used in newly-written code. This function is obsolete. Use <int libgdk-x11-2.0;gdk_draw_pixbuf>gdk_draw_pixbuf</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (75,'gdk_rgb_gc_set_background','libgdk-x11-2.0','Recommendation','gdk_rgb_gc_set_background is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (76,'gdk_rgb_gc_set_foreground','libgdk-x11-2.0','Recommendation','gdk_rgb_gc_set_foreground is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (77,'gdk_rgb_init','libgdk-x11-2.0','Recommendation','gdk_rgb_init is deprecated and should not be used in newly-written code. This function no longer does anything at all. It is completely useless (and harmless).');
INSERT INTO `InterfaceAttribute` VALUES (78,'gdk_rgb_xpixel_from_rgb','libgdk-x11-2.0','Recommendation','gdk_rgb_xpixel_from_rgb is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (79,'gdk_set_use_xshm','libgdk-x11-2.0','Recommendation','gdk_set_use_xshm is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (80,'gdk_string_extents','libgdk-x11-2.0','Recommendation','gdk_string_extents is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (81,'gdk_string_height','libgdk-x11-2.0','Recommendation','gdk_string_height is deprecated and should not be used in newly-written code. The value returned by this function is not generally useful, because you cannot determine how this total height will be drawn in relation to the baseline.');
INSERT INTO `InterfaceAttribute` VALUES (82,'gdk_string_measure','libgdk-x11-2.0','Recommendation','gdk_string_measure is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (83,'gdk_string_width','libgdk-x11-2.0','Recommendation','gdk_string_width is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (84,'gdk_text_extents','libgdk-x11-2.0','Recommendation','gdk_text_extents is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (85,'gdk_text_extents_wc','libgdk-x11-2.0','Recommendation','gdk_text_extents_wc is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (86,'gdk_text_height','libgdk-x11-2.0','Recommendation','gdk_text_height is deprecated and should not be used in newly-written code. The value returned by this function is not generally useful, because you cannot determine how this total height will be drawn in relation to the baseline.');
INSERT INTO `InterfaceAttribute` VALUES (87,'gdk_text_measure','libgdk-x11-2.0','Recommendation','gdk_text_measure is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (88,'gdk_text_width','libgdk-x11-2.0','Recommendation','gdk_text_width is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (89,'gdk_text_width_wc','libgdk-x11-2.0','Recommendation','gdk_text_width_wc is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (90,'gdk_threads_mutex','libgdk-x11-2.0','Recommendation','gdk_threads_mutex is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (91,'gdk_wcstombs','libgdk-x11-2.0','Recommendation','gdk_wcstombs is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (92,'gdk_window_get_deskrelative_origin','libgdk-x11-2.0','Recommendation','gdk_window_get_deskrelative_origin is deprecated and should not be used in newly-written code. As long as you don\'t assume that the user\'s desktop/workspace covers the entire root window (i.e., you do not assume that the desktop begins at root window coordinate 0,0) this function is not necessary.');
INSERT INTO `InterfaceAttribute` VALUES (93,'gdk_window_set_hints','libgdk-x11-2.0','Recommendation','gdk_window_set_hints is deprecated and should not be used in newly-written code. This function is broken and useless and you should ignore it. If using GTK+, use functions such as <int libgtk-x11-2.0;gtk_window_resize>gtk_window_resize</int>, <int libgtk-x11-2.0;gtk_window_set_size_request>gtk_window_set_size_request</int>, <int libgtk-x11-2.0;gtk_window_move>gtk_window_move</int>, <int libgtk-x11-2.0;gtk_window_parse_geometry>gtk_window_parse_geometry</int>, and <int libgtk-x11-2.0;gtk_window_set_geometry_hints>gtk_window_set_geometry_hints</int>, depending on what you are trying to do. If using GDK directly, use <intlibgdk-x11-2.0 ;gdk_window_set_geometry_hints>gdk_window_set_geometry_hints</int>.');
INSERT INTO `InterfaceAttribute` VALUES (94,'gdk_x11_font_get_name','libgdk-x11-2.0','Recommendation','gdk_x11_font_get_name is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (95,'gdk_x11_font_get_xdisplay','libgdk-x11-2.0','Recommendation','gdk_x11_font_get_xdisplay is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (96,'gdk_x11_font_get_xfont','libgdk-x11-2.0','Recommendation','gdk_x11_font_get_xfont is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (945,'gtk_text_set_word_wrap','libgtk-x11-2.0','Recommendation','GtkText is deprecated and unsupported. It is known to be buggy. Use GtkTextView instead.');
INSERT INTO `InterfaceAttribute` VALUES (944,'gtk_text_set_point','libgtk-x11-2.0','Recommendation','GtkText is deprecated and unsupported. It is known to be buggy. Use GtkTextView instead.');
INSERT INTO `InterfaceAttribute` VALUES (943,'gtk_text_set_line_wrap','libgtk-x11-2.0','Recommendation','GtkText is deprecated and unsupported. It is known to be buggy. Use GtkTextView instead.');
INSERT INTO `InterfaceAttribute` VALUES (941,'gtk_text_set_adjustments','libgtk-x11-2.0','Recommendation','GtkText is deprecated and unsupported. It is known to be buggy. Use GtkTextView instead.');
INSERT INTO `InterfaceAttribute` VALUES (942,'gtk_text_set_editable','libgtk-x11-2.0','Recommendation','GtkText is deprecated and unsupported. It is known to be buggy. Use GtkTextView instead.');
INSERT INTO `InterfaceAttribute` VALUES (940,'gtk_text_new','libgtk-x11-2.0','Recommendation','GtkText is deprecated and unsupported. It is known to be buggy. Use GtkTextView instead.');
INSERT INTO `InterfaceAttribute` VALUES (939,'gtk_text_insert','libgtk-x11-2.0','Recommendation','GtkText is deprecated and unsupported. It is known to be buggy. Use GtkTextView instead.');
INSERT INTO `InterfaceAttribute` VALUES (937,'gtk_text_get_length','libgtk-x11-2.0','Recommendation','GtkText is deprecated and unsupported. It is known to be buggy. Use GtkTextView instead.');
INSERT INTO `InterfaceAttribute` VALUES (938,'gtk_text_get_point','libgtk-x11-2.0','Recommendation','GtkText is deprecated and unsupported. It is known to be buggy. Use GtkTextView instead.');
INSERT INTO `InterfaceAttribute` VALUES (936,'gtk_text_freeze','libgtk-x11-2.0','Recommendation','GtkText is deprecated and unsupported. It is known to be buggy. Use GtkTextView instead.');
INSERT INTO `InterfaceAttribute` VALUES (935,'gtk_text_forward_delete','libgtk-x11-2.0','Recommendation','GtkText is deprecated and unsupported. It is known to be buggy. Use GtkTextView instead.');
INSERT INTO `InterfaceAttribute` VALUES (934,'gtk_text_backward_delete','libgtk-x11-2.0','Recommendation','GtkText is deprecated and unsupported. It is known to be buggy. Use GtkTextView instead.');
INSERT INTO `InterfaceAttribute` VALUES (933,'gtk_style_unref','libgtk-x11-2.0','Recommendation','gtk_style_unref is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_unref>g_object_unref</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (932,'gtk_style_set_font','libgtk-x11-2.0','Recommendation','gtk_style_set_font sets the GdkFont to use for a given style. This is meant only as a replacement for direct access to style->font and should not be used in new code. New code should use style->font_desc instead.');
INSERT INTO `InterfaceAttribute` VALUES (931,'gtk_style_ref','libgtk-x11-2.0','Recommendation','gtk_style_ref is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_ref>g_object_ref</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (930,'gtk_style_get_font','libgtk-x11-2.0','Recommendation','gtk_style_get_font gets the GdkFont to use for the given style. This is meant only as a replacement for direct access to style->font and should not be used in new code. New code should use style->font_desc instead.');
INSERT INTO `InterfaceAttribute` VALUES (929,'gtk_socket_steal','libgtk-x11-2.0','Recommendation','gtk_socket_steal reparents a pre-existing toplevel window into a GtkSocket. This is meant to embed clients that do not know about embedding into a GtkSocket, however doing so is inherently unreliable, and using this function is not recommended.');
INSERT INTO `InterfaceAttribute` VALUES (928,'gtk_signal_newv','libgtk-x11-2.0','Recommendation','gtk_signal_newv is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_signal_newv>g_signal_newv</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (927,'gtk_signal_new','libgtk-x11-2.0','Recommendation','gtk_signal_new is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_signal_new>g_signal_new</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (926,'gtk_signal_emit_stop_by_name','libgtk-x11-2.0','Recommendation','gtk_signal_emit_stop_by_name is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_signal_stop_emission_by_name>g_signal_stop_emission_by_name</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (925,'gtk_signal_emit_by_name','libgtk-x11-2.0','Recommendation','gtk_signal_emit_by_name is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_signal_emit_by_name>g_signal_emit_by_name</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (924,'gtk_signal_emitv_by_name','libgtk-x11-2.0','Recommendation','gtk_signal_emitv_by_name is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_signal_emitv>g_signal_emitv</int> and <int libgobject-2.0;g_signal_lookup>g_signal_lookup</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (923,'gtk_signal_emitv','libgtk-x11-2.0','Recommendation','gtk_signal_emitv is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_signal_emitv>g_signal_emitv</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (922,'gtk_signal_emit','libgtk-x11-2.0','Recommendation','gtk_signal_emit is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_signal_emit>g_signal_emit</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (921,'gtk_signal_connect_while_alive','libgtk-x11-2.0','Recommendation','gtk_signal_connect_while_alive is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_signal_connect_object>g_signal_connect_object</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (920,'gtk_signal_connect_object_while_alive','libgtk-x11-2.0','Recommendation','gtk_signal_connect_object_while_alive is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_signal_connect_object>g_signal_connect_object</int> instead, passing G_CONNECT_SWAPPED as connect_flags.');
INSERT INTO `InterfaceAttribute` VALUES (919,'gtk_signal_connect_full','libgtk-x11-2.0','Recommendation','gtk_signal_connect_full is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_signal_connect_data>g_signal_connect_data</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (918,'gtk_selection_clear','libgtk-x11-2.0','Recommendation','gtk_selection_clear is deprecated and should not be used in newly-written code. Instead of calling this function, chain up from your selection_clear_event handler. Calling this function from any other context is illegal.');
INSERT INTO `InterfaceAttribute` VALUES (917,'gtk_recent_manager_set_screen','libgtk-x11-2.0','Recommendation','gtk_recent_manager_set_screen is deprecated and should not be used in newly-written code. Calling this function has no effect.');
INSERT INTO `InterfaceAttribute` VALUES (916,'gtk_recent_manager_get_for_screen','libgtk-x11-2.0','Recommendation','gtk_recent_manager_get_for_screen is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (915,'gtk_recent_chooser_set_show_numbers','libgtk-x11-2.0','Recommendation','gtk_recent_chooser_set_show_numbers is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (914,'gtk_recent_chooser_get_show_numbers','libgtk-x11-2.0','Recommendation','gtk_recent_chooser_get_show_numbers is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (913,'gtk_rc_style_unref','libgtk-x11-2.0','Recommendation','gtk_rc_style_unref is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_unref>g_object_unref</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (912,'gtk_rc_style_ref','libgtk-x11-2.0','Recommendation','gtk_rc_style_ref is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_ref>g_object_ref</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (911,'gtk_rc_add_widget_name_style','libgtk-x11-2.0','Recommendation','gtk_rc_add_widget_name_style is deprecated and should not be used in newly-written code. The call to this function is equivalent to \"a: widget PATTERN style STYLE\" statement in a RC file.');
INSERT INTO `InterfaceAttribute` VALUES (910,'gtk_rc_add_widget_class_style','libgtk-x11-2.0','Recommendation','gtk_rc_add_widget_class_style is deprecated and should not be used in newly-written code. The call to this function is equivalent to \"a: widget_class PATTERN style STYLE\" statement in a RC file.');
INSERT INTO `InterfaceAttribute` VALUES (909,'gtk_rc_add_class_style','libgtk-x11-2.0','Recommendation','gtk_rc_add_class_style is deprecated and should not be used in newly-written code. The call to this function is equivalent to \"a: class PATTERN style STYLE\" statement in a RC file.');
INSERT INTO `InterfaceAttribute` VALUES (908,'gtk_progress_set_value','libgtk-x11-2.0','Recommendation','gtk_progress_set_value is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (907,'gtk_progress_set_text_alignment','libgtk-x11-2.0','Recommendation','gtk_progress_set_text_alignment is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (906,'gtk_progress_set_show_text','libgtk-x11-2.0','Recommendation','gtk_progress_set_show_text is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (905,'gtk_progress_set_percentage','libgtk-x11-2.0','Recommendation','gtk_progress_set_percentage is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (904,'gtk_progress_set_format_string','libgtk-x11-2.0','Recommendation','gtk_progress_set_format_string is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (903,'gtk_progress_set_adjustment','libgtk-x11-2.0','Recommendation','gtk_progress_set_adjustment is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (902,'gtk_progress_set_activity_mode','libgtk-x11-2.0','Recommendation','gtk_progress_set_activity_mode is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (901,'gtk_progress_get_value','libgtk-x11-2.0','Recommendation','gtk_progress_get_value is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (900,'gtk_progress_get_text_from_value','libgtk-x11-2.0','Recommendation','gtk_progress_get_text_from_value is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (899,'gtk_progress_get_percentage_from_value','libgtk-x11-2.0','Recommendation','gtk_progress_get_percentage_from_value is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (898,'gtk_progress_get_current_text','libgtk-x11-2.0','Recommendation','gtk_progress_get_current_text is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (897,'gtk_progress_get_current_percentage','libgtk-x11-2.0','Recommendation','gtk_progress_get_current_percentage is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (896,'gtk_progress_configure','libgtk-x11-2.0','Recommendation','gtk_progress_configure is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (895,'gtk_progress_bar_update','libgtk-x11-2.0','Recommendation','gtk_progress_bar_update is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (894,'gtk_progress_bar_set_discrete_blocks','libgtk-x11-2.0','Recommendation','gtk_progress_bar_set_discrete_blocks is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (893,'gtk_progress_bar_set_bar_style','libgtk-x11-2.0','Recommendation','gtk_progress_bar_set_bar_style is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (892,'gtk_progress_bar_set_activity_step','libgtk-x11-2.0','Recommendation','gtk_progress_bar_set_activity_step is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (891,'gtk_progress_bar_set_activity_blocks','libgtk-x11-2.0','Recommendation','gtk_progress_bar_set_activity_blocks is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (890,'gtk_progress_bar_new_with_adjustment','libgtk-x11-2.0','Recommendation','gtk_progress_bar_new_with_adjustment is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (888,'gtk_preview_size','libgtk-x11-2.0','Recommendation','GtkPreview is deprecated; just use a GdkPixbuf displayed by a GtkImage, or perhaps a GtkDrawingArea. GtkPreview has no advantage over those approaches.');
INSERT INTO `InterfaceAttribute` VALUES (889,'gtk_preview_uninit','libgtk-x11-2.0','Recommendation','gtk_preview_uninit is deprecated. This function does nothing and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (887,'gtk_preview_set_reserved','libgtk-x11-2.0','Recommendation','gtk_preview_set_reserved is deprecated. This function does nothing and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (886,'gtk_preview_set_install_cmap','libgtk-x11-2.0','Recommendation','gtk_preview_set_install_cmap function is deprecated and does nothing. GdkRGB will automatically pick a private colormap if it cannot allocate sufficient colors.');
INSERT INTO `InterfaceAttribute` VALUES (885,'gtk_preview_set_gamma','libgtk-x11-2.0','Recommendation','GtkPreview is deprecated; just use a GdkPixbuf displayed by a GtkImage, or perhaps a GtkDrawingArea. GtkPreview has no advantage over those approaches.');
INSERT INTO `InterfaceAttribute` VALUES (884,'gtk_preview_set_expand','libgtk-x11-2.0','Recommendation','GtkPreview is deprecated; just use a GdkPixbuf displayed by a GtkImage, or perhaps a GtkDrawingArea. GtkPreview has no advantage over those approaches.');
INSERT INTO `InterfaceAttribute` VALUES (883,'gtk_preview_set_dither','libgtk-x11-2.0','Recommendation','GtkPreview is deprecated; just use a GdkPixbuf displayed by a GtkImage, or perhaps a GtkDrawingArea. GtkPreview has no advantage over those approaches.');
INSERT INTO `InterfaceAttribute` VALUES (882,'gtk_preview_set_color_cube','libgtk-x11-2.0','Recommendation','gtk_preview_set_color_cube is deprecated. This function does nothing and should not be used in newly-written code. GdkRGB automatically picks an optimium color cube for the display.');
INSERT INTO `InterfaceAttribute` VALUES (881,'gtk_preview_reset','libgtk-x11-2.0','Recommendation','gtk_preview_reset is deprecated. This function does nothing and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (880,'gtk_preview_put','libgtk-x11-2.0','Recommendation','GtkPreview is deprecated; just use a GdkPixbuf displayed by a GtkImage, or perhaps a GtkDrawingArea. GtkPreview has no advantage over those approaches.');
INSERT INTO `InterfaceAttribute` VALUES (879,'gtk_preview_new','libgtk-x11-2.0','Recommendation','GtkPreview is deprecated; just use a GdkPixbuf displayed by a GtkImage, or perhaps a GtkDrawingArea. GtkPreview has no advantage over those approaches.');
INSERT INTO `InterfaceAttribute` VALUES (878,'gtk_preview_get_visual','libgtk-x11-2.0','Recommendation','gtk_preview_get_visual function is deprecated. Use <int libgdk-x11-2.0;gdk_rgb_get_visual>gdk_rgb_get_visual</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (877,'gtk_preview_get_info','libgtk-x11-2.0','Recommendation','GtkPreview is deprecated; just use a GdkPixbuf displayed by a GtkImage, or perhaps a GtkDrawingArea. GtkPreview has no advantage over those approaches.');
INSERT INTO `InterfaceAttribute` VALUES (876,'gtk_preview_get_cmap','libgtk-x11-2.0','Recommendation','GtkPreview is deprecated; just use a GdkPixbuf displayed by a GtkImage, or perhaps a GtkDrawingArea. GtkPreview has no advantage over those approaches.');
INSERT INTO `InterfaceAttribute` VALUES (875,'gtk_preview_draw_row','libgtk-x11-2.0','Recommendation','GtkPreview is deprecated; just use a GdkPixbuf displayed by a GtkImage, or perhaps a GtkDrawingArea. GtkPreview has no advantage over those approaches.');
INSERT INTO `InterfaceAttribute` VALUES (874,'gtk_pixmap_set_build_insensitive','libgtk-x11-2.0','Recommendation','GtkPixmap is deprecated and should not be used in newly written code. Use GtkImage instead.');
INSERT INTO `InterfaceAttribute` VALUES (872,'gtk_pixmap_new','libgtk-x11-2.0','Recommendation','GtkPixmap is deprecated and should not be used in newly written code. Use GtkImage instead.');
INSERT INTO `InterfaceAttribute` VALUES (873,'gtk_pixmap_set','libgtk-x11-2.0','Recommendation','GtkPixmap is deprecated and should not be used in newly written code. Use GtkImage instead.');
INSERT INTO `InterfaceAttribute` VALUES (871,'gtk_pixmap_get','libgtk-x11-2.0','Recommendation','GtkPixmap is deprecated and should not be used in newly written code. Use GtkImage instead.');
INSERT INTO `InterfaceAttribute` VALUES (870,'gtk_paint_string','libgtk-x11-2.0','Recommendation','gtk_paint_string is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_paint_layout>gtk_paint_layout</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (869,'gtk_option_menu_set_menu','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkOptionMenu has been deprecated in favor of GtkComboBox.');
INSERT INTO `InterfaceAttribute` VALUES (868,'gtk_option_menu_set_history','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkOptionMenu has been deprecated in favor of GtkComboBox.');
INSERT INTO `InterfaceAttribute` VALUES (867,'gtk_option_menu_remove_menu','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkOptionMenu has been deprecated in favor of GtkComboBox.');
INSERT INTO `InterfaceAttribute` VALUES (866,'gtk_option_menu_new','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkOptionMenu has been deprecated in favor of GtkComboBox.');
INSERT INTO `InterfaceAttribute` VALUES (865,'gtk_option_menu_get_menu','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkOptionMenu has been deprecated in favor of GtkComboBox.');
INSERT INTO `InterfaceAttribute` VALUES (864,'gtk_option_menu_get_history','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkOptionMenu has been deprecated in favor of GtkComboBox.');
INSERT INTO `InterfaceAttribute` VALUES (863,'gtk_old_editable_claim_selection','libgtk-x11-2.0','Recommendation','GtkOldEditable has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use the GtkEditable interface instead.');
INSERT INTO `InterfaceAttribute` VALUES (861,'gtk_object_weakunref','libgtk-x11-2.0','Recommendation','gtk_object_weakunref is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_weak_unref>g_object_weak_unref</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (862,'gtk_old_editable_changed','libgtk-x11-2.0','Recommendation','GtkOldEditable has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use the GtkEditable interface instead.');
INSERT INTO `InterfaceAttribute` VALUES (860,'gtk_object_weakref','libgtk-x11-2.0','Recommendation','gtk_object_weakref is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_weak_ref>g_object_weak_ref</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (859,'gtk_object_unref','libgtk-x11-2.0','Recommendation','gtk_object_unref is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_unref>g_object_unref</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (857,'gtk_object_set_user_data','libgtk-x11-2.0','Recommendation','gtk_object_set_user_data is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_set_data>g_object_set_data</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (856,'gtk_object_set_data_full','libgtk-x11-2.0','Recommendation','gtk_object_set_data_full is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_set_data_full>g_object_set_data_full</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (855,'gtk_object_set_data_by_id_full','libgtk-x11-2.0','Recommendation','gtk_object_set_data_by_id_full is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_set_qdata_full>g_object_set_qdata_full</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (854,'gtk_object_set_data_by_id','libgtk-x11-2.0','Recommendation','gtk_object_set_data_by_id is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_set_qdata>g_object_set_qdata</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (853,'gtk_object_set_data','libgtk-x11-2.0','Recommendation','gtk_object_set_data is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_set_data>g_object_set_data</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (852,'gtk_object_set','libgtk-x11-2.0','Recommendation','gtk_object_set is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_set>g_object_set</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (851,'gtk_object_remove_no_notify_by_id','libgtk-x11-2.0','Recommendation','gtk_object_remove_no_notify_by_id is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_steal_qdata>g_object_steal_qdata</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (850,'gtk_object_remove_no_notify','libgtk-x11-2.0','Recommendation','gtk_object_remove_no_notify is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_steal_data>g_object_steal_data</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (849,'gtk_object_remove_data_by_id','libgtk-x11-2.0','Recommendation','gtk_object_remove_data_by_id is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_set_qdata>g_object_set_qdata</int> with data of NULL instead.');
INSERT INTO `InterfaceAttribute` VALUES (848,'gtk_object_remove_data','libgtk-x11-2.0','Recommendation','gtk_object_remove_data is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_set_data>g_object_set_data</int> to set the object data to NULL instead.');
INSERT INTO `InterfaceAttribute` VALUES (847,'gtk_object_ref','libgtk-x11-2.0','Recommendation','gtk_object_ref is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_ref>g_object_ref</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (846,'gtk_object_new','libgtk-x11-2.0','Recommendation','gtk_object_new is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_new>g_object_new</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (845,'gtk_object_get_user_data','libgtk-x11-2.0','Recommendation','gtk_object_get_user_data is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_get_data>g_object_get_data</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (844,'gtk_object_get_data_by_id','libgtk-x11-2.0','Recommendation','gtk_object_get_data_by_id is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_get_qdata>g_object_get_qdata</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (843,'gtk_object_get_data','libgtk-x11-2.0','Recommendation','gtk_object_get_data is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_get_data>g_object_get_data</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (842,'gtk_object_get','libgtk-x11-2.0','Recommendation','gtk_object_get is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_get>g_object_get</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (841,'gtk_object_add_arg_type','libgtk-x11-2.0','Recommendation','gtk_object_add_arg_type is deprecated and should not be used in newly-written code. Deprecated in favor of the GObject property system including GParamSpec.');
INSERT INTO `InterfaceAttribute` VALUES (840,'gtk_notebook_set_tab_vborder','libgtk-x11-2.0','Recommendation','gtk_notebook_set_tab_vborder is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (839,'gtk_notebook_set_tab_hborder','libgtk-x11-2.0','Recommendation','gtk_notebook_set_tab_hborder is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (838,'gtk_notebook_set_tab_border','libgtk-x11-2.0','Recommendation','gtk_notebook_set_tab_border is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (837,'gtk_notebook_set_homogeneous_tabs','libgtk-x11-2.0','Recommendation','gtk_notebook_set_homogeneous_tabs is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (836,'gtk_notebook_set_group_id','libgtk-x11-2.0','Recommendation','gtk_notebook_set_group_id is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (835,'gtk_notebook_get_group_id','libgtk-x11-2.0','Recommendation','gtk_notebook_get_group_id is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (833,'gtk_menu_item_remove_submenu','libgtk-x11-2.0','Recommendation','gtk_menu_item_remove_submenu is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_menu_item_set_submenu>gtk_menu_item_set_submenu</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (832,'gtk_list_unselect_item','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (831,'gtk_list_unselect_child','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (830,'gtk_list_unselect_all','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (829,'gtk_list_undo_selection','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (828,'gtk_list_toggle_row','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (827,'gtk_list_toggle_focus_row','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (826,'gtk_list_toggle_add_mode','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (825,'gtk_list_start_selection','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (824,'gtk_list_set_selection_mode','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (823,'gtk_list_select_item','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (822,'gtk_list_select_child','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (821,'gtk_list_select_all','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (820,'gtk_list_scroll_vertical','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (819,'gtk_list_scroll_horizontal','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (818,'gtk_list_remove_items_no_unref','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (817,'gtk_list_remove_items','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (816,'gtk_list_prepend_items','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (815,'gtk_list_new','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (814,'gtk_list_item_select','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (813,'gtk_list_item_new_with_label','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (812,'gtk_list_item_new','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (811,'gtk_list_item_deselect','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (810,'gtk_list_insert_items','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (809,'gtk_list_extend_selection','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (808,'gtk_list_end_selection','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (807,'gtk_list_end_drag_selection','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (806,'gtk_list_clear_items','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (805,'gtk_list_child_position','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (804,'gtk_list_append_items','libgtk-x11-2.0','Recommendation','GtkList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (803,'gtk_layout_thaw','libgtk-x11-2.0','Recommendation','gtk_layout_thaw is deprecated and should not be used in newly-written code. This function doesn\'t do anything useful.');
INSERT INTO `InterfaceAttribute` VALUES (802,'gtk_layout_freeze','libgtk-x11-2.0','Recommendation','gtk_layout_freeze is deprecated and should not be used in newly-written code. This function doesn\'t do anything useful.');
INSERT INTO `InterfaceAttribute` VALUES (801,'gtk_label_parse_uline','libgtk-x11-2.0','Recommendation','gtk_label_parse_uline is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (800,'gtk_label_get','libgtk-x11-2.0','Recommendation','gtk_label_get is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (799,'gtk_item_factory_set_translate_func','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factory_set_translate_func is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (798,'gtk_item_factory_popup_with_data','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factory_popup_with_data is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (797,'gtk_item_factory_popup_data_from_widget','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factory_popup_data_from_widget is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (796,'gtk_item_factory_popup_data','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factory_popup_data is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (795,'gtk_item_factory_popup','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factory_popup is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (794,'gtk_item_factory_path_from_widget','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factory_path_from_widget is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (793,'gtk_item_factory_new','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factory_new is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (792,'gtk_item_factory_get_widget_by_action','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factory_get_widget_by_action is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (791,'gtk_item_factory_get_widget','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factory_get_widget is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (790,'gtk_item_factory_get_item_by_action','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factory_get_item_by_action is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (789,'gtk_item_factory_get_item','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factory_get_item is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (788,'gtk_item_factory_from_widget','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factory_from_widget is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (787,'gtk_item_factory_from_path','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factory_from_path is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (786,'gtk_item_factory_delete_item','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factory_delete_item is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (785,'gtk_item_factory_delete_entry','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factory_delete_entry is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (784,'gtk_item_factory_delete_entries','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factory_delete_entries is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (783,'gtk_item_factory_create_menu_entries','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factory_create_menu_entries is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (782,'gtk_item_factory_create_items_ac','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factory_create_items_ac is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (781,'gtk_item_factory_create_items','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factory_create_items is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (780,'gtk_item_factory_create_item','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factory_create_item is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (779,'gtk_item_factory_construct','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factory_construct is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (778,'gtk_item_factory_add_foreign','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factory_add_foreign is deprecated and should not be used in newly-written code. The recommended API for this purpose are the functions <int libgtk-x11-2.0;gtk_menu_item_set_accel_path>gtk_menu_item_set_accel_path</int> and <int libgtk-x11-2.0;gtk_widget_set_accel_path>gtk_widget_set_accel_path</int>; don\'t use gtk_item_factory_add_foreign() in new code, since it is likely to be removed in the future.');
INSERT INTO `InterfaceAttribute` VALUES (777,'gtk_item_factories_path_delete','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager. gtk_item_factories_path_delete is deprecated since GTK 2.4 and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (776,'gtk_input_remove','libgtk-x11-2.0','Recommendation','gtk_input_remove is deprecated since GTK 2.4 and should not be used in newly-written code. Use <int libglib-2.0;g_source_remove>g_source_remove</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (775,'gtk_input_add_full','libgtk-x11-2.0','Recommendation','gtk_input_add_full is deprecated since GTK 2.4 and should not be used in newly-written code. Use <int libglib-2.0;g_io_add_watch_full>g_io_add_watch_full</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (773,'gtk_image_get','libgtk-x11-2.0','Recommendation','gtk_image_get is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (774,'gtk_image_set','libgtk-x11-2.0','Recommendation','gtk_image_set is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (772,'gtk_idle_remove_by_data','libgtk-x11-2.0','Recommendation','gtk_idle_remove_by_data is deprecated and should not be used in newly-written code. Use <int libglib-2.0;g_idle_remove_by_data>g_idle_remove_by_data</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (771,'gtk_idle_remove','libgtk-x11-2.0','Recommendation','gtk_idle_remove is deprecated and should not be used in newly-written code. Use <int libglib-2.0;g_source_remove>g_source_remove</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (769,'gtk_idle_add_full','libgtk-x11-2.0','Recommendation','gtk_idle_add_full is deprecated and should not be used in newly-written code. Use <int libglib-2.0;g_idle_add_full>g_idle_add_full</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (770,'gtk_idle_add_priority','libgtk-x11-2.0','Recommendation','gtk_idle_add_priority is deprecated and should not be used in newly-written code. Use <int libglib-2.0;g_idle_add_full>g_idle_add_full</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (768,'gtk_idle_add','libgtk-x11-2.0','Recommendation','gtk_idle_add is deprecated and should not be used in newly-written code. Use <int libglib-2.0;g_idle_add>g_idle_add</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (767,'gtk_hbutton_box_set_spacing_default','libgtk-x11-2.0','Recommendation','gtk_hbutton_box_set_spacing_default is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (765,'gtk_hbutton_box_get_spacing_default','libgtk-x11-2.0','Recommendation','gtk_hbutton_box_get_spacing_default is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (766,'gtk_hbutton_box_set_layout_default','libgtk-x11-2.0','Recommendation','gtk_hbutton_box_set_layout_default is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (764,'gtk_hbutton_box_get_layout_default','libgtk-x11-2.0','Recommendation','gtk_hbutton_box_get_layout_default is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (762,'gtk_font_selection_dialog_get_font','libgtk-x11-2.0','Recommendation','gtk_font_selection_dialog_get_font is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (763,'gtk_font_selection_get_font','libgtk-x11-2.0','Recommendation','gtk_font_selection_get_font is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (761,'gtk_file_selection_show_fileop_buttons','libgtk-x11-2.0','Recommendation','gtk_file_selection_show_fileop_buttons is deprecated and should not be used in newly-written code. GtkFileSelection has been superseded by the newer GtkFileChooser family of widgets.');
INSERT INTO `InterfaceAttribute` VALUES (760,'gtk_file_selection_set_select_multiple','libgtk-x11-2.0','Recommendation','gtk_file_selection_set_select_multiple is deprecated and should not be used in newly-written code. GtkFileSelection has been superseded by the newer GtkFileChooser family of widgets.');
INSERT INTO `InterfaceAttribute` VALUES (759,'gtk_file_selection_set_filename','libgtk-x11-2.0','Recommendation','gtk_file_selection_set_filename is deprecated and should not be used in newly-written code. GtkFileSelection has been superseded by the newer GtkFileChooser family of widgets.');
INSERT INTO `InterfaceAttribute` VALUES (758,'gtk_file_selection_new','libgtk-x11-2.0','Recommendation','gtk_file_selection_new is deprecated and should not be used in newly-written code. GtkFileSelection has been superseded by the newer GtkFileChooser family of widgets.');
INSERT INTO `InterfaceAttribute` VALUES (757,'gtk_file_selection_hide_fileop_buttons','libgtk-x11-2.0','Recommendation','gtk_file_selection_hide_fileop_buttons is deprecated and should not be used in newly-written code. GtkFileSelection has been superseded by the newer GtkFileChooser family of widgets.');
INSERT INTO `InterfaceAttribute` VALUES (756,'gtk_file_selection_get_select_multiple','libgtk-x11-2.0','Recommendation','gtk_file_selection_get_select_multiple is deprecated and should not be used in newly-written code. GtkFileSelection has been superseded by the newer GtkFileChooser family of widgets.');
INSERT INTO `InterfaceAttribute` VALUES (755,'gtk_file_selection_get_selections','libgtk-x11-2.0','Recommendation','gtk_file_selection_get_selections is deprecated and should not be used in newly-written code. GtkFileSelection has been superseded by the newer GtkFileChooser family of widgets.');
INSERT INTO `InterfaceAttribute` VALUES (754,'gtk_file_selection_get_filename','libgtk-x11-2.0','Recommendation','gtk_file_selection_get_filename is deprecated and should not be used in newly-written code. GtkFileSelection has been superseded by the newer GtkFileChooser family of widgets.');
INSERT INTO `InterfaceAttribute` VALUES (753,'gtk_file_selection_complete','libgtk-x11-2.0','Recommendation','gtk_file_selection_complete is deprecated and should not be used in newly-written code. GtkFileSelection has been superseded by the newer GtkFileChooser family of widgets.');
INSERT INTO `InterfaceAttribute` VALUES (751,'gtk_entry_set_position','libgtk-x11-2.0','Recommendation','gtk_entry_set_position is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_editable_set_position>gtk_editable_set_position</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (752,'gtk_exit','libgtk-x11-2.0','Recommendation','gtk_exit is deprecated and should not be used in newly-written code. Use the standard <int libc;exit>exit</int> function instead.');
INSERT INTO `InterfaceAttribute` VALUES (750,'gtk_entry_set_editable','libgtk-x11-2.0','Recommendation','gtk_entry_set_editable is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_editable_set_editable>gtk_editable_set_editable</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (748,'gtk_entry_prepend_text','libgtk-x11-2.0','Recommendation','gtk_entry_prepend_text is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_editable_set_position>gtk_editable_set_position</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (749,'gtk_entry_select_region','libgtk-x11-2.0','Recommendation','gtk_entry_select_region is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_editable_select_region>gtk_editable_select_region</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (747,'gtk_entry_new_with_max_length','libgtk-x11-2.0','Recommendation','gtk_entry_new_with_max_length is deprecated and should not be used in newly-written code. The existence of this function is inconsistent with the rest of the GTK+ API. The normal setup would be to just require the user to make an extra call to <int libgtk-x11-2.0;gtk_entry_set_max_length>gtk_entry_set_max_length</int> instead. It is not expected that this function will be removed, but it would be better practice not to use it.');
INSERT INTO `InterfaceAttribute` VALUES (746,'gtk_entry_append_text','libgtk-x11-2.0','Recommendation','gtk_entry_append_text is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_editable_insert_text>gtk_editable_insert_text</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (745,'gtk_draw_vline','libgtk-x11-2.0','Recommendation','gtk_draw_vline is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_paint_vline>gtk_paint_vline</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (743,'gtk_draw_string','libgtk-x11-2.0','Recommendation','gtk_draw_string is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_paint_layout>gtk_paint_layout</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (744,'gtk_draw_tab','libgtk-x11-2.0','Recommendation','gtk_draw_tab is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_paint_tab>gtk_paint_tab</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (742,'gtk_draw_slider','libgtk-x11-2.0','Recommendation','gtk_draw_slider is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (741,'gtk_draw_shadow_gap','libgtk-x11-2.0','Recommendation','gtk_draw_shadow_gap is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_paint_shadow_gap>gtk_paint_shadow_gap</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (740,'gtk_draw_shadow','libgtk-x11-2.0','Recommendation','gtk_draw_shadow is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_paint_shadow>gtk_paint_shadow</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (738,'gtk_draw_polygon','libgtk-x11-2.0','Recommendation','gtk_draw_polygon is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_paint_polygon>gtk_paint_polygon</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (739,'gtk_draw_resize_grip','libgtk-x11-2.0','Recommendation','gtk_draw_resize_grip is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_paint_resize_grip>gtk_paint_resize_grip</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (737,'gtk_draw_option','libgtk-x11-2.0','Recommendation','gtk_draw_option is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_paint_option>gtk_paint_option</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (735,'gtk_draw_hline','libgtk-x11-2.0','Recommendation','gtk_draw_hline is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_paint_hline>gtk_paint_hline</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (736,'gtk_draw_layout','libgtk-x11-2.0','Recommendation','gtk_draw_layout is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (734,'gtk_draw_handle','libgtk-x11-2.0','Recommendation','gtk_draw_handle is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_paint_handle>gtk_paint_handle</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (733,'gtk_draw_focus','libgtk-x11-2.0','Recommendation','gtk_draw_focus is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_paint_focus>gtk_paint_focus</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (732,'gtk_draw_flat_box','libgtk-x11-2.0','Recommendation','gtk_draw_flat_box is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_paint_flat_box>gtk_paint_flat_box</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (730,'gtk_draw_expander','libgtk-x11-2.0','Recommendation','gtk_draw_expander is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_paint_expander>gtk_paint_expander</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (731,'gtk_draw_extension','libgtk-x11-2.0','Recommendation','gtk_draw_extension is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_paint_extension>gtk_paint_extension</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (729,'gtk_draw_diamond','libgtk-x11-2.0','Recommendation','gtk_draw_diamond is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_paint_diamond>gtk_paint_diamond</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (728,'gtk_draw_check','libgtk-x11-2.0','Recommendation','gtk_draw_check is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_paint_check>gtk_paint_check</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (726,'gtk_draw_box','libgtk-x11-2.0','Recommendation','gtk_draw_box is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_paint_box>gtk_paint_box</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (727,'gtk_draw_box_gap','libgtk-x11-2.0','Recommendation','gtk_draw_box_gap is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_paint_box_gap>gtk_paint_box_gap</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (725,'gtk_draw_arrow','libgtk-x11-2.0','Recommendation','gtk_draw_arrow is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_paint_arrow>gtk_paint_arrow</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (724,'gtk_drawing_area_size','libgtk-x11-2.0','Recommendation','gtk_drawing_area_size is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_widget_set_size_request>gtk_widget_set_size_request</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (723,'gtk_drag_set_default_icon','libgtk-x11-2.0','Recommendation','gtk_drag_set_default_icon is deprecated and should not be used in newly-written code. This function is obsolete. The default icon should now be changed via the stock system by changing the stock pixbuf for GTK_STOCK_DND.');
INSERT INTO `InterfaceAttribute` VALUES (722,'gtk_ctree_unselect_recursive','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (721,'gtk_ctree_unselect','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (720,'gtk_ctree_toggle_expansion_recursive','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (719,'gtk_ctree_toggle_expansion','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (718,'gtk_ctree_sort_recursive','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (717,'gtk_ctree_sort_node','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (716,'gtk_ctree_set_spacing','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (715,'gtk_ctree_set_show_stub','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (714,'gtk_ctree_set_node_info','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (713,'gtk_ctree_set_line_style','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (712,'gtk_ctree_set_indent','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (711,'gtk_ctree_set_expander_style','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (710,'gtk_ctree_set_drag_compare_func','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (709,'gtk_ctree_select_recursive','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (708,'gtk_ctree_select','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (707,'gtk_ctree_remove_node','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (706,'gtk_ctree_real_select_recursive','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (705,'gtk_ctree_pre_recursive_to_depth','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (704,'gtk_ctree_pre_recursive','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (703,'gtk_ctree_post_recursive_to_depth','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (702,'gtk_ctree_post_recursive','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (701,'gtk_ctree_node_set_text','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (700,'gtk_ctree_node_set_shift','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (699,'gtk_ctree_node_set_selectable','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (698,'gtk_ctree_node_set_row_style','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (696,'gtk_ctree_node_set_row_data','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (697,'gtk_ctree_node_set_row_data_full','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (695,'gtk_ctree_node_set_pixtext','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (694,'gtk_ctree_node_set_pixmap','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (693,'gtk_ctree_node_set_foreground','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (692,'gtk_ctree_node_set_cell_style','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (691,'gtk_ctree_node_set_background','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (690,'gtk_ctree_node_nth','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (689,'gtk_ctree_node_moveto','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (688,'gtk_ctree_node_is_visible','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (687,'gtk_ctree_node_get_text','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (686,'gtk_ctree_node_get_selectable','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (685,'gtk_ctree_node_get_row_style','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (684,'gtk_ctree_node_get_row_data','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (683,'gtk_ctree_node_get_pixtext','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (682,'gtk_ctree_node_get_pixmap','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (681,'gtk_ctree_node_get_cell_type','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (680,'gtk_ctree_node_get_cell_style','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (679,'gtk_ctree_new_with_titles','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (678,'gtk_ctree_new','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (677,'gtk_ctree_move','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (676,'gtk_ctree_last','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (675,'gtk_ctree_is_viewable','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (674,'gtk_ctree_is_hot_spot','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (673,'gtk_ctree_is_ancestor','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (672,'gtk_ctree_insert_node','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (671,'gtk_ctree_insert_gnode','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (670,'gtk_ctree_get_node_info','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (669,'gtk_ctree_find_node_ptr','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (668,'gtk_ctree_find_by_row_data_custom','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (667,'gtk_ctree_find_by_row_data','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (666,'gtk_ctree_find_all_by_row_data_custom','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (665,'gtk_ctree_find_all_by_row_data','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (664,'gtk_ctree_find','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (663,'gtk_ctree_export_to_gnode','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (662,'gtk_ctree_expand_to_depth','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (661,'gtk_ctree_expand_recursive','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (660,'gtk_ctree_expand','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (659,'gtk_ctree_collapse_to_depth','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (658,'gtk_ctree_collapse_recursive','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (657,'gtk_ctree_collapse','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (656,'gtk_container_foreach_full','libgtk-x11-2.0','Recommendation','gtk_container_foreach_full is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_container_foreach>gtk_container_foreach</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (655,'gtk_combo_set_value_in_list','libgtk-x11-2.0','Recommendation','gtk_combo_set_value_in_list is deprecated since GTK 2.4 and should not be used in newly-written code. Use GtkComboBox instead.');
INSERT INTO `InterfaceAttribute` VALUES (654,'gtk_combo_set_use_arrows_always','libgtk-x11-2.0','Recommendation','gtk_combo_set_use_arrows_always is deprecated since GTK 2.4 and should not be used in newly-written code. Use GtkComboBox instead.');
INSERT INTO `InterfaceAttribute` VALUES (653,'gtk_combo_set_use_arrows','libgtk-x11-2.0','Recommendation','gtk_combo_set_use_arrows is deprecated since GTK 2.4 and should not be used in newly-written code. Use GtkComboBox instead.');
INSERT INTO `InterfaceAttribute` VALUES (652,'gtk_combo_set_popdown_strings','libgtk-x11-2.0','Recommendation','gtk_combo_set_popdown_strings is deprecated since GTK 2.4 and should not be used in newly-written code. Use GtkComboBox instead.');
INSERT INTO `InterfaceAttribute` VALUES (651,'gtk_combo_set_item_string','libgtk-x11-2.0','Recommendation','gtk_combo_set_item_string is deprecated since GTK 2.4 and should not be used in newly-written code. Use GtkComboBox instead.');
INSERT INTO `InterfaceAttribute` VALUES (650,'gtk_combo_set_case_sensitive','libgtk-x11-2.0','Recommendation','gtk_combo_set_case_sensitive is deprecated since GTK 2.4 and should not be used in newly-written code. Use GtkComboBox instead.');
INSERT INTO `InterfaceAttribute` VALUES (649,'gtk_combo_new','libgtk-x11-2.0','Recommendation','gtk_combo_new is deprecated since GTK 2.4 and should not be used in newly-written code. Use GtkComboBox instead.');
INSERT INTO `InterfaceAttribute` VALUES (648,'gtk_combo_disable_activate','libgtk-x11-2.0','Recommendation','gtk_combo_disable_activate is deprecated since GTK 2.4 and should not be used in newly-written code. Use GtkComboBox instead.');
INSERT INTO `InterfaceAttribute` VALUES (647,'gtk_color_selection_set_update_policy','libgtk-x11-2.0','Recommendation','gtk_color_selection_set_update_policy is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (646,'gtk_color_selection_set_color','libgtk-x11-2.0','Recommendation','gtk_color_selection_set_color is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_color_selection_set_current_color>gtk_color_selection_set_current_color</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (645,'gtk_color_selection_set_change_palette_hook','libgtk-x11-2.0','Recommendation','gtk_color_selection_set_change_palette_hook is deprecated and should not be used in newly-written code. This function is deprecated in favor of <int libgtk-x11-2.0;gtk_color_selection_set_change_palette_with_screen_hook>gtk_color_selection_set_change_palette_with_screen_hook</int>, and does not work in multihead environments.');
INSERT INTO `InterfaceAttribute` VALUES (644,'gtk_color_selection_get_color','libgtk-x11-2.0','Recommendation','gtk_color_selection_get_color is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_color_selection_get_current_color>gtk_color_selection_get_current_color</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (643,'gtk_clist_unselect_row','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (642,'gtk_clist_unselect_all','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (641,'gtk_clist_undo_selection','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (640,'gtk_clist_thaw','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (639,'gtk_clist_swap_rows','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (638,'gtk_clist_sort','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (637,'gtk_clist_set_vadjustment','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (636,'gtk_clist_set_use_drag_icons','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (634,'gtk_clist_set_sort_type','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (635,'gtk_clist_set_text','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (633,'gtk_clist_set_sort_column','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (632,'gtk_clist_set_shift','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (631,'gtk_clist_set_shadow_type','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (630,'gtk_clist_set_selection_mode','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (629,'gtk_clist_set_selectable','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (628,'gtk_clist_set_row_style','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (627,'gtk_clist_set_row_height','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (626,'gtk_clist_set_row_data_full','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (625,'gtk_clist_set_row_data','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (624,'gtk_clist_set_reorderable','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (623,'gtk_clist_set_pixtext','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (622,'gtk_clist_set_pixmap','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (621,'gtk_clist_set_hadjustment','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (620,'gtk_clist_set_foreground','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (619,'gtk_clist_set_compare_func','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (618,'gtk_clist_set_column_width','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (617,'gtk_clist_set_column_widget','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (616,'gtk_clist_set_column_visibility','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (615,'gtk_clist_set_column_title','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (614,'gtk_clist_set_column_resizeable','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (613,'gtk_clist_set_column_min_width','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (612,'gtk_clist_set_column_max_width','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (611,'gtk_clist_set_column_justification','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (610,'gtk_clist_set_column_auto_resize','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (609,'gtk_clist_set_cell_style','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (608,'gtk_clist_set_button_actions','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (607,'gtk_clist_set_background','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (606,'gtk_clist_set_auto_sort','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (605,'gtk_clist_select_row','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (604,'gtk_clist_select_all','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (603,'gtk_clist_row_move','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (602,'gtk_clist_row_is_visible','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (601,'gtk_clist_remove','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (600,'gtk_clist_prepend','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (599,'gtk_clist_optimal_column_width','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (598,'gtk_clist_new_with_titles','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (597,'gtk_clist_new','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (596,'gtk_clist_moveto','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (595,'gtk_clist_insert','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (594,'gtk_clist_get_vadjustment','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (593,'gtk_clist_get_text','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (592,'gtk_clist_get_selection_info','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (591,'gtk_clist_get_selectable','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (590,'gtk_clist_get_row_style','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (589,'gtk_clist_get_row_data','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (588,'gtk_clist_get_pixtext','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (587,'gtk_clist_get_pixmap','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (586,'gtk_clist_get_hadjustment','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (585,'gtk_clist_get_column_widget','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (584,'gtk_clist_get_column_title','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (583,'gtk_clist_get_cell_type','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (582,'gtk_clist_get_cell_style','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (581,'gtk_clist_freeze','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (580,'gtk_clist_find_row_from_data','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (579,'gtk_clist_column_title_passive','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (578,'gtk_clist_column_title_active','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (577,'gtk_clist_column_titles_show','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (576,'gtk_clist_column_titles_passive','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (575,'gtk_clist_column_titles_hide','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (574,'gtk_clist_column_titles_active','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (573,'gtk_clist_columns_autosize','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (572,'gtk_clist_clear','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (571,'gtk_clist_append','libgtk-x11-2.0','Recommendation','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (570,'gtk_check_menu_item_set_show_toggle','libgtk-x11-2.0','Recommendation','gtk_check_menu_item_set_show_toggle is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (569,'gtk_cell_renderer_editing_canceled','libgtk-x11-2.0','Recommendation','gtk_cell_renderer_editing_canceled is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_cell_renderer_stop_editing>gtk_cell_renderer_stop_editing</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (568,'gtk_calendar_thaw','libgtk-x11-2.0','Recommendation','gtk_calendar_thaw has been deprecated since version GTK 2.8 and should not be used in newly-written code. It does nothing in modern GTK.');
INSERT INTO `InterfaceAttribute` VALUES (567,'gtk_calendar_freeze','libgtk-x11-2.0','Recommendation','gtk_calendar_freeze has been deprecated since version GTK 2.8 and should not be used in newly-written code. It does nothing in modern GTK.');
INSERT INTO `InterfaceAttribute` VALUES (566,'gtk_calendar_display_options','libgtk-x11-2.0','Recommendation','gtk_calendar_display_options is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (565,'gtk_button_box_set_child_size','libgtk-x11-2.0','Recommendation','gtk_button_box_set_child_size is deprecated and should not be used in newly-written code. Use the style properties \"child-min-width/-height\" instead.');
INSERT INTO `InterfaceAttribute` VALUES (564,'gtk_button_box_set_child_ipadding','libgtk-x11-2.0','Recommendation','gtk_button_box_set_child_ipadding is deprecated and should not be used in newly-written code. Use the style properties \"child-internal-pad-x/-y\" instead.');
INSERT INTO `InterfaceAttribute` VALUES (563,'gtk_button_box_get_child_size','libgtk-x11-2.0','Recommendation','gtk_button_box_get_child_size is deprecated and should not be used in newly-written code. Use the style properties \"child-min-width/-height\" instead.');
INSERT INTO `InterfaceAttribute` VALUES (562,'gtk_button_box_get_child_ipadding','libgtk-x11-2.0','Recommendation','gtk_button_box_get_child_ipadding is deprecated and should not be used in newly-written code. Use the style properties \"child-internal-pad-x/-y\" instead.');
INSERT INTO `InterfaceAttribute` VALUES (946,'gtk_text_thaw','libgtk-x11-2.0','Recommendation','GtkText is deprecated and unsupported. It is known to be buggy. Use GtkTextView instead.');
INSERT INTO `InterfaceAttribute` VALUES (947,'gtk_timeout_add','libgtk-x11-2.0','Recommendation','gtk_timeout_add is deprecated since GTK 2.4 and should not be used in newly-written code. Use <int libglib-2.0;g_timeout_add>g_timeout_add</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (948,'gtk_timeout_add_full','libgtk-x11-2.0','Recommendation','gtk_timeout_add_full is deprecated since GTK 2.4 and should not be used in newly-written code. Use <int libglib-2.0;g_timeout_add_full>g_timeout_add_full</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (949,'gtk_timeout_remove','libgtk-x11-2.0','Recommendation','gtk_timeout_remove is deprecated since GTK 2.4 and should not be used in newly-written code. Use <int libglib-2.0;g_source_remove>g_source_remove</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (950,'gtk_tips_query_new','libgtk-x11-2.0','Recommendation','gtk_tips_query_new is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (951,'gtk_tips_query_set_caller','libgtk-x11-2.0','Recommendation','gtk_tips_query_set_caller is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (952,'gtk_tips_query_set_labels','libgtk-x11-2.0','Recommendation','gtk_tips_query_set_labels is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (953,'gtk_tips_query_start_query','libgtk-x11-2.0','Recommendation','gtk_tips_query_start_query is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (954,'gtk_tips_query_stop_query','libgtk-x11-2.0','Recommendation','gtk_tips_query_stop_query is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (955,'gtk_toolbar_append_element','libgtk-x11-2.0','Recommendation','gtk_toolbar_append_element is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (956,'gtk_toolbar_append_item','libgtk-x11-2.0','Recommendation','gtk_toolbar_append_item is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (957,'gtk_toolbar_append_space','libgtk-x11-2.0','Recommendation','gtk_toolbar_append_space is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (958,'gtk_toolbar_append_widget','libgtk-x11-2.0','Recommendation','gtk_toolbar_append_widget is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (959,'gtk_toolbar_insert_element','libgtk-x11-2.0','Recommendation','gtk_toolbar_insert_element is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (960,'gtk_toolbar_insert_item','libgtk-x11-2.0','Recommendation','gtk_toolbar_insert_item is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (961,'gtk_toolbar_insert_space','libgtk-x11-2.0','Recommendation','gtk_toolbar_insert_space is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (962,'gtk_toolbar_insert_stock','libgtk-x11-2.0','Recommendation','gtk_toolbar_insert_stock is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (963,'gtk_toolbar_insert_widget','libgtk-x11-2.0','Recommendation','gtk_toolbar_insert_widget is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (964,'gtk_toolbar_prepend_element','libgtk-x11-2.0','Recommendation','gtk_toolbar_prepend_element is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (965,'gtk_toolbar_prepend_item','libgtk-x11-2.0','Recommendation','gtk_toolbar_prepend_item is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (966,'gtk_toolbar_prepend_space','libgtk-x11-2.0','Recommendation','gtk_toolbar_prepend_space is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (967,'gtk_toolbar_prepend_widget','libgtk-x11-2.0','Recommendation','gtk_toolbar_prepend_widget is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (968,'gtk_toolbar_remove_space','libgtk-x11-2.0','Recommendation','gtk_toolbar_remove_space is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (978,'gtk_tree_append','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (979,'gtk_tree_child_position','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (980,'gtk_tree_clear_items','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (981,'gtk_tree_insert','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (982,'gtk_tree_item_collapse','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (983,'gtk_tree_item_deselect','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (984,'gtk_tree_item_expand','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (985,'gtk_tree_item_new','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (986,'gtk_tree_item_new_with_label','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (987,'gtk_tree_item_remove_subtree','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (988,'gtk_tree_item_select','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (989,'gtk_tree_item_set_subtree','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (990,'gtk_tree_new','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (991,'gtk_tree_prepend','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (992,'gtk_tree_remove_item','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (993,'gtk_tree_remove_items','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (994,'gtk_tree_select_child','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (995,'gtk_tree_select_item','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (996,'gtk_tree_set_selection_mode','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (997,'gtk_tree_set_view_lines','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (998,'gtk_tree_set_view_mode','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (999,'gtk_tree_unselect_child','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (1000,'gtk_tree_unselect_item','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (1001,'gtk_tree_view_tree_to_widget_coords','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (1002,'gtk_tree_view_widget_to_tree_coords','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (1003,'gtk_type_enum_find_value','libgtk-x11-2.0','Recommendation','gtk_type_enum_find_value is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (1004,'gtk_type_enum_get_values','libgtk-x11-2.0','Recommendation','gtk_type_enum_get_values is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (1005,'gtk_type_flags_find_value','libgtk-x11-2.0','Recommendation','gtk_type_flags_find_value is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (1006,'gtk_type_flags_get_values','libgtk-x11-2.0','Recommendation','gtk_type_flags_get_values is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (1007,'gtk_type_init','libgtk-x11-2.0','Recommendation','gtk_type_init is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (1008,'gtk_type_new','libgtk-x11-2.0','Recommendation','gtk_type_new is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (1009,'gtk_type_unique','libgtk-x11-2.0','Recommendation','gtk_type_unique is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (1010,'gtk_vbutton_box_get_layout_default','libgtk-x11-2.0','Recommendation','gtk_vbutton_box_get_layout_default is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (1011,'gtk_vbutton_box_get_spacing_default','libgtk-x11-2.0','Recommendation','gtk_vbutton_box_get_spacing_default is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (1012,'gtk_vbutton_box_set_layout_default','libgtk-x11-2.0','Recommendation','gtk_vbutton_box_set_layout_default is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (1013,'gtk_vbutton_box_set_spacing_default','libgtk-x11-2.0','Recommendation','gtk_vbutton_box_set_spacing_default is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (1014,'gtk_widget_draw','libgtk-x11-2.0','Recommendation','gtk_widget_draw is deprecated and should not be used in newly-written code. <int libgtk-x11-2.0;gtk_widget_queue_draw_area>gtk_widget_queue_draw_area</int> is a better choice if you want to draw a region of a widget.');
INSERT INTO `InterfaceAttribute` VALUES (1015,'gtk_widget_queue_clear','libgtk-x11-2.0','Recommendation','gtk_widget_queue_clear is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_widget_queue_draw>gtk_widget_queue_draw</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1016,'gtk_widget_queue_clear_area','libgtk-x11-2.0','Recommendation','gtk_widget_queue_clear_area is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_widget_queue_draw_area>gtk_widget_queue_draw_area</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1017,'gtk_widget_ref','libgtk-x11-2.0','Recommendation','gtk_widget_ref is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_ref>g_object_ref</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1018,'gtk_widget_set','libgtk-x11-2.0','Recommendation','gtk_widget_set is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_set>g_object_set</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1019,'gtk_widget_set_uposition','libgtk-x11-2.0','Recommendation','gtk_widget_set_uposition is deprecated and should not be used in newly-written code. Don\'t use this function to center dialogs over the main application window; most window managers will do the centering on your behalf if you call <int libgtk-x11-2.0;gtk_window_set_transient_for>gtk_window_set_transient_for</int>, and it\'s really not possible to get the centering to work correctly in all cases from application code.');
INSERT INTO `InterfaceAttribute` VALUES (1020,'gtk_widget_set_usize','libgtk-x11-2.0','Recommendation','gtk_widget_set_usize is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_widget_set_size_request>gtk_widget_set_size_request</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1021,'gtk_widget_unref','libgtk-x11-2.0','Recommendation','gtk_widget_unref is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_unref>g_object_unref</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1022,'gtk_window_set_policy','libgtk-x11-2.0','Recommendation','gtk_window_set_policy is deprecated and should not be used in newly-written code. Use <int libgtk-x11-2.0;gtk_window_set_resizable>gtk_window_set_resizable</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1025,'g_async_queue_ref_unlocked','libglib-2.0','Recommendation','g_async_queue_ref_unlocked is deprecated and should not be used in newly-written code. Since 2.8, reference counting is done atomically so <int libglib-2.0;g_async_queue_ref>g_async_queue_ref</int> can be used regardless of the queue\'s lock.');
INSERT INTO `InterfaceAttribute` VALUES (1026,'g_async_queue_unref_and_unlock','libglib-2.0','Recommendation','g_async_queue_unref_and_unlock is deprecated and should not be used in newly-written code. Since 2.8, reference counting is done atomically so <int libglib-2.0;g_async_queue_unref>g_async_queue_unref</int> can be used regardless of the queue\'s lock.');
INSERT INTO `InterfaceAttribute` VALUES (1027,'g_basename','libglib-2.0','Recommendation','g_basename is deprecated and should not be used in newly-written code. Use <int libglib-2.0;g_path_get_basename>g_path_get_basename</int> instead, but notice that <int libglib-2.0;g_path_get_basename>g_path_get_basename</int> allocates new memory for the returned string, unlike this function which returns a pointer into the argument.');
INSERT INTO `InterfaceAttribute` VALUES (1029,'g_cache_value_foreach','libglib-2.0','Recommendation','g_cache_value_foreach is deprecated and should not be used in newly-written code.The reason is that it passes pointers to internal data structures to func; use <int libglib-2.0;g_cache_key_foreach>g_cache_key_foreach</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1744,'_sys_errlist','libc','Rejection','sys_errlist is deprecated. Use <int libc;strerror>strerror</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1034,'g_io_channel_close','libglib-2.0','Recommendation','g_io_channel_close is deprecated and should not be used in newly-written code. Use <int libglib-2.0;g_io_channel_shutdown>g_io_channel_shutdown</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1035,'g_io_channel_read','libglib-2.0','Recommendation','g_io_channel_read is deprecated and should not be used in newly-written code. Use <int libglib-2.0;g_io_channel_read_chars>g_io_channel_read_chars</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1036,'g_io_channel_seek','libglib-2.0','Recommendation','g_io_channel_seek is deprecated and should not be used in newly-written code. Use <int libglib-2.0;g_io_channel_seek_position>g_io_channel_seek_position</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1037,'g_io_channel_write','libglib-2.0','Recommendation','g_io_channel_write is deprecated and should not be used in newly-written code. Use <int libglib-2.0;g_io_channel_write_chars>g_io_channel_write_chars</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1053,'g_strcasecmp','libglib-2.0','Recommendation','g_strcasecmp is deprecated and should not be used in newly-written code. This function is broken if your string is guaranteed to be ASCII, since it\'s locale-sensitive, and it\'s broken if your string is localized, since it doesn\'t work on many encodings at all, including UTF-8, EUC-JP, etc. There are therefore two replacement functions: <int libglib-2.0;g_ascii_strcasecmp>g_ascii_strcasecmp</int>, which only works on ASCII and is not locale-sensitive, and <int libglib-2.0;g_utf8_casefold>g_utf8_casefold</int>, which is good for case-insensitive sorting of UTF-8.');
INSERT INTO `InterfaceAttribute` VALUES (1054,'g_strdown','libglib-2.0','Recommendation','g_strdown is deprecated and should not be used in newly-written code. This function is broken if your string is guaranteed to be ASCII, since it\'s locale-sensitive, and it\'s broken if your string is localized, since it doesn\'t work on many encodings at all, including UTF-8, EUC-JP, etc. There are therefore two replacement functions: <int libglib-2.0;g_ascii_strdown>g_ascii_strdown</int> and <int libglib-2.0;g_utf8_strdown>g_utf8_strdown</int>.');
INSERT INTO `InterfaceAttribute` VALUES (1055,'g_string_down','libglib-2.0','Recommendation','g_string_down is deprecated and should not be used in newly-written code. This function uses the locale-specific tolower() function, which is almost never the right thing. Use <int libglib-2.0;g_string_ascii_down>g_string_ascii_down</int> or <int libglib-2.0;g_utf8_strdown>g_utf8_strdown instead.');
INSERT INTO `InterfaceAttribute` VALUES (1056,'g_string_up','libglib-2.0','Recommendation','g_string_up is deprecated and should not be used in newly-written code. This function uses the locale-specific toupper() function, which is almost never the right thing. Use <int libglib-2.0;g_string_ascii_up>g_string_ascii_up</int> or <int libglib-2.0;g_utf8_strup>g_utf8_strup</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1057,'g_strncasecmp','libglib-2.0','Recommendation','g_strncasecmp is deprecated and should not be used in newly-written code. This function is broken if your string is guaranteed to be ASCII, since it\'s locale-sensitive, and it\'s broken if your string is localized, since it doesn\'t work on many encodings at all, including UTF-8, EUC-JP, etc. There are therefore two replacement functions: <int libglib-2.0;g_ascii_strncasecmp>g_ascii_strncasecmp</int>, which only works on ASCII and is not locale-sensitive, and <int libglib-2.0;g_utf8_casefold>g_utf8_casefold</int>, which is good for case-insensitive sorting of UTF-8.');
INSERT INTO `InterfaceAttribute` VALUES (1058,'g_strup','libglib-2.0','Recommendation','g_strup is deprecated and should not be used in newly-written code. This function is broken if your string is guaranteed to be ASCII, since it\'s locale-sensitive, and it\'s broken if your string is localized, since it doesn\'t work on many encodings at all, including UTF-8, EUC-JP, etc. There are therefore two replacement functions: <int libglib-2.0;g_ascii_strup>g_ascii_strup</int> or <int libglib-2.0;g_utf8_strup>g_utf8_strup</int>.');
INSERT INTO `InterfaceAttribute` VALUES (1059,'g_tree_traverse','libglib-2.0','Recommendation','g_tree_traverse is deprecated and should not be used in newly-written code. The order of a balanced tree is somewhat arbitrary. If you just want to visit all nodes in sorted order, use <int libglib-2.0;g_tree_foreach>g_tree_foreach</int> instead. If you really need to visit nodes in a different order, consider using an N-ary Tree.');
INSERT INTO `InterfaceAttribute` VALUES (1060,'g_value_set_boxed_take_ownership','libgobject-2.0','Recommendation','g_value_set_boxed_take_ownership is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_value_take_boxed>g_value_take_boxed</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1061,'g_value_set_object_take_ownership','libgobject-2.0','Recommendation','g_value_set_object_take_ownership is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_value_take_object>g_value_take_object</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1062,'g_value_set_param_take_ownership','libgobject-2.0','Recommendation','g_value_set_param_take_ownership is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_value_take_param>g_value_take_param</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1063,'g_value_set_string_take_ownership','libgobject-2.0','Recommendation','g_value_set_string_take_ownership is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_value_take_string>g_value_take_string</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1064,'atk_object_get_layer','libatk-1.0','Recommendation','atk_object_get_layer is deprecated and should not be used in newly-written code. Use <int libatk-1.0;atk_component_get_layer>atk_component_get_layer</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1065,'atk_object_get_mdi_zorder','libatk-1.0','Recommendation','atk_object_get_mdi_zorder is deprecated and should not be used in newly-written code. Use <int libatk-1.0;atk_component_get_mdi_zorder>atk_component_get_mdi_zorder</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1066,'pango_fc_font_get_unknown_glyph','libpangoft2-1.0','Recommendation','pango_fc_font_get_unknown_glyph is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (1067,'pango_ft2_font_get_coverage','libpangoft2-1.0','Recommendation','pango_ft2_font_get_coverage is deprecated and should not be used in newly-written code. Use <int libpango-1.0;pango_font_get_coverage>pango_font_get_coverage</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1068,'pango_ft2_font_get_face','libpangoft2-1.0','Recommendation','pango_ft2_font_get_face is deprecated and should not be used in newly-written code. Use <int libpangoft2-1.0;pango_fc_font_lock_face>pango_fc_font_lock_face</int> instead; when you are done with a face from <int libpangoft2-1.0;pango_fc_font_lock_face>pango_fc_font_lock_face</int> you must call <int libpangoft2-1.0;pango_fc_font_unlock_face>pango_fc_font_unlock_face</int>.');
INSERT INTO `InterfaceAttribute` VALUES (1069,'pango_ft2_font_get_kerning','libpangoft2-1.0','Recommendation','pango_ft2_font_get_kerning is deprecated and should not be used in newly-written code. Use <int libpangoft2-1.0;pango_fc_font_kern_glyphs>pango_fc_font_kern_glyphs</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1070,'pango_ft2_font_map_for_display','libpangoft2-1.0','Recommendation','pango_ft2_font_map_for_display is deprecated and should not be used in newly-written code. Use of the global PangoFT2 fontmap is deprecated; use <int libpangoft2-1.0;pango_ft2_font_map_new>pango_ft2_font_map_new</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1071,'pango_ft2_get_context','libpangoft2-1.0','Recommendation','pango_ft2_get_context is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (1072,'pango_ft2_get_unknown_glyph','libpangoft2-1.0','Recommendation','pango_ft2_get_unknown_glyph is deprecated and should not be used in newly-written code. If you want to draw an unknown-box for a character that is not covered by the font, use <const PANGO_GET_UNKNOWN_GLYPH>PANGO_GET_UNKNOWN_GLYPH</const> macro instead.');
INSERT INTO `InterfaceAttribute` VALUES (1073,'pango_ft2_shutdown_display','libpangoft2-1.0','Recommendation','pango_ft2_shutdown_display is deprecated and should not be used in newly-written code. Use <int libpango-1.0;pango_font_get_coverage>pango_font_get_coverage</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1074,'pango_get_mirror_char','libpango-1.0','Recommendation','pango_get_mirror_char is deprecated and should not be used in newly-written code. Use <int libglib-2.0;g_unichar_get_mirror_char>g_unichar_get_mirror_char</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1075,'pango_xft_font_get_glyph','libpangoxft-1.0','Recommendation','pango_xft_font_get_glyph is deprecated and should not be used in newly-written code. Use <int libpangoft2-1.0;pango_fc_font_get_glyph>pango_fc_font_get_glyph</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1076,'pango_xft_font_get_unknown_glyph','libpangoxft-1.0','Recommendation','pango_xft_font_get_unknown_glyph is deprecated and should not be used in newly-written code. Use <const PANGO_GET_UNKNOWN_GLYPH>PANGO_GET_UNKNOWN_GLYPH</const> macro instead.');
INSERT INTO `InterfaceAttribute` VALUES (1077,'pango_xft_font_has_char','libpangoxft-1.0','Recommendation','pango_xft_font_has_char is deprecated and should not be used in newly-written code. Use <int libpangoft2-1.0;pango_fc_font_has_char>pango_fc_font_has_char</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1078,'pango_xft_font_lock_face','libpangoxft-1.0','Recommendation','pango_xft_font_lock_face is deprecated and should not be used in newly-written code. Use <int libpangoft2-1.0;pango_fc_font_lock_face>pango_fc_font_lock_face</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1079,'pango_xft_font_unlock_face','libpangoxft-1.0','Recommendation','pango_xft_font_unlock_face is deprecated and should not be used in newly-written code. Use <int libpangoft2-1.0;pango_fc_font_unlock_face>pango_fc_font_unlock_face</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1080,'pango_x_apply_ligatures','libpangox','Recommendation','This is a function from deprecated X font backend. This font backend is no longer supported, and attempts to use it will produce unpredictable results. Use the Xft or Cairo backend instead.');
INSERT INTO `InterfaceAttribute` VALUES (1081,'pango_x_context_set_funcs','libpangox','Recommendation','This is a function from deprecated X font backend. This font backend is no longer supported, and attempts to use it will produce unpredictable results. Use the Xft or Cairo backend instead.');
INSERT INTO `InterfaceAttribute` VALUES (1082,'pango_x_fallback_shape','libpangox','Recommendation','This is a function from deprecated X font backend. This font backend is no longer supported, and attempts to use it will produce unpredictable results. Use the Xft or Cairo backend instead.');
INSERT INTO `InterfaceAttribute` VALUES (1083,'pango_x_find_first_subfont','libpangox','Recommendation','This is a function from deprecated X font backend. This font backend is no longer supported, and attempts to use it will produce unpredictable results. Use the Xft or Cairo backend instead.');
INSERT INTO `InterfaceAttribute` VALUES (1084,'pango_x_font_cache_free','libpangox','Recommendation','This is a function from deprecated X font backend. This font backend is no longer supported, and attempts to use it will produce unpredictable results. Use the Xft or Cairo backend instead.');
INSERT INTO `InterfaceAttribute` VALUES (1085,'pango_x_font_cache_load','libpangox','Recommendation','This is a function from deprecated X font backend. This font backend is no longer supported, and attempts to use it will produce unpredictable results. Use the Xft or Cairo backend instead.');
INSERT INTO `InterfaceAttribute` VALUES (1086,'pango_x_font_cache_new','libpangox','Recommendation','This is a function from deprecated X font backend. This font backend is no longer supported, and attempts to use it will produce unpredictable results. Use the Xft or Cairo backend instead.');
INSERT INTO `InterfaceAttribute` VALUES (1087,'pango_x_font_cache_unload','libpangox','Recommendation','This is a function from deprecated X font backend. This font backend is no longer supported, and attempts to use it will produce unpredictable results. Use the Xft or Cairo backend instead.');
INSERT INTO `InterfaceAttribute` VALUES (1088,'pango_x_font_get_unknown_glyph','libpangox','Recommendation','This is a function from deprecated X font backend. This font backend is no longer supported, and attempts to use it will produce unpredictable results. Use the Xft or Cairo backend instead.');
INSERT INTO `InterfaceAttribute` VALUES (1089,'pango_x_font_map_for_display','libpangox','Recommendation','This is a function from deprecated X font backend. This font backend is no longer supported, and attempts to use it will produce unpredictable results. Use the Xft or Cairo backend instead.');
INSERT INTO `InterfaceAttribute` VALUES (1090,'pango_x_font_map_get_font_cache','libpangox','Recommendation','This is a function from deprecated X font backend. This font backend is no longer supported, and attempts to use it will produce unpredictable results. Use the Xft or Cairo backend instead.');
INSERT INTO `InterfaceAttribute` VALUES (1091,'pango_x_font_subfont_xlfd','libpangox','Recommendation','This is a function from deprecated X font backend. This font backend is no longer supported, and attempts to use it will produce unpredictable results. Use the Xft or Cairo backend instead.');
INSERT INTO `InterfaceAttribute` VALUES (1092,'pango_x_get_context','libpangox','Recommendation','This is a function from deprecated X font backend. This font backend is no longer supported, and attempts to use it will produce unpredictable results. Use the Xft or Cairo backend instead.');
INSERT INTO `InterfaceAttribute` VALUES (1093,'pango_x_get_unknown_glyph','libpangox','Recommendation','This is a function from deprecated X font backend. This font backend is no longer supported, and attempts to use it will produce unpredictable results. Use the Xft or Cairo backend instead.');
INSERT INTO `InterfaceAttribute` VALUES (1094,'pango_x_has_glyph','libpangox','Recommendation','This is a function from deprecated X font backend. This font backend is no longer supported, and attempts to use it will produce unpredictable results. Use the Xft or Cairo backend instead.');
INSERT INTO `InterfaceAttribute` VALUES (1095,'pango_x_list_subfonts','libpangox','Recommendation','This is a function from deprecated X font backend. This font backend is no longer supported, and attempts to use it will produce unpredictable results. Use the Xft or Cairo backend instead.');
INSERT INTO `InterfaceAttribute` VALUES (1096,'pango_x_load_font','libpangox','Recommendation','This is a function from deprecated X font backend. This font backend is no longer supported, and attempts to use it will produce unpredictable results. Use the Xft or Cairo backend instead.');
INSERT INTO `InterfaceAttribute` VALUES (1097,'pango_x_render','libpangox','Recommendation','This is a function from deprecated X font backend. This font backend is no longer supported, and attempts to use it will produce unpredictable results. Use the Xft or Cairo backend instead.');
INSERT INTO `InterfaceAttribute` VALUES (1098,'pango_x_render_layout','libpangox','Recommendation','This is a function from deprecated X font backend. This font backend is no longer supported, and attempts to use it will produce unpredictable results. Use the Xft or Cairo backend instead.');
INSERT INTO `InterfaceAttribute` VALUES (1099,'pango_x_render_layout_line','libpangox','Recommendation','This is a function from deprecated X font backend. This font backend is no longer supported, and attempts to use it will produce unpredictable results. Use the Xft or Cairo backend instead.');
INSERT INTO `InterfaceAttribute` VALUES (1100,'pango_x_shutdown_display','libpangox','Recommendation','This is a function from deprecated X font backend. This font backend is no longer supported, and attempts to use it will produce unpredictable results. Use the Xft or Cairo backend instead.');
INSERT INTO `InterfaceAttribute` VALUES (1101,'gdk_pixbuf_animation_ref','libgdk_pixbuf-2.0','Recommendation','gdk_pixbuf_animation_ref is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_ref>g_object_ref</int>.');
INSERT INTO `InterfaceAttribute` VALUES (1102,'gdk_pixbuf_animation_unref','libgdk_pixbuf-2.0','Recommendation','gdk_pixbuf_animation_unref is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_unref>g_object_unref</int>.');
INSERT INTO `InterfaceAttribute` VALUES (1103,'gdk_pixbuf_ref','libgdk_pixbuf-2.0','Recommendation','gdk_pixbuf_ref is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_ref>g_object_ref</int>.');
INSERT INTO `InterfaceAttribute` VALUES (1104,'gdk_pixbuf_unref','libgdk_pixbuf-2.0','Recommendation','gdk_pixbuf_unref is deprecated and should not be used in newly-written code. Use <int libgobject-2.0;g_object_unref>g_object_unref</int>.');
INSERT INTO `InterfaceAttribute` VALUES (1105,'pthread_attr_getstackaddr','libpthread','Recommendation','This interface is obsolete. Use the <int libpthread;pthread_attr_getstack>pthread_attr_getstack</int> function.');
INSERT INTO `InterfaceAttribute` VALUES (1106,'pthread_attr_isetstackaddr','libpthread','Recommendation','This interface is obsolete. Use the <int libpthread;pthread_attr_setstack>pthread_attr_setstack</int> function.');
INSERT INTO `InterfaceAttribute` VALUES (1107,'getwd','libc','Recommendation','This interface is obsolete. Use the <int libc;getcwd>getcwd</int> function.');
INSERT INTO `InterfaceAttribute` VALUES (1108,'gamma','libm','Recommendation','This name for the interface is obsolete. Use <int libm;lgamma>lgamma</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1109,'gammaf','libm','Recommendation','This name for the interface is obsolete. Use <int libm;lgammaf>lgammaf</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1110,'gammal','libm','Recommendation','This name for the interface is obsolete. Use <int libm;lgammal>lgammal</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1111,'getdtablesize','libc','Recommendation','This interface is deprecated. Use sysconf(_SC_OPEN_MAX) instead.');
INSERT INTO `InterfaceAttribute` VALUES (1112,'getpagesize','libc','Recommendation','This interface is deprecated. Use sysconf(_SC_GET_PAGE_SIZE) instead');
INSERT INTO `InterfaceAttribute` VALUES (1113,'get_nprocs_onln','libc','Recommendation','can use sysconf(_SC_NPROCESSORS_ONLN) for this');
INSERT INTO `InterfaceAttribute` VALUES (1114,'bcmp','libc','Recommendation','POSIX.1-2008 removes the specification of bcmp(). Consider using <int libc;memcmp>memcmp</int>.');
INSERT INTO `InterfaceAttribute` VALUES (1115,'bcopy','libc','Recommendation','POSIX.1-2008 removes the specification of bcopy(). Consider using <int libc;memmove>memmove</int>.');
INSERT INTO `InterfaceAttribute` VALUES (1116,'bzero','libc','Recommendation','POSIX.1-2008 removes the specification of bzero(). Consider using <int libc;memset>memset</int>.');
INSERT INTO `InterfaceAttribute` VALUES (1120,'ftime','libc','Recommendation','POSIX.1-2008 removes the specification of ftime(). Applications are recommended to use the <int libc;time>time</int> function to determine the current time. Realtime applications should use <int librt;clock_gettime>clock_gettime</int> to determine the current time.');
INSERT INTO `InterfaceAttribute` VALUES (1121,'getcontext','libc','Recommendation','Due to portability issues with this function, especially with the manipulation of contexts, POSIX.1-2008 removes the specification of getcontext(). Consider using POSIX threads.');
INSERT INTO `InterfaceAttribute` VALUES (1122,'makecontext','libc','Recommendation','Due to portability issues with this function, especially with the manipulation of contexts, POSIX.1-2008 removes the specification of makecontext(). Consider using POSIX threads.');
INSERT INTO `InterfaceAttribute` VALUES (1123,'setcontext','libc','Recommendation','Due to portability issues with this function, especially with the manipulation of contexts, POSIX.1-2008 removes the specification of setcontext(). Consider using POSIX threads.');
INSERT INTO `InterfaceAttribute` VALUES (1124,'swapcontext','libc','Recommendation','Due to portability issues with this function, especially with the manipulation of contexts, POSIX.1-2008 removes the specification of swapcontext(). Consider using POSIX threads.');
INSERT INTO `InterfaceAttribute` VALUES (1125,'index','libc','Recommendation','POSIX.1-2008 removes the specification of index(). Consider using <int libc;strchr>strchr</int>.');
INSERT INTO `InterfaceAttribute` VALUES (1126,'mktemp','libc','Recommendation','POSIX.1-2008 removes the specification of mktemp(). The mktemp() function makes an application vulnerable to possible security problems since between the time a pathname is created and the file opened, it is possible for some other process to create a file with the same name. Consider using <int libc;mkstemp>mkstemp</int>.');
INSERT INTO `InterfaceAttribute` VALUES (1127,'rindex','libc','Recommendation','POSIX.1-2008 removes the specification of rindex(). Consider using <int libc;strrchr>strrchr</int>.');
INSERT INTO `InterfaceAttribute` VALUES (1128,'scalb','libm','Recommendation','POSIX.1-2008 removes the specification of scalb(). Consider using <int libm;scalbln>scalbln</int>, <int libm;scalblnf>scalblnf</int> or <int libm;scalblnl>scalblnl</int>.');
INSERT INTO `InterfaceAttribute` VALUES (1129,'usleep','libc','Recommendation','POSIX.1-2008 removes the specification of usleep(). Consider using <int libc;nanosleep>nanosleep</int>.');
INSERT INTO `InterfaceAttribute` VALUES (1130,'vfork','libc','Recommendation','POSIX.1-2008 removes the specification of vfork(). Consider using <int libc;fork>fork</int>.');
INSERT INTO `InterfaceAttribute` VALUES (1131,'wcswcs','libc','Recommendation','POSIX.1-2008 removes the specification of wcswcs(). Consider using <int libc;wcsstr>wcsstr</int>.');
INSERT INTO `InterfaceAttribute` VALUES (1132,'ualarm','libc','Recommendation','POSIX.1-2008 removes the specification of ualarm(). Consider using POSIX timer functions instead.');
INSERT INTO `InterfaceAttribute` VALUES (1133,'snd_pcm_hw_params_can_overrange','libasound','Recommendation','Overrange detection is not implemented in reality in the driver (and won\'t be implemented). This function always returns zero.');
INSERT INTO `InterfaceAttribute` VALUES (1134,'snd_pcm_hw_params_get_subformat','libasound','Recommendation','The concept of subformat is not defined well although the API is provided. So, only SND_PCM_SUBFORMAT_STD is returned by this function right now.');
INSERT INTO `InterfaceAttribute` VALUES (1135,'snd_pcm_hw_params_get_tick_time','libasound','Recommendation','The tick_time in hw_params is conceptually badly implemented and should not be used.');
INSERT INTO `InterfaceAttribute` VALUES (1136,'snd_pcm_hw_params_get_tick_time_max','libasound','Recommendation','The tick_time in hw_params is conceptually badly implemented and should not be used.');
INSERT INTO `InterfaceAttribute` VALUES (1137,'snd_pcm_hw_params_get_tick_time_min','libasound','Recommendation','The tick_time in hw_params is conceptually badly implemented and should not be used.');
INSERT INTO `InterfaceAttribute` VALUES (1138,'snd_pcm_hw_params_is_batch','libasound','Recommendation','This function alsways returns 1. It was implemented just to inherit the feature of old ALSA 0.5.x version, but not really used in the ALSA 0.9.x or later. So, it has no real meaning.');
INSERT INTO `InterfaceAttribute` VALUES (1139,'snd_pcm_hw_params_is_block_transfer','libasound','Recommendation','This function alsways returns 1. It was implemented just to inherit the feature of old ALSA 0.5.x version, but not really used in the ALSA 0.9.x or later. So, it has no real meaning.');
INSERT INTO `InterfaceAttribute` VALUES (1140,'snd_pcm_hw_params_set_periods_min','libasound','Recommendation','snd_pcm_hw_params have *_set_min() and *_set_max() functions but they are not really helpful because the app has to pass the definite value via *_set_xxx() or *_set_xxx_near(). So, set_min() doesn\'t make much sense if you reset the value anyway.');
INSERT INTO `InterfaceAttribute` VALUES (1141,'snd_pcm_sw_params_set_sleep_min','libasound','Recommendation','This function is related with snd_pcm_hw_params_*_tick_time_* functions which are conceptually badly implemented and should not be used.');
INSERT INTO `InterfaceAttribute` VALUES (1142,'inet_aton','libc','Recommendation','This interface is deprecated. Use inet_pton instead');
INSERT INTO `InterfaceAttribute` VALUES (1146,'FT_Outline_New_Internal','libfreetype','Recommendation','Internal function, should not be used in user code');
INSERT INTO `InterfaceAttribute` VALUES (1145,'FT_Outline_Done_Internal','libfreetype','Recommendation','Internal function, should not be used in user code');
INSERT INTO `InterfaceAttribute` VALUES (1144,'FT_GlyphSlot_Oblique','libfreetype','Recommendation','This interface is marked alpha/due to change/do not use this function directly');
INSERT INTO `InterfaceAttribute` VALUES (1143,'FT_GlyphSlot_Embolden','libfreetype','Recommendation','This interface is marked alpha/due to change. Do not use yet');
INSERT INTO `InterfaceAttribute` VALUES (1147,'chroot','libc','Recommendation','POSIX.1-2001 removes the specification of the chroot().');
INSERT INTO `InterfaceAttribute` VALUES (1148,'cuserid','libc','Recommendation','POSIX.1-2008 removes the specification of cuserid(). Use <int libc;getlogin_r>getlogin_r</int> or <int libc;getpwuid>getpwuid(geteuid())</int> depending on context.');
INSERT INTO `InterfaceAttribute` VALUES (1149,'getw','libc','Recommendation','POSIX.1-2008 removes the specification of getw(). Consider using <int libc;fread>fread</int>.');
INSERT INTO `InterfaceAttribute` VALUES (1150,'putw','libc','Recommendation','POSIX.1-2008 removes the specification of putw(). Consider using <int libc;fwrite>fwrite</int>.');
INSERT INTO `InterfaceAttribute` VALUES (1151,'brk','libc','Recommendation','POSIX.1-2001 removes the specification of the brk(). Its use will interfere with the use of malloc elsewhere in the program, andsuch usage may be silent through library routines. Use <int libc;malloc>malloc</int> for portable memory allocation instead.');
INSERT INTO `InterfaceAttribute` VALUES (1152,'sbrk','libc','Recommendation','POSIX.1-2001 removes the specification of the sbrk(). Its use will interfere with the use of malloc elsewhere in the program, andsuch usage may be silent through library routines. Use <int libc;malloc>malloc</int> for portable memory allocation instead.');
INSERT INTO `InterfaceAttribute` VALUES (1153,'_ZNKSt10istrstream5rdbufEv','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1154,'_ZNKSt10ostrstream5rdbufEv','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1155,'_ZNKSt10ostrstream6pcountEv','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1156,'_ZNKSt12strstreambuf6pcountEv','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1157,'_ZNKSt9strstream5rdbufEv','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1158,'_ZNKSt9strstream6pcountEv','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1159,'_ZNSt10istrstream3strEv','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1160,'_ZNSt10istrstreamC1EPKc','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1161,'_ZNSt10istrstreamC1EPKci','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1162,'_ZNSt10istrstreamC1EPKcl','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1163,'_ZNSt10istrstreamC1EPc','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1164,'_ZNSt10istrstreamC1EPci','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1165,'_ZNSt10istrstreamC1EPcl','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1166,'_ZNSt10istrstreamC2EPKc','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1167,'_ZNSt10istrstreamC2EPKci','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1168,'_ZNSt10istrstreamC2EPKcl','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1169,'_ZNSt10istrstreamC2EPc','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1170,'_ZNSt10istrstreamC2EPci','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1171,'_ZNSt10istrstreamC2EPcl','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1172,'_ZNSt10istrstreamD0Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1173,'_ZNSt10istrstreamD1Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1174,'_ZNSt10istrstreamD2Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1175,'_ZNSt10ostrstream3strEv','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1176,'_ZNSt10ostrstream6freezeEb','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1177,'_ZNSt10ostrstreamC1EPciSt13_Ios_Openmode','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1178,'_ZNSt10ostrstreamC1Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1179,'_ZNSt10ostrstreamC2EPciSt13_Ios_Openmode','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1180,'_ZNSt10ostrstreamC2Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1181,'_ZNSt10ostrstreamD0Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1182,'_ZNSt10ostrstreamD1Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1183,'_ZNSt10ostrstreamD2Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1184,'_ZNSt12strstreambuf3strEv','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1185,'_ZNSt12strstreambuf6freezeEb','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1186,'_ZNSt12strstreambuf6setbufEPci','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1187,'_ZNSt12strstreambuf6setbufEPcl','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1188,'_ZNSt12strstreambuf7_M_freeEPc','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1189,'_ZNSt12strstreambuf7seekoffElSt12_Ios_SeekdirSt13_Ios_Openmode','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1190,'_ZNSt12strstreambuf7seekposESt4fposI11__mbstate_tESt13_Ios_Openmode','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1191,'_ZNSt12strstreambuf8_M_allocEj','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1192,'_ZNSt12strstreambuf8_M_allocEm','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1193,'_ZNSt12strstreambuf8_M_setupEPcS0_i','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1194,'_ZNSt12strstreambuf8_M_setupEPcS0_l','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1195,'_ZNSt12strstreambuf8overflowEi','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1196,'_ZNSt12strstreambuf9pbackfailEi','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1197,'_ZNSt12strstreambuf9underflowEv','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1198,'_ZNSt12strstreambufC1EPFPvjEPFvS0_E','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1199,'_ZNSt12strstreambufC1EPFPvmEPFvS0_E','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1200,'_ZNSt12strstreambufC1EPKai','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1201,'_ZNSt12strstreambufC1EPKal','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1202,'_ZNSt12strstreambufC1EPKci','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1203,'_ZNSt12strstreambufC1EPKcl','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1204,'_ZNSt12strstreambufC1EPKhi','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1205,'_ZNSt12strstreambufC1EPKhl','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1206,'_ZNSt12strstreambufC1EPaiS0_','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1207,'_ZNSt12strstreambufC1EPalS0_','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1208,'_ZNSt12strstreambufC1EPciS0_','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1209,'_ZNSt12strstreambufC1EPclS0_','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1210,'_ZNSt12strstreambufC1EPhiS0_','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1211,'_ZNSt12strstreambufC1EPhlS0_','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1212,'_ZNSt12strstreambufC1Ei','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1213,'_ZNSt12strstreambufC1El','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1214,'_ZNSt12strstreambufC2EPFPvjEPFvS0_E','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1215,'_ZNSt12strstreambufC2EPFPvmEPFvS0_E','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1216,'_ZNSt12strstreambufC2EPKai','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1217,'_ZNSt12strstreambufC2EPKal','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1218,'_ZNSt12strstreambufC2EPKci','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1219,'_ZNSt12strstreambufC2EPKcl','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1220,'_ZNSt12strstreambufC2EPKhi','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1221,'_ZNSt12strstreambufC2EPKhl','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1222,'_ZNSt12strstreambufC2EPaiS0_','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1223,'_ZNSt12strstreambufC2EPalS0_','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1224,'_ZNSt12strstreambufC2EPciS0_','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1225,'_ZNSt12strstreambufC2EPclS0_','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1226,'_ZNSt12strstreambufC2EPhiS0_','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1227,'_ZNSt12strstreambufC2EPhlS0_','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1228,'_ZNSt12strstreambufC2Ei','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1229,'_ZNSt12strstreambufC2El','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1230,'_ZNSt12strstreambufD0Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1231,'_ZNSt12strstreambufD1Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1232,'_ZNSt12strstreambufD2Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1233,'_ZNSt9strstream3strEv','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1234,'_ZNSt9strstream6freezeEb','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1235,'_ZNSt9strstreamC1EPciSt13_Ios_Openmode','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1236,'_ZNSt9strstreamC1Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1237,'_ZNSt9strstreamC2EPciSt13_Ios_Openmode','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1238,'_ZNSt9strstreamC2Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1239,'_ZNSt9strstreamD0Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1240,'_ZNSt9strstreamD1Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1241,'_ZNSt9strstreamD2Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1242,'_ZTISt10istrstream','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1243,'_ZTISt10ostrstream','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1244,'_ZTISt12strstreambuf','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1245,'_ZTISt9strstream','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1246,'_ZTSSt10istrstream','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1247,'_ZTSSt10ostrstream','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1248,'_ZTSSt12strstreambuf','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1249,'_ZTSSt9strstream','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1250,'_ZTTSt10istrstream','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1251,'_ZTTSt10ostrstream','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1252,'_ZTTSt9strstream','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1253,'_ZTVSt10istrstream','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1254,'_ZTVSt10ostrstream','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1255,'_ZTVSt12strstreambuf','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1256,'_ZTVSt9strstream','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1257,'_ZThn16_NSt9strstreamD0Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1258,'_ZThn16_NSt9strstreamD1Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1259,'_ZThn8_NSt9strstreamD0Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1260,'_ZThn8_NSt9strstreamD1Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1261,'_ZTv0_n12_NSt10istrstreamD0Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1262,'_ZTv0_n12_NSt10istrstreamD1Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1263,'_ZTv0_n12_NSt10ostrstreamD0Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1264,'_ZTv0_n12_NSt10ostrstreamD1Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1265,'_ZTv0_n12_NSt9strstreamD0Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1266,'_ZTv0_n12_NSt9strstreamD1Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1267,'_ZTv0_n24_NSt10istrstreamD0Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1268,'_ZTv0_n24_NSt10istrstreamD1Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1269,'_ZTv0_n24_NSt10ostrstreamD0Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1270,'_ZTv0_n24_NSt10ostrstreamD1Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1271,'_ZTv0_n24_NSt9strstreamD0Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1272,'_ZTv0_n24_NSt9strstreamD1Ev','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1273,'_ZNSt12strstreambuf7seekoffExSt12_Ios_SeekdirSt13_Ios_Openmode','libstdcxx','Recommendation','All classes defined in <strstream> header are deprecated. The header may be removed in future C++ standard revisions. Use the header <sstream> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1682,'__strftime_l','libc','Rejection','This internal glibc function is not supposed to be used by applications. It is known to appear among dependencies when application is linked statically with libstdc++. This is not recommended; libstdc++.a file dependencies vary on different systems. It is very likely that statically linked libstdc++ will not work as expected on the system different from the one on the build host, even if both systems are LSB compliant.');
INSERT INTO `InterfaceAttribute` VALUES (1681,'__strcoll_l','libc','Rejection','This internal glibc function is not supposed to be used by applications. It is known to appear among dependencies when application is linked statically with libstdc++. This is not recommended; libstdc++.a file dependencies vary on different systems. It is very likely that statically linked libstdc++ will not work as expected on the system different from the one on the build host, even if both systems are LSB compliant.');
INSERT INTO `InterfaceAttribute` VALUES (1680,'__nl_langinfo_l','libc','Rejection','This internal glibc function is not supposed to be used by applications. It is known to appear among dependencies when application is linked statically with libstdc++. This is not recommended; libstdc++.a file dependencies vary on different systems. It is very likely that statically linked libstdc++ will not work as expected on the system different from the one on the build host, even if both systems are LSB compliant.');
INSERT INTO `InterfaceAttribute` VALUES (1679,'__newlocale','libc','Rejection','This internal glibc function is not supposed to be used by applications. It is known to appear among dependencies when application is linked statically with libstdc++. This is not recommended; libstdc++.a file dependencies vary on different systems. It is very likely that statically linked libstdc++ will not work as expected on the system different from the one on the build host, even if both systems are LSB compliant.');
INSERT INTO `InterfaceAttribute` VALUES (1678,'__iswctype_l','libc','Rejection','This internal glibc function is not supposed to be used by applications. It is known to appear among dependencies when application is linked statically with libstdc++. This is not recommended; libstdc++.a file dependencies vary on different systems. It is very likely that statically linked libstdc++ will not work as expected on the system different from the one on the build host, even if both systems are LSB compliant.');
INSERT INTO `InterfaceAttribute` VALUES (1677,'__freelocale','libc','Rejection','This internal glibc function is not supposed to be used by applications. It is known to appear among dependencies when application is linked statically with libstdc++. This is not recommended; libstdc++.a file dependencies vary on different systems. It is very likely that statically linked libstdc++ will not work as expected on the system different from the one on the build host, even if both systems are LSB compliant.');
INSERT INTO `InterfaceAttribute` VALUES (1676,'__duplocale','libc','Rejection','This internal glibc function is not supposed to be used by applications. It is known to appear among dependencies when application is linked statically with libstdc++. This is not recommended; libstdc++.a file dependencies vary on different systems. It is very likely that statically linked libstdc++ will not work as expected on the system different from the one on the build host, even if both systems are LSB compliant.');
INSERT INTO `InterfaceAttribute` VALUES (1298,'__snd_ctl_elem_info_get_dimension','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1299,'__snd_ctl_elem_info_get_dimensions','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1300,'__snd_ctl_hw_open_dlsym_control_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1301,'__snd_ctl_shm_open_dlsym_control_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1302,'__snd_hwdep_hw_open_dlsym_hwdep_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1303,'__snd_pcm_adpcm_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1304,'__snd_pcm_alaw_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1305,'__snd_pcm_asym_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1306,'__snd_pcm_copy_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1307,'__snd_pcm_dmix_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1308,'__snd_pcm_dshare_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1309,'__snd_pcm_dsnoop_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1310,'__snd_pcm_empty_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1311,'__snd_pcm_file_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1312,'__snd_pcm_forward','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1313,'__snd_pcm_hook_ctl_elems_install_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1314,'__snd_pcm_hooks_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1315,'__snd_pcm_hw_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1316,'__snd_pcm_hw_params_get_access','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1317,'__snd_pcm_hw_params_get_buffer_size','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1318,'__snd_pcm_hw_params_get_buffer_size_max','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1319,'__snd_pcm_hw_params_get_buffer_size_min','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1320,'__snd_pcm_hw_params_get_buffer_time','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1321,'__snd_pcm_hw_params_get_buffer_time_max','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1322,'__snd_pcm_hw_params_get_buffer_time_min','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1323,'__snd_pcm_hw_params_get_channels','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1324,'__snd_pcm_hw_params_get_channels_max','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1325,'__snd_pcm_hw_params_get_channels_min','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1326,'__snd_pcm_hw_params_get_format','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1327,'__snd_pcm_hw_params_get_period_size','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1328,'__snd_pcm_hw_params_get_period_size_max','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1329,'__snd_pcm_hw_params_get_period_size_min','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1330,'__snd_pcm_hw_params_get_period_time','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1331,'__snd_pcm_hw_params_get_period_time_max','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1332,'__snd_pcm_hw_params_get_period_time_min','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1333,'__snd_pcm_hw_params_get_periods','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1334,'__snd_pcm_hw_params_get_periods_max','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1335,'__snd_pcm_hw_params_get_periods_min','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1336,'__snd_pcm_hw_params_get_rate','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1337,'__snd_pcm_hw_params_get_rate_max','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1338,'__snd_pcm_hw_params_get_rate_min','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1339,'__snd_pcm_hw_params_get_subformat','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1340,'__snd_pcm_hw_params_get_tick_time','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1341,'__snd_pcm_hw_params_get_tick_time_max','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1342,'__snd_pcm_hw_params_get_tick_time_min','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1343,'__snd_pcm_hw_params_set_access_first','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1344,'__snd_pcm_hw_params_set_access_last','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1345,'__snd_pcm_hw_params_set_buffer_size_first','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1346,'__snd_pcm_hw_params_set_buffer_size_last','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1347,'__snd_pcm_hw_params_set_buffer_size_near','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1348,'__snd_pcm_hw_params_set_buffer_time_first','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1349,'__snd_pcm_hw_params_set_buffer_time_last','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1350,'__snd_pcm_hw_params_set_buffer_time_near','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1351,'__snd_pcm_hw_params_set_channels_first','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1352,'__snd_pcm_hw_params_set_channels_last','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1353,'__snd_pcm_hw_params_set_channels_near','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1354,'__snd_pcm_hw_params_set_format_first','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1355,'__snd_pcm_hw_params_set_format_last','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1356,'__snd_pcm_hw_params_set_period_size_first','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1357,'__snd_pcm_hw_params_set_period_size_last','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1358,'__snd_pcm_hw_params_set_period_size_near','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1359,'__snd_pcm_hw_params_set_period_time_first','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1360,'__snd_pcm_hw_params_set_period_time_last','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1361,'__snd_pcm_hw_params_set_period_time_near','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1362,'__snd_pcm_hw_params_set_periods_first','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1363,'__snd_pcm_hw_params_set_periods_last','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1364,'__snd_pcm_hw_params_set_periods_near','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1365,'__snd_pcm_hw_params_set_rate_first','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1366,'__snd_pcm_hw_params_set_rate_last','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1367,'__snd_pcm_hw_params_set_rate_near','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1368,'__snd_pcm_hw_params_set_subformat_first','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1369,'__snd_pcm_hw_params_set_subformat_last','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1370,'__snd_pcm_hw_params_set_tick_time_first','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1371,'__snd_pcm_hw_params_set_tick_time_last','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1372,'__snd_pcm_hw_params_set_tick_time_near','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1373,'__snd_pcm_iec958_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1374,'__snd_pcm_ladspa_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1375,'__snd_pcm_lfloat_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1376,'__snd_pcm_linear_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1377,'__snd_pcm_meter_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1378,'__snd_pcm_mmap_emul_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1379,'__snd_pcm_mulaw_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1380,'__snd_pcm_multi_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1381,'__snd_pcm_null_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1382,'__snd_pcm_plug_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1383,'__snd_pcm_rate_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1384,'__snd_pcm_route_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1385,'__snd_pcm_share_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1386,'__snd_pcm_shm_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1387,'__snd_pcm_softvol_open_dlsym_pcm_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1388,'__snd_pcm_status_get_htstamp','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1389,'__snd_pcm_status_get_trigger_htstamp','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1390,'__snd_pcm_sw_params_get_avail_min','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1391,'__snd_pcm_sw_params_get_silence_size','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1392,'__snd_pcm_sw_params_get_silence_threshold','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1393,'__snd_pcm_sw_params_get_sleep_min','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1394,'__snd_pcm_sw_params_get_start_threshold','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1395,'__snd_pcm_sw_params_get_stop_threshold','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1396,'__snd_pcm_sw_params_get_tstamp_mode','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1397,'__snd_pcm_sw_params_get_xfer_align','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1398,'__snd_pcm_type_name','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1399,'__snd_rawmidi_hw_open_dlsym_rawmidi_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1400,'__snd_rawmidi_virtual_open_dlsym_rawmidi_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1401,'__snd_seq_hw_open_dlsym_seq_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1402,'__snd_timer_hw_open_dlsym_timer_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1403,'__snd_timer_params_get_exclusive','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1404,'__snd_timer_params_get_filter','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1405,'__snd_timer_params_set_exclusive','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1406,'__snd_timer_params_set_filter','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1407,'__snd_timer_query_hw_open_dlsym_timer_query_001','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1408,'__snd_timer_query_info','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1409,'__snd_timer_query_params','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1410,'__snd_timer_query_status','libasound','Rejection','libasound symbols starting with \'__\' should not be used in applications. Appropriate symbols without \'__\' should be used instead.');
INSERT INTO `InterfaceAttribute` VALUES (1411,'gtk_tooltips_set_delay','libgtk-x11-2.0','Rejection','gtk_tooltips_set_delay is deprecated in modern GTK. There is no legitimate use for an application to call this function; tool-tip delay should be only adjusted through GtkSetting - a user preference.');
INSERT INTO `InterfaceAttribute` VALUES (1412,'gtk_ctree_expander_style_get_type','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (1413,'gtk_ctree_expansion_type_get_type','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (1414,'gtk_ctree_get_type','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (1415,'gtk_ctree_line_style_get_type','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (1416,'gtk_ctree_node_get_type','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (1417,'gtk_ctree_pos_get_type','libgtk-x11-2.0','Recommendation','GtkCTree has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (1418,'gtk_preview_get_type','libgtk-x11-2.0','Rejection','GtkPreview is deprecated; just use a GdkPixbuf displayed by a GtkImage, or perhaps a GtkDrawingArea. GtkPreview has no advantage over those approaches.');
INSERT INTO `InterfaceAttribute` VALUES (1419,'gtk_preview_type_get_type','libgtk-x11-2.0','Rejection','GtkPreview is deprecated; just use a GdkPixbuf displayed by a GtkImage, or perhaps a GtkDrawingArea. GtkPreview has no advantage over those approaches.');
INSERT INTO `InterfaceAttribute` VALUES (1420,'gtk_tree_get_type','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (1421,'gtk_tree_item_get_type','libgtk-x11-2.0','Recommendation','GtkTree is deprecated and unsupported. It is known to be buggy. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (1422,'gtk_clist_drag_pos_get_type','libgtk-x11-2.0','Rejection','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (1423,'gtk_clist_get_type','libgtk-x11-2.0','Rejection','GtkCList has been deprecated since GTK+ 2.0 and should not be used in newly written code. Use GtkTreeView instead.');
INSERT INTO `InterfaceAttribute` VALUES (1424,'gtk_pixmap_get_type','libgtk-x11-2.0','Rejection','GtkPixmap is deprecated and should not be used in newly written code. Use GtkImage instead.');
INSERT INTO `InterfaceAttribute` VALUES (1425,'gtk_item_factory_get_type','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkItemFactory has been deprecated in favour of GtkUIManager.');
INSERT INTO `InterfaceAttribute` VALUES (1426,'gtk_tips_query_get_type','libgtk-x11-2.0','Recommendation','gtk_tips_query_get_type is deprecated and should not be sed in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (1427,'gtk_option_menu_get_type','libgtk-x11-2.0','Recommendation','As of GTK+ 2.4, GtkOptionMenu has been deprecated in favor of GtkComboBox.');
INSERT INTO `InterfaceAttribute` VALUES (1428,'gdk_font_get_type','libgdk-x11-2.0','Rejection','GdkFont is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (1429,'gtk_file_system_create_folder','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1430,'gtk_file_system_error_quark','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1431,'gtk_file_system_filename_to_path','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1432,'gtk_file_system_get_bookmark_label','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1433,'gtk_file_system_get_folder','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1434,'gtk_file_system_get_parent','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1435,'gtk_file_system_get_type','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1436,'gtk_file_system_get_volume_for_path','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1437,'gtk_file_system_insert_bookmark','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1438,'gtk_file_system_list_bookmarks','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1439,'gtk_file_system_list_volumes','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1440,'gtk_file_system_make_path','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1441,'gtk_file_system_parse','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1442,'gtk_file_system_path_is_local','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1443,'gtk_file_system_path_to_filename','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1444,'gtk_file_system_path_to_uri','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1445,'gtk_file_system_remove_bookmark','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1446,'gtk_file_system_render_icon','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1447,'gtk_file_system_set_bookmark_label','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1448,'gtk_file_system_unix_get_type','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1449,'gtk_file_system_unix_new','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1450,'gtk_file_system_uri_to_path','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1451,'gtk_file_system_volume_free','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1452,'gtk_file_system_volume_get_base_path','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1453,'gtk_file_system_volume_get_display_name','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1454,'gtk_file_system_volume_get_is_mounted','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1455,'gtk_file_system_volume_mount','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1456,'gtk_file_system_volume_render_icon','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1457,'gtk_file_info_copy','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1458,'gtk_file_info_free','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1459,'gtk_file_info_get_display_key','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1460,'gtk_file_info_get_display_name','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1461,'gtk_file_info_get_is_folder','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1462,'gtk_file_info_get_is_hidden','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1463,'gtk_file_info_get_mime_type','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1464,'gtk_file_info_get_modification_time','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1465,'gtk_file_info_get_size','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1466,'gtk_file_info_get_type','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1467,'gtk_file_info_new','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1468,'gtk_file_info_set_display_name','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1469,'gtk_file_info_set_is_folder','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1470,'gtk_file_info_set_is_hidden','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1471,'gtk_file_info_set_mime_type','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1472,'gtk_file_info_set_modification_time','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1473,'gtk_file_info_set_size','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1474,'gtk_file_path_get_type','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1475,'gtk_file_paths_copy','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1476,'gtk_file_paths_free','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1477,'gtk_file_paths_sort','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1478,'gtk_file_folder_get_info','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1479,'gtk_file_folder_get_type','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1480,'gtk_file_folder_is_finished_loading','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1481,'gtk_file_folder_list_children','libgtk-x11-2.0','Rejection','GtkFileSystem functions are semi-private and not guaranteed to be stable.');
INSERT INTO `InterfaceAttribute` VALUES (1482,'gdk_rgb_get_cmap','libgdk-x11-2.0','Rejection','gdk_rgb_get_cmap is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (1483,'gtk_toolbar_unset_icon_size','libgtk-x11-2.0','Recommendation','gtk_toolbar_unset_icon_size is deprecated and should not be used in newly-written code.');
INSERT INTO `InterfaceAttribute` VALUES (1484,'gtk_signal_compat_matched','libgtk-x11-2.0','Recommendation','gtk_signal_compat_matched is deprecated and should not be used in newly-written code. Use g_signal* functions instead.');
INSERT INTO `InterfaceAttribute` VALUES (1485,'pango_default_break','libpango-1.0','Rejection','pango_default_break is the default break algorithm, used if no language engine overrides it. Normally you should use <int libpango-1.0;pango_break>pango_break</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1486,'gtk_text_get_type','libgtk-x11-2.0','Recommendation','GtkText is\ndeprecated and unsupported. It is known to be buggy. Use GtkTextView instead.');
INSERT INTO `InterfaceAttribute` VALUES (1487,'fattach','libc','Recommendation','Streams are not implemented in Linux kernel. This function is a stub and always return -1, setting <int libc;errno>errno</int> to ENOSYS.');
INSERT INTO `InterfaceAttribute` VALUES (1488,'fdetach','libc','Recommendation','Streams are not implemented in Linux kernel. This function is a stub and always return -1, setting <int libc;errno>errno</int> to ENOSYS.');
INSERT INTO `InterfaceAttribute` VALUES (1489,'putmsg','libc','Recommendation','Streams are not implemented in Linux kernel. This function is a stub and always return -1, setting <int libc;errno>errno</int> to ENOSYS.');
INSERT INTO `InterfaceAttribute` VALUES (1490,'getmsg','libc','Recommendation','Streams are not implemented in Linux kernel. This function is a stub and always return -1, setting <int libc;errno>errno</int> to ENOSYS.');
INSERT INTO `InterfaceAttribute` VALUES (1491,'putpmsg','libc','Recommendation','Streams are not implemented in Linux kernel. This function is a stub and always return -1, setting <int libc;errno>errno</int> to ENOSYS.');
INSERT INTO `InterfaceAttribute` VALUES (1492,'getpmsg','libc','Recommendation','Streams are not implemented in Linux kernel. This function is a stub and always return -1, setting <int libc;errno>errno</int> to ENOSYS.');
INSERT INTO `InterfaceAttribute` VALUES (1493,'isastream','libc','Recommendation','Streams are not implemented in Linux kernel, so this function is almost of no use. It returns -1 for invalid file descriptors and 0 in all other cases.');
INSERT INTO `InterfaceAttribute` VALUES (1494,'cfree','libc','Rejection','Use <int libc;free>free</int> instead. In glibc, cfree is a synonym for free and added for compatibility with SunOS');
INSERT INTO `InterfaceAttribute` VALUES (1495,'on_exit','libc','Rejection','Avoid this function, and use the standard atexit instead.');
INSERT INTO `InterfaceAttribute` VALUES (1496,'ecvt_r','libc','Rejection','This function is obsolete. Use sprintf instead.');
INSERT INTO `InterfaceAttribute` VALUES (1497,'fcvt_r','libc','Rejection','This function is obsolete. Use sprintf instead.');
INSERT INTO `InterfaceAttribute` VALUES (1498,'qecvt_r','libc','Rejection','This function is obsolete. Use sprintf instead.');
INSERT INTO `InterfaceAttribute` VALUES (1499,'qfcvt_r','libc','Rejection','This function is obsolete. Use sprintf instead.');
INSERT INTO `InterfaceAttribute` VALUES (1500,'gcvt','libc','Rejection','This function is obsolete (marked as LEGACY in POSIX.1-2001.). Use sprintf instead.');
INSERT INTO `InterfaceAttribute` VALUES (1501,'ecvt','libc','Rejection','This function is obsolete (marked as LEGACY in POSIX.1-2001.). Use sprintf instead.');
INSERT INTO `InterfaceAttribute` VALUES (1502,'fcvt','libc','Rejection','This function is obsolete (marked as LEGACY in POSIX.1-2001.). Use sprintf instead.');
INSERT INTO `InterfaceAttribute` VALUES (1503,'qecvt','libc','Rejection','This function is obsolete. Use sprintf instead.');
INSERT INTO `InterfaceAttribute` VALUES (1504,'qfcvt','libc','Rejection','This function is obsolete. Use sprintf instead.');
INSERT INTO `InterfaceAttribute` VALUES (1505,'qgcvt','libc','Rejection','This function is obsolete. Use sprintf instead.');
INSERT INTO `InterfaceAttribute` VALUES (1506,'timegm','libc','Recommendation','This function is a non-standard GNU extension; avoid its use. For a portable version of timegm, set the TZ environment variable to UTC, call mktime and restore the value of TZ.');
INSERT INTO `InterfaceAttribute` VALUES (1507,'timelocal','libc','Recommendation','This function is equivalent to the POSIX standard function mktime. There is no reason to ever use it.');
INSERT INTO `InterfaceAttribute` VALUES (1508,'__ctype_toupper','libc','Recommendation','This function is obsolete. Use locale-aware <int libc;__ctype_toupper_loc>__ctype_toupper_loc</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1509,'__ctype_tolower','libc','Recommendation','This function is obsolete. Use locale-aware <int libc;__ctype_tolower_loc>__ctype_tolower_loc</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1510,'__ctype_b','libc','Recommendation','This function is obsolete. Use locale-aware __ctype_b_loc instead.');
INSERT INTO `InterfaceAttribute` VALUES (1511,'__bzero','libc','Recommendation','This function is obsolete and shouldn\'t be used any more. Use memset istead.');
INSERT INTO `InterfaceAttribute` VALUES (1512,'loc1','libc','Recommendation','The contents of <regexp.h> header is deprecated and was withdrawn in SUSv3. It included only for compatibility reasons. Use the POSIX definitions from <regex.h> for portable applications and a reasonable interface.');
INSERT INTO `InterfaceAttribute` VALUES (1513,'loc2','libc','Recommendation','The contents of <regexp.h> header is deprecated and was withdrawn in SUSv3. It included only for compatibility reasons. Use the POSIX definitions from <regex.h> for portable applications and a reasonable interface.');
INSERT INTO `InterfaceAttribute` VALUES (1514,'locs','libc','Recommendation','The contents of <regexp.h> header is deprecated and was withdrawn in SUSv3. It included only for compatibility reasons. Use the POSIX definitions from <regex.h> for portable applications and a reasonable interface.');
INSERT INTO `InterfaceAttribute` VALUES (1515,'step','libc','Recommendation','The contents of <regexp.h> header is deprecated and was withdrawn in SUSv3. It included only for compatibility reasons. Use the POSIX definitions from <regex.h> for portable applications and a reasonable interface.');
INSERT INTO `InterfaceAttribute` VALUES (1516,'advance','libc','Recommendation','The contents of <regexp.h> header is deprecated and was withdrawn in SUSv3. It included only for compatibility reasons. Use the POSIX definitions from <regex.h> for portable applications and a reasonable interface.');
INSERT INTO `InterfaceAttribute` VALUES (1517,'re_exec','libc','Recommendation','This function is obsolete. Use <int libc;regexec>regexec</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1518,'re_comp','libc','Recommendation','This function is obsolete. Use <int libc;regcomp>regcomp</int> instead.');
INSERT INTO `InterfaceAttribute` VALUES (1519,'sigvec','libc','Recommendation','This function is obsolete and provided in glibc as a compatibility interface for programs that make use of the historical BSD signal API. New applications should use the POSIX signal API (sigaction, sigprocmask, etc.).');
INSERT INTO `InterfaceAttribute` VALUES (1520,'sigblock','libc','Recommendation','This function is obsolete and provided in glibc as a compatibility interface for programs that make use of the historical BSD signal API. New applications should use the POSIX signal API (sigaction, sigprocmask, etc.).');