This file is indexed.

/usr/share/perl5/openscap.pm is in libopenscap-perl 1.2.8-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
# This file was automatically generated by SWIG (http://www.swig.org).
# Version 3.0.8
#
# Do not make changes to this file unless you know what you are doing--modify
# the SWIG interface file instead.

package openscap_pm;
use base qw(Exporter);
use base qw(DynaLoader);
package openscap_pmc;
bootstrap openscap_pm;
package openscap_pm;
@EXPORT = qw();

# ---------- BASE METHODS -------------

package openscap_pm;

sub TIEHASH {
    my ($classname,$obj) = @_;
    return bless $obj, $classname;
}

sub CLEAR { }

sub FIRSTKEY { }

sub NEXTKEY { }

sub FETCH {
    my ($self,$field) = @_;
    my $member_func = "swig_${field}_get";
    $self->$member_func();
}

sub STORE {
    my ($self,$field,$newval) = @_;
    my $member_func = "swig_${field}_set";
    $self->$member_func($newval);
}

sub this {
    my $ptr = shift;
    return tied(%$ptr);
}


# ------- FUNCTION WRAPPERS --------

package openscap_pm;

*oscap_init = *openscap_pmc::oscap_init;
*oscap_cleanup = *openscap_pmc::oscap_cleanup;
*oscap_get_version = *openscap_pmc::oscap_get_version;
*oscap_document_type_to_string = *openscap_pmc::oscap_document_type_to_string;
*oscap_validate_document = *openscap_pmc::oscap_validate_document;
*oscap_schematron_validate_document = *openscap_pmc::oscap_schematron_validate_document;
*oscap_apply_xslt = *openscap_pmc::oscap_apply_xslt;
*oscap_path_to_schemas = *openscap_pmc::oscap_path_to_schemas;
*oscap_path_to_schematron = *openscap_pmc::oscap_path_to_schematron;
*oscap_path_to_cpe = *openscap_pmc::oscap_path_to_cpe;
*oscap_determine_document_type = *openscap_pmc::oscap_determine_document_type;
*oscap_clearerr = *openscap_pmc::oscap_clearerr;
*oscap_err = *openscap_pmc::oscap_err;
*oscap_err_family = *openscap_pmc::oscap_err_family;
*oscap_err_desc = *openscap_pmc::oscap_err_desc;
*oscap_err_get_full_error = *openscap_pmc::oscap_err_get_full_error;
*oscap_text_new = *openscap_pmc::oscap_text_new;
*oscap_text_clone = *openscap_pmc::oscap_text_clone;
*oscap_text_new_html = *openscap_pmc::oscap_text_new_html;
*oscap_text_free = *openscap_pmc::oscap_text_free;
*oscap_stringlist_get_strings = *openscap_pmc::oscap_stringlist_get_strings;
*oscap_stringlist_clone = *openscap_pmc::oscap_stringlist_clone;
*oscap_text_get_text = *openscap_pmc::oscap_text_get_text;
*oscap_text_get_lang = *openscap_pmc::oscap_text_get_lang;
*oscap_text_get_plaintext = *openscap_pmc::oscap_text_get_plaintext;
*oscap_text_get_is_html = *openscap_pmc::oscap_text_get_is_html;
*oscap_text_get_can_substitute = *openscap_pmc::oscap_text_get_can_substitute;
*oscap_text_get_can_override = *openscap_pmc::oscap_text_get_can_override;
*oscap_text_get_overrides = *openscap_pmc::oscap_text_get_overrides;
*oscap_text_set_overrides = *openscap_pmc::oscap_text_set_overrides;
*oscap_text_set_text = *openscap_pmc::oscap_text_set_text;
*oscap_text_set_lang = *openscap_pmc::oscap_text_set_lang;
*oscap_stringlist_add_string = *openscap_pmc::oscap_stringlist_add_string;
*oscap_stringlist_new = *openscap_pmc::oscap_stringlist_new;
*oscap_stringlist_free = *openscap_pmc::oscap_stringlist_free;
*oscap_text_iterator_next = *openscap_pmc::oscap_text_iterator_next;
*oscap_text_iterator_has_more = *openscap_pmc::oscap_text_iterator_has_more;
*oscap_text_iterator_free = *openscap_pmc::oscap_text_iterator_free;
*oscap_text_iterator_remove = *openscap_pmc::oscap_text_iterator_remove;
*oscap_text_iterator_reset = *openscap_pmc::oscap_text_iterator_reset;
*oscap_string_iterator_next = *openscap_pmc::oscap_string_iterator_next;
*oscap_string_iterator_has_more = *openscap_pmc::oscap_string_iterator_has_more;
*oscap_string_iterator_free = *openscap_pmc::oscap_string_iterator_free;
*oscap_string_iterator_remove = *openscap_pmc::oscap_string_iterator_remove;
*oscap_string_iterator_reset = *openscap_pmc::oscap_string_iterator_reset;
*oscap_stringlist_iterator_next = *openscap_pmc::oscap_stringlist_iterator_next;
*oscap_stringlist_iterator_has_more = *openscap_pmc::oscap_stringlist_iterator_has_more;
*oscap_stringlist_iterator_free = *openscap_pmc::oscap_stringlist_iterator_free;
*oscap_stringlist_iterator_remove = *openscap_pmc::oscap_stringlist_iterator_remove;
*oscap_stringlist_iterator_reset = *openscap_pmc::oscap_stringlist_iterator_reset;
*oscap_textlist_get_preferred_plaintext = *openscap_pmc::oscap_textlist_get_preferred_plaintext;
*oscap_textlist_get_preferred_text = *openscap_pmc::oscap_textlist_get_preferred_text;
*oscap_reference_iterator_has_more = *openscap_pmc::oscap_reference_iterator_has_more;
*oscap_reference_iterator_next = *openscap_pmc::oscap_reference_iterator_next;
*oscap_reference_iterator_free = *openscap_pmc::oscap_reference_iterator_free;
*oscap_reference_iterator_reset = *openscap_pmc::oscap_reference_iterator_reset;
*oscap_reference_new = *openscap_pmc::oscap_reference_new;
*oscap_reference_free = *openscap_pmc::oscap_reference_free;
*oscap_reference_clone = *openscap_pmc::oscap_reference_clone;
*oscap_reference_get_is_dublincore = *openscap_pmc::oscap_reference_get_is_dublincore;
*oscap_reference_set_is_dublincore = *openscap_pmc::oscap_reference_set_is_dublincore;
*oscap_reference_get_href = *openscap_pmc::oscap_reference_get_href;
*oscap_reference_set_href = *openscap_pmc::oscap_reference_set_href;
*oscap_reference_get_title = *openscap_pmc::oscap_reference_get_title;
*oscap_reference_set_title = *openscap_pmc::oscap_reference_set_title;
*oscap_reference_get_creator = *openscap_pmc::oscap_reference_get_creator;
*oscap_reference_set_creator = *openscap_pmc::oscap_reference_set_creator;
*oscap_reference_get_subject = *openscap_pmc::oscap_reference_get_subject;
*oscap_reference_set_subject = *openscap_pmc::oscap_reference_set_subject;
*oscap_reference_get_description = *openscap_pmc::oscap_reference_get_description;
*oscap_reference_set_description = *openscap_pmc::oscap_reference_set_description;
*oscap_reference_get_publisher = *openscap_pmc::oscap_reference_get_publisher;
*oscap_reference_set_publisher = *openscap_pmc::oscap_reference_set_publisher;
*oscap_reference_get_contributor = *openscap_pmc::oscap_reference_get_contributor;
*oscap_reference_set_contributor = *openscap_pmc::oscap_reference_set_contributor;
*oscap_reference_get_date = *openscap_pmc::oscap_reference_get_date;
*oscap_reference_set_date = *openscap_pmc::oscap_reference_set_date;
*oscap_reference_get_type = *openscap_pmc::oscap_reference_get_type;
*oscap_reference_set_type = *openscap_pmc::oscap_reference_set_type;
*oscap_reference_get_format = *openscap_pmc::oscap_reference_get_format;
*oscap_reference_set_format = *openscap_pmc::oscap_reference_set_format;
*oscap_reference_get_identifier = *openscap_pmc::oscap_reference_get_identifier;
*oscap_reference_set_identifier = *openscap_pmc::oscap_reference_set_identifier;
*oscap_reference_get_source = *openscap_pmc::oscap_reference_get_source;
*oscap_reference_set_source = *openscap_pmc::oscap_reference_set_source;
*oscap_reference_get_language = *openscap_pmc::oscap_reference_get_language;
*oscap_reference_set_language = *openscap_pmc::oscap_reference_set_language;
*oscap_reference_get_relation = *openscap_pmc::oscap_reference_get_relation;
*oscap_reference_set_relation = *openscap_pmc::oscap_reference_set_relation;
*oscap_reference_get_coverage = *openscap_pmc::oscap_reference_get_coverage;
*oscap_reference_set_coverage = *openscap_pmc::oscap_reference_set_coverage;
*oscap_reference_get_rights = *openscap_pmc::oscap_reference_get_rights;
*oscap_reference_set_rights = *openscap_pmc::oscap_reference_set_rights;
*ds_sds_decompose = *openscap_pmc::ds_sds_decompose;
*ds_sds_decompose_custom = *openscap_pmc::ds_sds_decompose_custom;
*ds_sds_compose_from_xccdf = *openscap_pmc::ds_sds_compose_from_xccdf;
*ds_sds_compose_add_component = *openscap_pmc::ds_sds_compose_add_component;
*ds_rds_decompose = *openscap_pmc::ds_rds_decompose;
*ds_rds_create = *openscap_pmc::ds_rds_create;
*ds_stream_index_new = *openscap_pmc::ds_stream_index_new;
*ds_stream_index_free = *openscap_pmc::ds_stream_index_free;
*ds_stream_index_get_id = *openscap_pmc::ds_stream_index_get_id;
*ds_stream_index_get_timestamp = *openscap_pmc::ds_stream_index_get_timestamp;
*ds_stream_index_get_version = *openscap_pmc::ds_stream_index_get_version;
*ds_stream_index_get_checks = *openscap_pmc::ds_stream_index_get_checks;
*ds_stream_index_get_checklists = *openscap_pmc::ds_stream_index_get_checklists;
*ds_stream_index_get_dictionaries = *openscap_pmc::ds_stream_index_get_dictionaries;
*ds_stream_index_get_extended_components = *openscap_pmc::ds_stream_index_get_extended_components;
*ds_sds_index_new = *openscap_pmc::ds_sds_index_new;
*ds_sds_index_free = *openscap_pmc::ds_sds_index_free;
*ds_sds_index_get_stream = *openscap_pmc::ds_sds_index_get_stream;
*ds_sds_index_get_streams = *openscap_pmc::ds_sds_index_get_streams;
*ds_sds_index_import = *openscap_pmc::ds_sds_index_import;
*ds_sds_index_select_checklist = *openscap_pmc::ds_sds_index_select_checklist;
*ds_sds_index_select_checklist_by_benchmark_id = *openscap_pmc::ds_sds_index_select_checklist_by_benchmark_id;
*ds_stream_index_iterator_next = *openscap_pmc::ds_stream_index_iterator_next;
*ds_stream_index_iterator_has_more = *openscap_pmc::ds_stream_index_iterator_has_more;
*ds_stream_index_iterator_free = *openscap_pmc::ds_stream_index_iterator_free;
*rds_report_request_index_new = *openscap_pmc::rds_report_request_index_new;
*rds_report_request_index_free = *openscap_pmc::rds_report_request_index_free;
*rds_report_request_index_get_id = *openscap_pmc::rds_report_request_index_get_id;
*rds_asset_index_new = *openscap_pmc::rds_asset_index_new;
*rds_asset_index_free = *openscap_pmc::rds_asset_index_free;
*rds_asset_index_get_id = *openscap_pmc::rds_asset_index_get_id;
*rds_asset_index_add_report_ref = *openscap_pmc::rds_asset_index_add_report_ref;
*rds_asset_index_get_reports = *openscap_pmc::rds_asset_index_get_reports;
*rds_report_index_new = *openscap_pmc::rds_report_index_new;
*rds_report_index_free = *openscap_pmc::rds_report_index_free;
*rds_report_index_get_id = *openscap_pmc::rds_report_index_get_id;
*rds_report_index_set_request = *openscap_pmc::rds_report_index_set_request;
*rds_report_index_get_request = *openscap_pmc::rds_report_index_get_request;
*rds_report_request_index_iterator_next = *openscap_pmc::rds_report_request_index_iterator_next;
*rds_report_request_index_iterator_has_more = *openscap_pmc::rds_report_request_index_iterator_has_more;
*rds_report_request_index_iterator_free = *openscap_pmc::rds_report_request_index_iterator_free;
*rds_asset_index_iterator_next = *openscap_pmc::rds_asset_index_iterator_next;
*rds_asset_index_iterator_has_more = *openscap_pmc::rds_asset_index_iterator_has_more;
*rds_asset_index_iterator_free = *openscap_pmc::rds_asset_index_iterator_free;
*rds_report_index_iterator_next = *openscap_pmc::rds_report_index_iterator_next;
*rds_report_index_iterator_has_more = *openscap_pmc::rds_report_index_iterator_has_more;
*rds_report_index_iterator_free = *openscap_pmc::rds_report_index_iterator_free;
*rds_index_new = *openscap_pmc::rds_index_new;
*rds_index_free = *openscap_pmc::rds_index_free;
*rds_index_get_report_requests = *openscap_pmc::rds_index_get_report_requests;
*rds_index_get_assets = *openscap_pmc::rds_index_get_assets;
*rds_index_get_reports = *openscap_pmc::rds_index_get_reports;
*rds_index_get_report_request = *openscap_pmc::rds_index_get_report_request;
*rds_index_get_asset = *openscap_pmc::rds_index_get_asset;
*rds_index_get_report = *openscap_pmc::rds_index_get_report;
*rds_index_import = *openscap_pmc::rds_index_import;
*rds_index_select_report = *openscap_pmc::rds_index_select_report;
*cpe_name_new = *openscap_pmc::cpe_name_new;
*cpe_name_clone = *openscap_pmc::cpe_name_clone;
*cpe_name_free = *openscap_pmc::cpe_name_free;
*cpe_name_get_format = *openscap_pmc::cpe_name_get_format;
*cpe_name_get_part = *openscap_pmc::cpe_name_get_part;
*cpe_name_get_vendor = *openscap_pmc::cpe_name_get_vendor;
*cpe_name_get_product = *openscap_pmc::cpe_name_get_product;
*cpe_name_get_version = *openscap_pmc::cpe_name_get_version;
*cpe_name_get_update = *openscap_pmc::cpe_name_get_update;
*cpe_name_get_edition = *openscap_pmc::cpe_name_get_edition;
*cpe_name_get_language = *openscap_pmc::cpe_name_get_language;
*cpe_name_get_sw_edition = *openscap_pmc::cpe_name_get_sw_edition;
*cpe_name_get_target_sw = *openscap_pmc::cpe_name_get_target_sw;
*cpe_name_get_target_hw = *openscap_pmc::cpe_name_get_target_hw;
*cpe_name_get_other = *openscap_pmc::cpe_name_get_other;
*cpe_name_get_as_format = *openscap_pmc::cpe_name_get_as_format;
*cpe_name_get_as_str = *openscap_pmc::cpe_name_get_as_str;
*cpe_name_set_format = *openscap_pmc::cpe_name_set_format;
*cpe_name_set_part = *openscap_pmc::cpe_name_set_part;
*cpe_name_set_vendor = *openscap_pmc::cpe_name_set_vendor;
*cpe_name_set_product = *openscap_pmc::cpe_name_set_product;
*cpe_name_set_version = *openscap_pmc::cpe_name_set_version;
*cpe_name_set_update = *openscap_pmc::cpe_name_set_update;
*cpe_name_set_edition = *openscap_pmc::cpe_name_set_edition;
*cpe_name_set_language = *openscap_pmc::cpe_name_set_language;
*cpe_name_set_sw_edition = *openscap_pmc::cpe_name_set_sw_edition;
*cpe_name_set_target_sw = *openscap_pmc::cpe_name_set_target_sw;
*cpe_name_set_target_hw = *openscap_pmc::cpe_name_set_target_hw;
*cpe_name_set_other = *openscap_pmc::cpe_name_set_other;
*cpe_name_match_one = *openscap_pmc::cpe_name_match_one;
*cpe_name_match_cpes = *openscap_pmc::cpe_name_match_cpes;
*cpe_name_write = *openscap_pmc::cpe_name_write;
*cpe_name_get_format_of_str = *openscap_pmc::cpe_name_get_format_of_str;
*cpe_name_check = *openscap_pmc::cpe_name_check;
*cpe_name_match_strs = *openscap_pmc::cpe_name_match_strs;
*cpe_name_supported = *openscap_pmc::cpe_name_supported;
*cpe_item_metadata_get_modification_date = *openscap_pmc::cpe_item_metadata_get_modification_date;
*cpe_item_metadata_get_status = *openscap_pmc::cpe_item_metadata_get_status;
*cpe_item_metadata_get_nvd_id = *openscap_pmc::cpe_item_metadata_get_nvd_id;
*cpe_item_metadata_get_deprecated_by_nvd_id = *openscap_pmc::cpe_item_metadata_get_deprecated_by_nvd_id;
*cpe_check_get_system = *openscap_pmc::cpe_check_get_system;
*cpe_check_get_href = *openscap_pmc::cpe_check_get_href;
*cpe_check_get_identifier = *openscap_pmc::cpe_check_get_identifier;
*cpe_reference_get_href = *openscap_pmc::cpe_reference_get_href;
*cpe_reference_get_content = *openscap_pmc::cpe_reference_get_content;
*cpe_item_get_name = *openscap_pmc::cpe_item_get_name;
*cpe_item_get_deprecated_by = *openscap_pmc::cpe_item_get_deprecated_by;
*cpe_item_get_deprecated = *openscap_pmc::cpe_item_get_deprecated;
*cpe_item_get_deprecation_date = *openscap_pmc::cpe_item_get_deprecation_date;
*cpe_item_get_metadata = *openscap_pmc::cpe_item_get_metadata;
*cpe_item_get_references = *openscap_pmc::cpe_item_get_references;
*cpe_item_get_checks = *openscap_pmc::cpe_item_get_checks;
*cpe_item_get_titles = *openscap_pmc::cpe_item_get_titles;
*cpe_item_get_notes = *openscap_pmc::cpe_item_get_notes;
*cpe_generator_get_product_name = *openscap_pmc::cpe_generator_get_product_name;
*cpe_generator_get_product_version = *openscap_pmc::cpe_generator_get_product_version;
*cpe_generator_get_schema_version = *openscap_pmc::cpe_generator_get_schema_version;
*cpe_generator_get_timestamp = *openscap_pmc::cpe_generator_get_timestamp;
*cpe_dict_model_get_base_version = *openscap_pmc::cpe_dict_model_get_base_version;
*cpe_dict_model_set_base_version = *openscap_pmc::cpe_dict_model_set_base_version;
*cpe_dict_model_get_generator = *openscap_pmc::cpe_dict_model_get_generator;
*cpe_dict_model_get_items = *openscap_pmc::cpe_dict_model_get_items;
*cpe_dict_model_get_vendors = *openscap_pmc::cpe_dict_model_get_vendors;
*cpe_vendor_get_value = *openscap_pmc::cpe_vendor_get_value;
*cpe_vendor_get_titles = *openscap_pmc::cpe_vendor_get_titles;
*cpe_vendor_get_products = *openscap_pmc::cpe_vendor_get_products;
*cpe_product_get_value = *openscap_pmc::cpe_product_get_value;
*cpe_product_get_part = *openscap_pmc::cpe_product_get_part;
*cpe_product_get_versions = *openscap_pmc::cpe_product_get_versions;
*cpe_version_get_value = *openscap_pmc::cpe_version_get_value;
*cpe_version_get_updates = *openscap_pmc::cpe_version_get_updates;
*cpe_update_get_value = *openscap_pmc::cpe_update_get_value;
*cpe_update_get_editions = *openscap_pmc::cpe_update_get_editions;
*cpe_edition_get_value = *openscap_pmc::cpe_edition_get_value;
*cpe_edition_get_languages = *openscap_pmc::cpe_edition_get_languages;
*cpe_language_get_value = *openscap_pmc::cpe_language_get_value;
*cpe_check_free = *openscap_pmc::cpe_check_free;
*cpe_reference_free = *openscap_pmc::cpe_reference_free;
*cpe_vendor_free = *openscap_pmc::cpe_vendor_free;
*cpe_product_free = *openscap_pmc::cpe_product_free;
*cpe_version_free = *openscap_pmc::cpe_version_free;
*cpe_update_free = *openscap_pmc::cpe_update_free;
*cpe_edition_free = *openscap_pmc::cpe_edition_free;
*cpe_language_free = *openscap_pmc::cpe_language_free;
*cpe_itemmetadata_free = *openscap_pmc::cpe_itemmetadata_free;
*cpe_dict_model_free = *openscap_pmc::cpe_dict_model_free;
*cpe_generator_free = *openscap_pmc::cpe_generator_free;
*cpe_item_free = *openscap_pmc::cpe_item_free;
*cpe_dict_model_new = *openscap_pmc::cpe_dict_model_new;
*cpe_generator_new = *openscap_pmc::cpe_generator_new;
*cpe_check_new = *openscap_pmc::cpe_check_new;
*cpe_reference_new = *openscap_pmc::cpe_reference_new;
*cpe_item_new = *openscap_pmc::cpe_item_new;
*cpe_vendor_new = *openscap_pmc::cpe_vendor_new;
*cpe_product_new = *openscap_pmc::cpe_product_new;
*cpe_version_new = *openscap_pmc::cpe_version_new;
*cpe_update_new = *openscap_pmc::cpe_update_new;
*cpe_edition_new = *openscap_pmc::cpe_edition_new;
*cpe_language_new = *openscap_pmc::cpe_language_new;
*cpe_item_metadata_new = *openscap_pmc::cpe_item_metadata_new;
*cpe_item_set_deprecation_date = *openscap_pmc::cpe_item_set_deprecation_date;
*cpe_item_metadata_set_modification_date = *openscap_pmc::cpe_item_metadata_set_modification_date;
*cpe_item_metadata_set_status = *openscap_pmc::cpe_item_metadata_set_status;
*cpe_item_metadata_set_nvd_id = *openscap_pmc::cpe_item_metadata_set_nvd_id;
*cpe_item_metadata_set_deprecated_by_nvd_id = *openscap_pmc::cpe_item_metadata_set_deprecated_by_nvd_id;
*cpe_check_set_system = *openscap_pmc::cpe_check_set_system;
*cpe_check_set_href = *openscap_pmc::cpe_check_set_href;
*cpe_check_set_identifier = *openscap_pmc::cpe_check_set_identifier;
*cpe_reference_set_href = *openscap_pmc::cpe_reference_set_href;
*cpe_reference_set_content = *openscap_pmc::cpe_reference_set_content;
*cpe_generator_set_product_name = *openscap_pmc::cpe_generator_set_product_name;
*cpe_generator_set_product_version = *openscap_pmc::cpe_generator_set_product_version;
*cpe_generator_set_schema_version = *openscap_pmc::cpe_generator_set_schema_version;
*cpe_generator_set_timestamp = *openscap_pmc::cpe_generator_set_timestamp;
*cpe_vendor_set_value = *openscap_pmc::cpe_vendor_set_value;
*cpe_product_set_value = *openscap_pmc::cpe_product_set_value;
*cpe_product_set_part = *openscap_pmc::cpe_product_set_part;
*cpe_version_set_value = *openscap_pmc::cpe_version_set_value;
*cpe_update_set_value = *openscap_pmc::cpe_update_set_value;
*cpe_edition_set_value = *openscap_pmc::cpe_edition_set_value;
*cpe_language_set_value = *openscap_pmc::cpe_language_set_value;
*cpe_item_add_reference = *openscap_pmc::cpe_item_add_reference;
*cpe_item_add_check = *openscap_pmc::cpe_item_add_check;
*cpe_item_add_title = *openscap_pmc::cpe_item_add_title;
*cpe_item_add_note = *openscap_pmc::cpe_item_add_note;
*cpe_dict_model_add_vendor = *openscap_pmc::cpe_dict_model_add_vendor;
*cpe_vendor_add_title = *openscap_pmc::cpe_vendor_add_title;
*cpe_vendor_add_product = *openscap_pmc::cpe_vendor_add_product;
*cpe_product_add_version = *openscap_pmc::cpe_product_add_version;
*cpe_version_add_update = *openscap_pmc::cpe_version_add_update;
*cpe_update_add_edition = *openscap_pmc::cpe_update_add_edition;
*cpe_edition_add_language = *openscap_pmc::cpe_edition_add_language;
*cpe_item_iterator_next = *openscap_pmc::cpe_item_iterator_next;
*cpe_item_iterator_has_more = *openscap_pmc::cpe_item_iterator_has_more;
*cpe_item_iterator_free = *openscap_pmc::cpe_item_iterator_free;
*cpe_item_iterator_remove = *openscap_pmc::cpe_item_iterator_remove;
*cpe_item_iterator_reset = *openscap_pmc::cpe_item_iterator_reset;
*cpe_reference_iterator_next = *openscap_pmc::cpe_reference_iterator_next;
*cpe_reference_iterator_has_more = *openscap_pmc::cpe_reference_iterator_has_more;
*cpe_reference_iterator_free = *openscap_pmc::cpe_reference_iterator_free;
*cpe_reference_iterator_remove = *openscap_pmc::cpe_reference_iterator_remove;
*cpe_reference_iterator_reset = *openscap_pmc::cpe_reference_iterator_reset;
*cpe_check_iterator_next = *openscap_pmc::cpe_check_iterator_next;
*cpe_check_iterator_has_more = *openscap_pmc::cpe_check_iterator_has_more;
*cpe_check_iterator_free = *openscap_pmc::cpe_check_iterator_free;
*cpe_check_iterator_remove = *openscap_pmc::cpe_check_iterator_remove;
*cpe_check_iterator_reset = *openscap_pmc::cpe_check_iterator_reset;
*cpe_vendor_iterator_next = *openscap_pmc::cpe_vendor_iterator_next;
*cpe_vendor_iterator_has_more = *openscap_pmc::cpe_vendor_iterator_has_more;
*cpe_vendor_iterator_free = *openscap_pmc::cpe_vendor_iterator_free;
*cpe_vendor_iterator_remove = *openscap_pmc::cpe_vendor_iterator_remove;
*cpe_vendor_iterator_reset = *openscap_pmc::cpe_vendor_iterator_reset;
*cpe_product_iterator_next = *openscap_pmc::cpe_product_iterator_next;
*cpe_product_iterator_has_more = *openscap_pmc::cpe_product_iterator_has_more;
*cpe_product_iterator_free = *openscap_pmc::cpe_product_iterator_free;
*cpe_product_iterator_remove = *openscap_pmc::cpe_product_iterator_remove;
*cpe_product_iterator_reset = *openscap_pmc::cpe_product_iterator_reset;
*cpe_version_iterator_next = *openscap_pmc::cpe_version_iterator_next;
*cpe_version_iterator_has_more = *openscap_pmc::cpe_version_iterator_has_more;
*cpe_version_iterator_free = *openscap_pmc::cpe_version_iterator_free;
*cpe_version_iterator_remove = *openscap_pmc::cpe_version_iterator_remove;
*cpe_version_iterator_reset = *openscap_pmc::cpe_version_iterator_reset;
*cpe_update_iterator_next = *openscap_pmc::cpe_update_iterator_next;
*cpe_update_iterator_has_more = *openscap_pmc::cpe_update_iterator_has_more;
*cpe_update_iterator_free = *openscap_pmc::cpe_update_iterator_free;
*cpe_update_iterator_remove = *openscap_pmc::cpe_update_iterator_remove;
*cpe_update_iterator_reset = *openscap_pmc::cpe_update_iterator_reset;
*cpe_edition_iterator_next = *openscap_pmc::cpe_edition_iterator_next;
*cpe_edition_iterator_has_more = *openscap_pmc::cpe_edition_iterator_has_more;
*cpe_edition_iterator_free = *openscap_pmc::cpe_edition_iterator_free;
*cpe_edition_iterator_remove = *openscap_pmc::cpe_edition_iterator_remove;
*cpe_edition_iterator_reset = *openscap_pmc::cpe_edition_iterator_reset;
*cpe_language_iterator_next = *openscap_pmc::cpe_language_iterator_next;
*cpe_language_iterator_has_more = *openscap_pmc::cpe_language_iterator_has_more;
*cpe_language_iterator_free = *openscap_pmc::cpe_language_iterator_free;
*cpe_language_iterator_remove = *openscap_pmc::cpe_language_iterator_remove;
*cpe_language_iterator_reset = *openscap_pmc::cpe_language_iterator_reset;
*cpe_dict_model_supported = *openscap_pmc::cpe_dict_model_supported;
*cpe_dict_detect_version = *openscap_pmc::cpe_dict_detect_version;
*cpe_name_match_dict = *openscap_pmc::cpe_name_match_dict;
*cpe_name_match_dict_str = *openscap_pmc::cpe_name_match_dict_str;
*cpe_name_applicable_dict = *openscap_pmc::cpe_name_applicable_dict;
*cpe_item_is_applicable = *openscap_pmc::cpe_item_is_applicable;
*cpe_dict_model_export = *openscap_pmc::cpe_dict_model_export;
*cpe_dict_model_import = *openscap_pmc::cpe_dict_model_import;
*cpe_dict_model_import_source = *openscap_pmc::cpe_dict_model_import_source;
*cpe_dict_model_set_origin_file = *openscap_pmc::cpe_dict_model_set_origin_file;
*cpe_dict_model_get_origin_file = *openscap_pmc::cpe_dict_model_get_origin_file;
*cpe_platform_iterator_next = *openscap_pmc::cpe_platform_iterator_next;
*cpe_platform_iterator_has_more = *openscap_pmc::cpe_platform_iterator_has_more;
*cpe_platform_iterator_free = *openscap_pmc::cpe_platform_iterator_free;
*cpe_testexpr_iterator_next = *openscap_pmc::cpe_testexpr_iterator_next;
*cpe_testexpr_iterator_has_more = *openscap_pmc::cpe_testexpr_iterator_has_more;
*cpe_testexpr_iterator_free = *openscap_pmc::cpe_testexpr_iterator_free;
*cpe_testexpr_get_oper = *openscap_pmc::cpe_testexpr_get_oper;
*cpe_testexpr_get_meta_expr = *openscap_pmc::cpe_testexpr_get_meta_expr;
*cpe_testexpr_get_meta_cpe = *openscap_pmc::cpe_testexpr_get_meta_cpe;
*cpe_testexpr_get_meta_check_system = *openscap_pmc::cpe_testexpr_get_meta_check_system;
*cpe_testexpr_get_meta_check_href = *openscap_pmc::cpe_testexpr_get_meta_check_href;
*cpe_testexpr_get_meta_check_id = *openscap_pmc::cpe_testexpr_get_meta_check_id;
*cpe_testexpr_get_next = *openscap_pmc::cpe_testexpr_get_next;
*cpe_lang_model_get_platforms = *openscap_pmc::cpe_lang_model_get_platforms;
*cpe_lang_model_get_item = *openscap_pmc::cpe_lang_model_get_item;
*cpe_platform_applicable_lang_model = *openscap_pmc::cpe_platform_applicable_lang_model;
*cpe_platform_get_id = *openscap_pmc::cpe_platform_get_id;
*cpe_platform_get_remark = *openscap_pmc::cpe_platform_get_remark;
*cpe_platform_get_titles = *openscap_pmc::cpe_platform_get_titles;
*cpe_platform_get_expr = *openscap_pmc::cpe_platform_get_expr;
*cpe_lang_model_add_platform = *openscap_pmc::cpe_lang_model_add_platform;
*cpe_platform_add_title = *openscap_pmc::cpe_platform_add_title;
*cpe_testexpr_add_subexpression = *openscap_pmc::cpe_testexpr_add_subexpression;
*cpe_platform_set_id = *openscap_pmc::cpe_platform_set_id;
*cpe_platform_set_remark = *openscap_pmc::cpe_platform_set_remark;
*cpe_platform_set_expr = *openscap_pmc::cpe_platform_set_expr;
*cpe_testexpr_set_oper = *openscap_pmc::cpe_testexpr_set_oper;
*cpe_testexpr_set_name = *openscap_pmc::cpe_testexpr_set_name;
*cpe_platform_iterator_remove = *openscap_pmc::cpe_platform_iterator_remove;
*cpe_platform_iterator_reset = *openscap_pmc::cpe_platform_iterator_reset;
*cpe_lang_model_new = *openscap_pmc::cpe_lang_model_new;
*cpe_testexpr_new = *openscap_pmc::cpe_testexpr_new;
*cpe_platform_new = *openscap_pmc::cpe_platform_new;
*cpe_testexpr_clone = *openscap_pmc::cpe_testexpr_clone;
*cpe_testexpr_free = *openscap_pmc::cpe_testexpr_free;
*cpe_testexpr_iterator_reset = *openscap_pmc::cpe_testexpr_iterator_reset;
*cpe_lang_model_free = *openscap_pmc::cpe_lang_model_free;
*cpe_platform_free = *openscap_pmc::cpe_platform_free;
*cpe_lang_model_supported = *openscap_pmc::cpe_lang_model_supported;
*cpe_lang_model_detect_version = *openscap_pmc::cpe_lang_model_detect_version;
*cpe_platform_match_cpe = *openscap_pmc::cpe_platform_match_cpe;
*cpe_lang_model_import = *openscap_pmc::cpe_lang_model_import;
*cpe_lang_model_import_source = *openscap_pmc::cpe_lang_model_import_source;
*cpe_lang_model_set_origin_file = *openscap_pmc::cpe_lang_model_set_origin_file;
*cpe_lang_model_get_origin_file = *openscap_pmc::cpe_lang_model_get_origin_file;
*cpe_lang_model_export = *openscap_pmc::cpe_lang_model_export;
*cve_model_get_entries = *openscap_pmc::cve_model_get_entries;
*cve_entry_get_id = *openscap_pmc::cve_entry_get_id;
*cve_entry_get_cwe = *openscap_pmc::cve_entry_get_cwe;
*cve_entry_get_summaries = *openscap_pmc::cve_entry_get_summaries;
*cve_entry_get_references = *openscap_pmc::cve_entry_get_references;
*cve_reference_get_value = *openscap_pmc::cve_reference_get_value;
*cve_reference_get_href = *openscap_pmc::cve_reference_get_href;
*cve_reference_get_type = *openscap_pmc::cve_reference_get_type;
*cve_reference_get_source = *openscap_pmc::cve_reference_get_source;
*cve_reference_get_lang = *openscap_pmc::cve_reference_get_lang;
*cve_summary_get_summary = *openscap_pmc::cve_summary_get_summary;
*cve_product_get_value = *openscap_pmc::cve_product_get_value;
*cwe_entry_get_value = *openscap_pmc::cwe_entry_get_value;
*cve_configuration_get_id = *openscap_pmc::cve_configuration_get_id;
*cve_entry_get_published = *openscap_pmc::cve_entry_get_published;
*cve_entry_get_modified = *openscap_pmc::cve_entry_get_modified;
*cve_entry_get_sec_protection = *openscap_pmc::cve_entry_get_sec_protection;
*cve_entry_get_products = *openscap_pmc::cve_entry_get_products;
*cve_entry_get_configurations = *openscap_pmc::cve_entry_get_configurations;
*cve_configuration_get_expr = *openscap_pmc::cve_configuration_get_expr;
*cve_entry_get_cvss = *openscap_pmc::cve_entry_get_cvss;
*cve_model_add_entry = *openscap_pmc::cve_model_add_entry;
*cve_entry_add_product = *openscap_pmc::cve_entry_add_product;
*cve_entry_add_reference = *openscap_pmc::cve_entry_add_reference;
*cve_entry_add_summary = *openscap_pmc::cve_entry_add_summary;
*cve_entry_add_configuration = *openscap_pmc::cve_entry_add_configuration;
*cve_entry_set_id = *openscap_pmc::cve_entry_set_id;
*cve_entry_set_published = *openscap_pmc::cve_entry_set_published;
*cve_entry_set_modified = *openscap_pmc::cve_entry_set_modified;
*cve_entry_set_sec_protection = *openscap_pmc::cve_entry_set_sec_protection;
*cve_entry_set_cwe = *openscap_pmc::cve_entry_set_cwe;
*cwe_entry_set_value = *openscap_pmc::cwe_entry_set_value;
*cve_reference_set_value = *openscap_pmc::cve_reference_set_value;
*cve_reference_set_href = *openscap_pmc::cve_reference_set_href;
*cve_reference_set_type = *openscap_pmc::cve_reference_set_type;
*cve_reference_set_source = *openscap_pmc::cve_reference_set_source;
*cve_reference_set_lang = *openscap_pmc::cve_reference_set_lang;
*cve_configuration_set_id = *openscap_pmc::cve_configuration_set_id;
*cve_product_set_value = *openscap_pmc::cve_product_set_value;
*cve_summary_set_summary = *openscap_pmc::cve_summary_set_summary;
*cve_entry_iterator_next = *openscap_pmc::cve_entry_iterator_next;
*cve_entry_iterator_has_more = *openscap_pmc::cve_entry_iterator_has_more;
*cve_entry_iterator_free = *openscap_pmc::cve_entry_iterator_free;
*cve_summary_iterator_next = *openscap_pmc::cve_summary_iterator_next;
*cve_summary_iterator_has_more = *openscap_pmc::cve_summary_iterator_has_more;
*cve_summary_iterator_free = *openscap_pmc::cve_summary_iterator_free;
*cve_product_iterator_next = *openscap_pmc::cve_product_iterator_next;
*cve_product_iterator_has_more = *openscap_pmc::cve_product_iterator_has_more;
*cve_product_iterator_free = *openscap_pmc::cve_product_iterator_free;
*cve_configuration_iterator_next = *openscap_pmc::cve_configuration_iterator_next;
*cve_configuration_iterator_has_more = *openscap_pmc::cve_configuration_iterator_has_more;
*cve_configuration_iterator_free = *openscap_pmc::cve_configuration_iterator_free;
*cve_reference_iterator_next = *openscap_pmc::cve_reference_iterator_next;
*cve_reference_iterator_has_more = *openscap_pmc::cve_reference_iterator_has_more;
*cve_reference_iterator_free = *openscap_pmc::cve_reference_iterator_free;
*cve_model_supported = *openscap_pmc::cve_model_supported;
*cve_entry_new = *openscap_pmc::cve_entry_new;
*cve_configuration_new = *openscap_pmc::cve_configuration_new;
*cwe_entry_new = *openscap_pmc::cwe_entry_new;
*cve_product_new = *openscap_pmc::cve_product_new;
*cve_summary_new = *openscap_pmc::cve_summary_new;
*cve_reference_new = *openscap_pmc::cve_reference_new;
*cve_model_new = *openscap_pmc::cve_model_new;
*cve_entry_clone = *openscap_pmc::cve_entry_clone;
*cve_configuration_clone = *openscap_pmc::cve_configuration_clone;
*cwe_entry_clone = *openscap_pmc::cwe_entry_clone;
*cve_product_clone = *openscap_pmc::cve_product_clone;
*cve_summary_clone = *openscap_pmc::cve_summary_clone;
*cve_reference_clone = *openscap_pmc::cve_reference_clone;
*cve_model_clone = *openscap_pmc::cve_model_clone;
*cve_model_free = *openscap_pmc::cve_model_free;
*cve_entry_free = *openscap_pmc::cve_entry_free;
*cve_summary_free = *openscap_pmc::cve_summary_free;
*cve_product_free = *openscap_pmc::cve_product_free;
*cve_reference_free = *openscap_pmc::cve_reference_free;
*cwe_entry_free = *openscap_pmc::cwe_entry_free;
*cve_configuration_free = *openscap_pmc::cve_configuration_free;
*cve_entry_iterator_remove = *openscap_pmc::cve_entry_iterator_remove;
*cve_entry_iterator_reset = *openscap_pmc::cve_entry_iterator_reset;
*cve_product_iterator_remove = *openscap_pmc::cve_product_iterator_remove;
*cve_product_iterator_reset = *openscap_pmc::cve_product_iterator_reset;
*cve_reference_iterator_remove = *openscap_pmc::cve_reference_iterator_remove;
*cve_reference_iterator_reset = *openscap_pmc::cve_reference_iterator_reset;
*cve_summary_iterator_remove = *openscap_pmc::cve_summary_iterator_remove;
*cve_summary_iterator_reset = *openscap_pmc::cve_summary_iterator_reset;
*cve_configuration_iterator_remove = *openscap_pmc::cve_configuration_iterator_remove;
*cve_configuration_iterator_reset = *openscap_pmc::cve_configuration_iterator_reset;
*cve_model_export = *openscap_pmc::cve_model_export;
*cve_model_import = *openscap_pmc::cve_model_import;
*cve_model_get_nvd_xml_version = *openscap_pmc::cve_model_get_nvd_xml_version;
*cve_model_set_nvd_xml_version = *openscap_pmc::cve_model_set_nvd_xml_version;
*cve_model_get_pub_date = *openscap_pmc::cve_model_get_pub_date;
*cve_model_set_pub_date = *openscap_pmc::cve_model_set_pub_date;
*cvss_model_supported = *openscap_pmc::cvss_model_supported;
*cvss_round = *openscap_pmc::cvss_round;
*cvss_impact_new = *openscap_pmc::cvss_impact_new;
*cvss_impact_new_from_vector = *openscap_pmc::cvss_impact_new_from_vector;
*cvss_impact_clone = *openscap_pmc::cvss_impact_clone;
*cvss_impact_free = *openscap_pmc::cvss_impact_free;
*cvss_impact_describe = *openscap_pmc::cvss_impact_describe;
*cvss_impact_get_base_metrics = *openscap_pmc::cvss_impact_get_base_metrics;
*cvss_impact_get_temporal_metrics = *openscap_pmc::cvss_impact_get_temporal_metrics;
*cvss_impact_get_environmental_metrics = *openscap_pmc::cvss_impact_get_environmental_metrics;
*cvss_impact_set_metrics = *openscap_pmc::cvss_impact_set_metrics;
*cvss_impact_to_vector = *openscap_pmc::cvss_impact_to_vector;
*cvss_impact_base_exploitability_subscore = *openscap_pmc::cvss_impact_base_exploitability_subscore;
*cvss_impact_base_impact_subscore = *openscap_pmc::cvss_impact_base_impact_subscore;
*cvss_impact_base_score = *openscap_pmc::cvss_impact_base_score;
*cvss_impact_temporal_multiplier = *openscap_pmc::cvss_impact_temporal_multiplier;
*cvss_impact_temporal_score = *openscap_pmc::cvss_impact_temporal_score;
*cvss_impact_base_adjusted_impact_subscore = *openscap_pmc::cvss_impact_base_adjusted_impact_subscore;
*cvss_impact_adjusted_base_score = *openscap_pmc::cvss_impact_adjusted_base_score;
*cvss_impact_adjusted_temporal_score = *openscap_pmc::cvss_impact_adjusted_temporal_score;
*cvss_impact_environmental_score = *openscap_pmc::cvss_impact_environmental_score;
*cvss_metrics_new = *openscap_pmc::cvss_metrics_new;
*cvss_metrics_clone = *openscap_pmc::cvss_metrics_clone;
*cvss_metrics_free = *openscap_pmc::cvss_metrics_free;
*cvss_metrics_get_category = *openscap_pmc::cvss_metrics_get_category;
*cvss_metrics_get_source = *openscap_pmc::cvss_metrics_get_source;
*cvss_metrics_set_source = *openscap_pmc::cvss_metrics_set_source;
*cvss_metrics_get_generated_on_datetime = *openscap_pmc::cvss_metrics_get_generated_on_datetime;
*cvss_metrics_set_generated_on_datetime = *openscap_pmc::cvss_metrics_set_generated_on_datetime;
*cvss_metrics_get_upgraded_from_version = *openscap_pmc::cvss_metrics_get_upgraded_from_version;
*cvss_metrics_set_upgraded_from_version = *openscap_pmc::cvss_metrics_set_upgraded_from_version;
*cvss_metrics_get_score = *openscap_pmc::cvss_metrics_get_score;
*cvss_metrics_set_score = *openscap_pmc::cvss_metrics_set_score;
*cvss_metrics_is_valid = *openscap_pmc::cvss_metrics_is_valid;
*cvss_metrics_get_access_vector = *openscap_pmc::cvss_metrics_get_access_vector;
*cvss_metrics_get_access_complexity = *openscap_pmc::cvss_metrics_get_access_complexity;
*cvss_metrics_get_authentication = *openscap_pmc::cvss_metrics_get_authentication;
*cvss_metrics_get_confidentiality_impact = *openscap_pmc::cvss_metrics_get_confidentiality_impact;
*cvss_metrics_get_integrity_impact = *openscap_pmc::cvss_metrics_get_integrity_impact;
*cvss_metrics_get_availability_impact = *openscap_pmc::cvss_metrics_get_availability_impact;
*cvss_metrics_get_exploitability = *openscap_pmc::cvss_metrics_get_exploitability;
*cvss_metrics_get_remediation_level = *openscap_pmc::cvss_metrics_get_remediation_level;
*cvss_metrics_get_report_confidence = *openscap_pmc::cvss_metrics_get_report_confidence;
*cvss_metrics_get_collateral_damage_potential = *openscap_pmc::cvss_metrics_get_collateral_damage_potential;
*cvss_metrics_get_target_distribution = *openscap_pmc::cvss_metrics_get_target_distribution;
*cvss_metrics_get_confidentiality_requirement = *openscap_pmc::cvss_metrics_get_confidentiality_requirement;
*cvss_metrics_get_integrity_requirement = *openscap_pmc::cvss_metrics_get_integrity_requirement;
*cvss_metrics_get_availability_requirement = *openscap_pmc::cvss_metrics_get_availability_requirement;
*cvss_metrics_set_access_vector = *openscap_pmc::cvss_metrics_set_access_vector;
*cvss_metrics_set_access_complexity = *openscap_pmc::cvss_metrics_set_access_complexity;
*cvss_metrics_set_authentication = *openscap_pmc::cvss_metrics_set_authentication;
*cvss_metrics_set_confidentiality_impact = *openscap_pmc::cvss_metrics_set_confidentiality_impact;
*cvss_metrics_set_integrity_impact = *openscap_pmc::cvss_metrics_set_integrity_impact;
*cvss_metrics_set_availability_impact = *openscap_pmc::cvss_metrics_set_availability_impact;
*cvss_metrics_set_exploitability = *openscap_pmc::cvss_metrics_set_exploitability;
*cvss_metrics_set_remediation_level = *openscap_pmc::cvss_metrics_set_remediation_level;
*cvss_metrics_set_report_confidence = *openscap_pmc::cvss_metrics_set_report_confidence;
*cvss_metrics_set_collateral_damage_potential = *openscap_pmc::cvss_metrics_set_collateral_damage_potential;
*cvss_metrics_set_target_distribution = *openscap_pmc::cvss_metrics_set_target_distribution;
*cvss_metrics_set_confidentiality_requirement = *openscap_pmc::cvss_metrics_set_confidentiality_requirement;
*cvss_metrics_set_integrity_requirement = *openscap_pmc::cvss_metrics_set_integrity_requirement;
*cvss_metrics_set_availability_requirement = *openscap_pmc::cvss_metrics_set_availability_requirement;
*xccdf_version_info_get_version = *openscap_pmc::xccdf_version_info_get_version;
*xccdf_version_info_get_namespace_uri = *openscap_pmc::xccdf_version_info_get_namespace_uri;
*xccdf_version_info_get_cpe_version = *openscap_pmc::xccdf_version_info_get_cpe_version;
*xccdf_detect_version = *openscap_pmc::xccdf_detect_version;
*xccdf_item_free = *openscap_pmc::xccdf_item_free;
*xccdf_item_clone = *openscap_pmc::xccdf_item_clone;
*xccdf_item_to_benchmark = *openscap_pmc::xccdf_item_to_benchmark;
*xccdf_item_to_profile = *openscap_pmc::xccdf_item_to_profile;
*xccdf_item_to_rule = *openscap_pmc::xccdf_item_to_rule;
*xccdf_item_to_group = *openscap_pmc::xccdf_item_to_group;
*xccdf_item_to_value = *openscap_pmc::xccdf_item_to_value;
*xccdf_item_to_result = *openscap_pmc::xccdf_item_to_result;
*xccdf_benchmark_import = *openscap_pmc::xccdf_benchmark_import;
*xccdf_benchmark_import_source = *openscap_pmc::xccdf_benchmark_import_source;
*xccdf_benchmark_export = *openscap_pmc::xccdf_benchmark_export;
*xccdf_result_import_source = *openscap_pmc::xccdf_result_import_source;
*xccdf_result_fill_sysinfo = *openscap_pmc::xccdf_result_fill_sysinfo;
*xccdf_result_export = *openscap_pmc::xccdf_result_export;
*xccdf_result_export_source = *openscap_pmc::xccdf_result_export_source;
*xccdf_benchmark_resolve = *openscap_pmc::xccdf_benchmark_resolve;
*xccdf_benchmark_new = *openscap_pmc::xccdf_benchmark_new;
*xccdf_benchmark_free = *openscap_pmc::xccdf_benchmark_free;
*xccdf_benchmark_to_item = *openscap_pmc::xccdf_benchmark_to_item;
*xccdf_benchmark_clone = *openscap_pmc::xccdf_benchmark_clone;
*xccdf_benchmark_supported = *openscap_pmc::xccdf_benchmark_supported;
*xccdf_profile_new = *openscap_pmc::xccdf_profile_new;
*xccdf_profile_free = *openscap_pmc::xccdf_profile_free;
*xccdf_profile_to_item = *openscap_pmc::xccdf_profile_to_item;
*xccdf_profile_clone = *openscap_pmc::xccdf_profile_clone;
*xccdf_rule_new = *openscap_pmc::xccdf_rule_new;
*xccdf_rule_free = *openscap_pmc::xccdf_rule_free;
*xccdf_rule_to_item = *openscap_pmc::xccdf_rule_to_item;
*xccdf_rule_clone = *openscap_pmc::xccdf_rule_clone;
*xccdf_group_new = *openscap_pmc::xccdf_group_new;
*xccdf_group_free = *openscap_pmc::xccdf_group_free;
*xccdf_group_to_item = *openscap_pmc::xccdf_group_to_item;
*xccdf_group_clone = *openscap_pmc::xccdf_group_clone;
*xccdf_value_new = *openscap_pmc::xccdf_value_new;
*xccdf_value_free = *openscap_pmc::xccdf_value_free;
*xccdf_value_to_item = *openscap_pmc::xccdf_value_to_item;
*xccdf_value_clone = *openscap_pmc::xccdf_value_clone;
*xccdf_status_new = *openscap_pmc::xccdf_status_new;
*xccdf_status_clone = *openscap_pmc::xccdf_status_clone;
*xccdf_status_new_fill = *openscap_pmc::xccdf_status_new_fill;
*xccdf_status_free = *openscap_pmc::xccdf_status_free;
*xccdf_notice_new = *openscap_pmc::xccdf_notice_new;
*xccdf_notice_free = *openscap_pmc::xccdf_notice_free;
*xccdf_notice_clone = *openscap_pmc::xccdf_notice_clone;
*xccdf_model_new = *openscap_pmc::xccdf_model_new;
*xccdf_model_clone = *openscap_pmc::xccdf_model_clone;
*xccdf_model_free = *openscap_pmc::xccdf_model_free;
*xccdf_ident_new = *openscap_pmc::xccdf_ident_new;
*xccdf_ident_new_fill = *openscap_pmc::xccdf_ident_new_fill;
*xccdf_ident_clone = *openscap_pmc::xccdf_ident_clone;
*xccdf_ident_free = *openscap_pmc::xccdf_ident_free;
*xccdf_check_new = *openscap_pmc::xccdf_check_new;
*xccdf_check_free = *openscap_pmc::xccdf_check_free;
*xccdf_check_clone = *openscap_pmc::xccdf_check_clone;
*xccdf_check_import_clone = *openscap_pmc::xccdf_check_import_clone;
*xccdf_check_export_clone = *openscap_pmc::xccdf_check_export_clone;
*xccdf_check_content_ref_clone = *openscap_pmc::xccdf_check_content_ref_clone;
*xccdf_check_content_ref_new = *openscap_pmc::xccdf_check_content_ref_new;
*xccdf_check_content_ref_free = *openscap_pmc::xccdf_check_content_ref_free;
*xccdf_profile_note_new = *openscap_pmc::xccdf_profile_note_new;
*xccdf_profile_note_free = *openscap_pmc::xccdf_profile_note_free;
*xccdf_check_import_new = *openscap_pmc::xccdf_check_import_new;
*xccdf_check_import_free = *openscap_pmc::xccdf_check_import_free;
*xccdf_check_export_new = *openscap_pmc::xccdf_check_export_new;
*xccdf_check_export_free = *openscap_pmc::xccdf_check_export_free;
*xccdf_fix_new = *openscap_pmc::xccdf_fix_new;
*xccdf_fix_clone = *openscap_pmc::xccdf_fix_clone;
*xccdf_fix_free = *openscap_pmc::xccdf_fix_free;
*xccdf_fixtext_new = *openscap_pmc::xccdf_fixtext_new;
*xccdf_fixtext_clone = *openscap_pmc::xccdf_fixtext_clone;
*xccdf_fixtext_free = *openscap_pmc::xccdf_fixtext_free;
*xccdf_select_free = *openscap_pmc::xccdf_select_free;
*xccdf_select_clone = *openscap_pmc::xccdf_select_clone;
*xccdf_select_new = *openscap_pmc::xccdf_select_new;
*xccdf_warning_new = *openscap_pmc::xccdf_warning_new;
*xccdf_warning_clone = *openscap_pmc::xccdf_warning_clone;
*xccdf_warning_free = *openscap_pmc::xccdf_warning_free;
*xccdf_refine_rule_free = *openscap_pmc::xccdf_refine_rule_free;
*xccdf_refine_value_free = *openscap_pmc::xccdf_refine_value_free;
*xccdf_setvalue_free = *openscap_pmc::xccdf_setvalue_free;
*xccdf_tailoring_new = *openscap_pmc::xccdf_tailoring_new;
*xccdf_tailoring_free = *openscap_pmc::xccdf_tailoring_free;
*xccdf_tailoring_export = *openscap_pmc::xccdf_tailoring_export;
*xccdf_cleanup = *openscap_pmc::xccdf_cleanup;
*xccdf_benchmark_append_new_group = *openscap_pmc::xccdf_benchmark_append_new_group;
*xccdf_benchmark_append_new_value = *openscap_pmc::xccdf_benchmark_append_new_value;
*xccdf_benchmark_append_new_rule = *openscap_pmc::xccdf_benchmark_append_new_rule;
*xccdf_plain_text_new = *openscap_pmc::xccdf_plain_text_new;
*xccdf_plain_text_new_fill = *openscap_pmc::xccdf_plain_text_new_fill;
*xccdf_plain_text_free = *openscap_pmc::xccdf_plain_text_free;
*xccdf_plain_text_clone = *openscap_pmc::xccdf_plain_text_clone;
*xccdf_result_new = *openscap_pmc::xccdf_result_new;
*xccdf_result_free = *openscap_pmc::xccdf_result_free;
*xccdf_result_to_item = *openscap_pmc::xccdf_result_to_item;
*xccdf_result_clone = *openscap_pmc::xccdf_result_clone;
*xccdf_rule_result_new = *openscap_pmc::xccdf_rule_result_new;
*xccdf_rule_result_clone = *openscap_pmc::xccdf_rule_result_clone;
*xccdf_rule_result_free = *openscap_pmc::xccdf_rule_result_free;
*xccdf_identity_new = *openscap_pmc::xccdf_identity_new;
*xccdf_identity_clone = *openscap_pmc::xccdf_identity_clone;
*xccdf_identity_free = *openscap_pmc::xccdf_identity_free;
*xccdf_score_new = *openscap_pmc::xccdf_score_new;
*xccdf_score_clone = *openscap_pmc::xccdf_score_clone;
*xccdf_score_free = *openscap_pmc::xccdf_score_free;
*xccdf_override_new = *openscap_pmc::xccdf_override_new;
*xccdf_override_clone = *openscap_pmc::xccdf_override_clone;
*xccdf_override_free = *openscap_pmc::xccdf_override_free;
*xccdf_message_new = *openscap_pmc::xccdf_message_new;
*xccdf_message_clone = *openscap_pmc::xccdf_message_clone;
*xccdf_message_free = *openscap_pmc::xccdf_message_free;
*xccdf_target_fact_new = *openscap_pmc::xccdf_target_fact_new;
*xccdf_target_fact_clone = *openscap_pmc::xccdf_target_fact_clone;
*xccdf_target_fact_free = *openscap_pmc::xccdf_target_fact_free;
*xccdf_target_identifier_new = *openscap_pmc::xccdf_target_identifier_new;
*xccdf_target_identifier_clone = *openscap_pmc::xccdf_target_identifier_clone;
*xccdf_target_identifier_free = *openscap_pmc::xccdf_target_identifier_free;
*xccdf_instance_new = *openscap_pmc::xccdf_instance_new;
*xccdf_instance_clone = *openscap_pmc::xccdf_instance_clone;
*xccdf_instance_free = *openscap_pmc::xccdf_instance_free;
*xccdf_value_instance_get_choices = *openscap_pmc::xccdf_value_instance_get_choices;
*xccdf_item_iterator_next = *openscap_pmc::xccdf_item_iterator_next;
*xccdf_item_iterator_has_more = *openscap_pmc::xccdf_item_iterator_has_more;
*xccdf_item_iterator_free = *openscap_pmc::xccdf_item_iterator_free;
*xccdf_item_iterator_reset = *openscap_pmc::xccdf_item_iterator_reset;
*xccdf_notice_iterator_next = *openscap_pmc::xccdf_notice_iterator_next;
*xccdf_notice_iterator_has_more = *openscap_pmc::xccdf_notice_iterator_has_more;
*xccdf_notice_iterator_free = *openscap_pmc::xccdf_notice_iterator_free;
*xccdf_notice_iterator_reset = *openscap_pmc::xccdf_notice_iterator_reset;
*xccdf_status_iterator_next = *openscap_pmc::xccdf_status_iterator_next;
*xccdf_status_iterator_has_more = *openscap_pmc::xccdf_status_iterator_has_more;
*xccdf_status_iterator_free = *openscap_pmc::xccdf_status_iterator_free;
*xccdf_status_iterator_reset = *openscap_pmc::xccdf_status_iterator_reset;
*xccdf_model_iterator_next = *openscap_pmc::xccdf_model_iterator_next;
*xccdf_model_iterator_has_more = *openscap_pmc::xccdf_model_iterator_has_more;
*xccdf_model_iterator_free = *openscap_pmc::xccdf_model_iterator_free;
*xccdf_model_iterator_reset = *openscap_pmc::xccdf_model_iterator_reset;
*xccdf_result_iterator_next = *openscap_pmc::xccdf_result_iterator_next;
*xccdf_result_iterator_has_more = *openscap_pmc::xccdf_result_iterator_has_more;
*xccdf_result_iterator_free = *openscap_pmc::xccdf_result_iterator_free;
*xccdf_result_iterator_reset = *openscap_pmc::xccdf_result_iterator_reset;
*xccdf_profile_iterator_next = *openscap_pmc::xccdf_profile_iterator_next;
*xccdf_profile_iterator_has_more = *openscap_pmc::xccdf_profile_iterator_has_more;
*xccdf_profile_iterator_free = *openscap_pmc::xccdf_profile_iterator_free;
*xccdf_profile_iterator_reset = *openscap_pmc::xccdf_profile_iterator_reset;
*xccdf_select_iterator_next = *openscap_pmc::xccdf_select_iterator_next;
*xccdf_select_iterator_has_more = *openscap_pmc::xccdf_select_iterator_has_more;
*xccdf_select_iterator_free = *openscap_pmc::xccdf_select_iterator_free;
*xccdf_select_iterator_reset = *openscap_pmc::xccdf_select_iterator_reset;
*xccdf_setvalue_iterator_next = *openscap_pmc::xccdf_setvalue_iterator_next;
*xccdf_setvalue_iterator_has_more = *openscap_pmc::xccdf_setvalue_iterator_has_more;
*xccdf_setvalue_iterator_free = *openscap_pmc::xccdf_setvalue_iterator_free;
*xccdf_setvalue_iterator_reset = *openscap_pmc::xccdf_setvalue_iterator_reset;
*xccdf_refine_value_iterator_next = *openscap_pmc::xccdf_refine_value_iterator_next;
*xccdf_refine_value_iterator_has_more = *openscap_pmc::xccdf_refine_value_iterator_has_more;
*xccdf_refine_value_iterator_free = *openscap_pmc::xccdf_refine_value_iterator_free;
*xccdf_refine_value_iterator_reset = *openscap_pmc::xccdf_refine_value_iterator_reset;
*xccdf_refine_rule_iterator_next = *openscap_pmc::xccdf_refine_rule_iterator_next;
*xccdf_refine_rule_iterator_has_more = *openscap_pmc::xccdf_refine_rule_iterator_has_more;
*xccdf_refine_rule_iterator_free = *openscap_pmc::xccdf_refine_rule_iterator_free;
*xccdf_refine_rule_iterator_reset = *openscap_pmc::xccdf_refine_rule_iterator_reset;
*xccdf_ident_iterator_next = *openscap_pmc::xccdf_ident_iterator_next;
*xccdf_ident_iterator_has_more = *openscap_pmc::xccdf_ident_iterator_has_more;
*xccdf_ident_iterator_free = *openscap_pmc::xccdf_ident_iterator_free;
*xccdf_ident_iterator_reset = *openscap_pmc::xccdf_ident_iterator_reset;
*xccdf_check_iterator_next = *openscap_pmc::xccdf_check_iterator_next;
*xccdf_check_iterator_has_more = *openscap_pmc::xccdf_check_iterator_has_more;
*xccdf_check_iterator_free = *openscap_pmc::xccdf_check_iterator_free;
*xccdf_check_iterator_reset = *openscap_pmc::xccdf_check_iterator_reset;
*xccdf_check_content_ref_iterator_next = *openscap_pmc::xccdf_check_content_ref_iterator_next;
*xccdf_check_content_ref_iterator_has_more = *openscap_pmc::xccdf_check_content_ref_iterator_has_more;
*xccdf_check_content_ref_iterator_free = *openscap_pmc::xccdf_check_content_ref_iterator_free;
*xccdf_check_content_ref_iterator_reset = *openscap_pmc::xccdf_check_content_ref_iterator_reset;
*xccdf_profile_note_iterator_next = *openscap_pmc::xccdf_profile_note_iterator_next;
*xccdf_profile_note_iterator_has_more = *openscap_pmc::xccdf_profile_note_iterator_has_more;
*xccdf_profile_note_iterator_free = *openscap_pmc::xccdf_profile_note_iterator_free;
*xccdf_profile_note_iterator_reset = *openscap_pmc::xccdf_profile_note_iterator_reset;
*xccdf_check_import_iterator_next = *openscap_pmc::xccdf_check_import_iterator_next;
*xccdf_check_import_iterator_has_more = *openscap_pmc::xccdf_check_import_iterator_has_more;
*xccdf_check_import_iterator_free = *openscap_pmc::xccdf_check_import_iterator_free;
*xccdf_check_import_iterator_reset = *openscap_pmc::xccdf_check_import_iterator_reset;
*xccdf_check_export_iterator_next = *openscap_pmc::xccdf_check_export_iterator_next;
*xccdf_check_export_iterator_has_more = *openscap_pmc::xccdf_check_export_iterator_has_more;
*xccdf_check_export_iterator_free = *openscap_pmc::xccdf_check_export_iterator_free;
*xccdf_check_export_iterator_reset = *openscap_pmc::xccdf_check_export_iterator_reset;
*xccdf_fix_iterator_next = *openscap_pmc::xccdf_fix_iterator_next;
*xccdf_fix_iterator_has_more = *openscap_pmc::xccdf_fix_iterator_has_more;
*xccdf_fix_iterator_free = *openscap_pmc::xccdf_fix_iterator_free;
*xccdf_fix_iterator_reset = *openscap_pmc::xccdf_fix_iterator_reset;
*xccdf_fixtext_iterator_next = *openscap_pmc::xccdf_fixtext_iterator_next;
*xccdf_fixtext_iterator_has_more = *openscap_pmc::xccdf_fixtext_iterator_has_more;
*xccdf_fixtext_iterator_free = *openscap_pmc::xccdf_fixtext_iterator_free;
*xccdf_fixtext_iterator_reset = *openscap_pmc::xccdf_fixtext_iterator_reset;
*xccdf_warning_iterator_next = *openscap_pmc::xccdf_warning_iterator_next;
*xccdf_warning_iterator_has_more = *openscap_pmc::xccdf_warning_iterator_has_more;
*xccdf_warning_iterator_free = *openscap_pmc::xccdf_warning_iterator_free;
*xccdf_warning_iterator_reset = *openscap_pmc::xccdf_warning_iterator_reset;
*xccdf_instance_iterator_next = *openscap_pmc::xccdf_instance_iterator_next;
*xccdf_instance_iterator_has_more = *openscap_pmc::xccdf_instance_iterator_has_more;
*xccdf_instance_iterator_free = *openscap_pmc::xccdf_instance_iterator_free;
*xccdf_instance_iterator_reset = *openscap_pmc::xccdf_instance_iterator_reset;
*xccdf_message_iterator_next = *openscap_pmc::xccdf_message_iterator_next;
*xccdf_message_iterator_has_more = *openscap_pmc::xccdf_message_iterator_has_more;
*xccdf_message_iterator_free = *openscap_pmc::xccdf_message_iterator_free;
*xccdf_message_iterator_reset = *openscap_pmc::xccdf_message_iterator_reset;
*xccdf_override_iterator_next = *openscap_pmc::xccdf_override_iterator_next;
*xccdf_override_iterator_has_more = *openscap_pmc::xccdf_override_iterator_has_more;
*xccdf_override_iterator_free = *openscap_pmc::xccdf_override_iterator_free;
*xccdf_override_iterator_reset = *openscap_pmc::xccdf_override_iterator_reset;
*xccdf_identity_iterator_next = *openscap_pmc::xccdf_identity_iterator_next;
*xccdf_identity_iterator_has_more = *openscap_pmc::xccdf_identity_iterator_has_more;
*xccdf_identity_iterator_free = *openscap_pmc::xccdf_identity_iterator_free;
*xccdf_identity_iterator_reset = *openscap_pmc::xccdf_identity_iterator_reset;
*xccdf_rule_result_iterator_next = *openscap_pmc::xccdf_rule_result_iterator_next;
*xccdf_rule_result_iterator_has_more = *openscap_pmc::xccdf_rule_result_iterator_has_more;
*xccdf_rule_result_iterator_free = *openscap_pmc::xccdf_rule_result_iterator_free;
*xccdf_rule_result_iterator_reset = *openscap_pmc::xccdf_rule_result_iterator_reset;
*xccdf_value_instance_iterator_next = *openscap_pmc::xccdf_value_instance_iterator_next;
*xccdf_value_instance_iterator_has_more = *openscap_pmc::xccdf_value_instance_iterator_has_more;
*xccdf_value_instance_iterator_free = *openscap_pmc::xccdf_value_instance_iterator_free;
*xccdf_value_instance_iterator_reset = *openscap_pmc::xccdf_value_instance_iterator_reset;
*xccdf_score_iterator_next = *openscap_pmc::xccdf_score_iterator_next;
*xccdf_score_iterator_has_more = *openscap_pmc::xccdf_score_iterator_has_more;
*xccdf_score_iterator_free = *openscap_pmc::xccdf_score_iterator_free;
*xccdf_score_iterator_reset = *openscap_pmc::xccdf_score_iterator_reset;
*xccdf_target_fact_iterator_next = *openscap_pmc::xccdf_target_fact_iterator_next;
*xccdf_target_fact_iterator_has_more = *openscap_pmc::xccdf_target_fact_iterator_has_more;
*xccdf_target_fact_iterator_free = *openscap_pmc::xccdf_target_fact_iterator_free;
*xccdf_target_fact_iterator_reset = *openscap_pmc::xccdf_target_fact_iterator_reset;
*xccdf_target_identifier_iterator_next = *openscap_pmc::xccdf_target_identifier_iterator_next;
*xccdf_target_identifier_iterator_has_more = *openscap_pmc::xccdf_target_identifier_iterator_has_more;
*xccdf_target_identifier_iterator_free = *openscap_pmc::xccdf_target_identifier_iterator_free;
*xccdf_target_identifier_iterator_reset = *openscap_pmc::xccdf_target_identifier_iterator_reset;
*xccdf_plain_text_iterator_next = *openscap_pmc::xccdf_plain_text_iterator_next;
*xccdf_plain_text_iterator_has_more = *openscap_pmc::xccdf_plain_text_iterator_has_more;
*xccdf_plain_text_iterator_free = *openscap_pmc::xccdf_plain_text_iterator_free;
*xccdf_plain_text_iterator_reset = *openscap_pmc::xccdf_plain_text_iterator_reset;
*xccdf_value_iterator_next = *openscap_pmc::xccdf_value_iterator_next;
*xccdf_value_iterator_has_more = *openscap_pmc::xccdf_value_iterator_has_more;
*xccdf_value_iterator_free = *openscap_pmc::xccdf_value_iterator_free;
*xccdf_value_iterator_reset = *openscap_pmc::xccdf_value_iterator_reset;
*xccdf_item_get_type = *openscap_pmc::xccdf_item_get_type;
*xccdf_item_get_id = *openscap_pmc::xccdf_item_get_id;
*xccdf_item_get_title = *openscap_pmc::xccdf_item_get_title;
*xccdf_item_get_description = *openscap_pmc::xccdf_item_get_description;
*xccdf_item_get_version = *openscap_pmc::xccdf_item_get_version;
*xccdf_item_get_extends = *openscap_pmc::xccdf_item_get_extends;
*xccdf_item_get_statuses = *openscap_pmc::xccdf_item_get_statuses;
*xccdf_item_get_dc_statuses = *openscap_pmc::xccdf_item_get_dc_statuses;
*xccdf_item_get_references = *openscap_pmc::xccdf_item_get_references;
*xccdf_item_get_conflicts = *openscap_pmc::xccdf_item_get_conflicts;
*xccdf_item_get_requires = *openscap_pmc::xccdf_item_get_requires;
*xccdf_item_get_current_status = *openscap_pmc::xccdf_item_get_current_status;
*xccdf_item_get_hidden = *openscap_pmc::xccdf_item_get_hidden;
*xccdf_item_get_selected = *openscap_pmc::xccdf_item_get_selected;
*xccdf_item_get_prohibit_changes = *openscap_pmc::xccdf_item_get_prohibit_changes;
*xccdf_item_get_abstract = *openscap_pmc::xccdf_item_get_abstract;
*xccdf_item_get_content = *openscap_pmc::xccdf_item_get_content;
*xccdf_test_result_type_get_text = *openscap_pmc::xccdf_test_result_type_get_text;
*xccdf_result_get_rule_result_by_id = *openscap_pmc::xccdf_result_get_rule_result_by_id;
*xccdf_item_get_parent = *openscap_pmc::xccdf_item_get_parent;
*xccdf_item_get_schema_version = *openscap_pmc::xccdf_item_get_schema_version;
*xccdf_item_get_metadata = *openscap_pmc::xccdf_item_get_metadata;
*xccdf_benchmark_get_id = *openscap_pmc::xccdf_benchmark_get_id;
*xccdf_benchmark_get_resolved = *openscap_pmc::xccdf_benchmark_get_resolved;
*xccdf_benchmark_get_title = *openscap_pmc::xccdf_benchmark_get_title;
*xccdf_benchmark_get_description = *openscap_pmc::xccdf_benchmark_get_description;
*xccdf_benchmark_get_version = *openscap_pmc::xccdf_benchmark_get_version;
*xccdf_benchmark_get_schema_version = *openscap_pmc::xccdf_benchmark_get_schema_version;
*xccdf_benchmark_get_style = *openscap_pmc::xccdf_benchmark_get_style;
*xccdf_benchmark_get_style_href = *openscap_pmc::xccdf_benchmark_get_style_href;
*xccdf_benchmark_get_front_matter = *openscap_pmc::xccdf_benchmark_get_front_matter;
*xccdf_benchmark_get_rear_matter = *openscap_pmc::xccdf_benchmark_get_rear_matter;
*xccdf_benchmark_get_statuses = *openscap_pmc::xccdf_benchmark_get_statuses;
*xccdf_benchmark_get_dc_statuses = *openscap_pmc::xccdf_benchmark_get_dc_statuses;
*xccdf_benchmark_get_references = *openscap_pmc::xccdf_benchmark_get_references;
*xccdf_benchmark_get_platforms = *openscap_pmc::xccdf_benchmark_get_platforms;
*xccdf_benchmark_get_status_current = *openscap_pmc::xccdf_benchmark_get_status_current;
*xccdf_benchmark_get_plain_texts = *openscap_pmc::xccdf_benchmark_get_plain_texts;
*xccdf_benchmark_get_results = *openscap_pmc::xccdf_benchmark_get_results;
*xccdf_benchmark_get_values = *openscap_pmc::xccdf_benchmark_get_values;
*xccdf_benchmark_set_lang = *openscap_pmc::xccdf_benchmark_set_lang;
*xccdf_benchmark_get_lang = *openscap_pmc::xccdf_benchmark_get_lang;
*xccdf_benchmark_get_plain_text = *openscap_pmc::xccdf_benchmark_get_plain_text;
*xccdf_benchmark_get_item = *openscap_pmc::xccdf_benchmark_get_item;
*xccdf_benchmark_get_member = *openscap_pmc::xccdf_benchmark_get_member;
*xccdf_benchmark_get_notices = *openscap_pmc::xccdf_benchmark_get_notices;
*xccdf_benchmark_get_models = *openscap_pmc::xccdf_benchmark_get_models;
*xccdf_benchmark_get_profiles = *openscap_pmc::xccdf_benchmark_get_profiles;
*xccdf_benchmark_get_content = *openscap_pmc::xccdf_benchmark_get_content;
*xccdf_benchmark_get_metadata = *openscap_pmc::xccdf_benchmark_get_metadata;
*xccdf_benchmark_get_cpe_list = *openscap_pmc::xccdf_benchmark_get_cpe_list;
*xccdf_benchmark_get_cpe_lang_model = *openscap_pmc::xccdf_benchmark_get_cpe_lang_model;
*xccdf_profile_get_id = *openscap_pmc::xccdf_profile_get_id;
*xccdf_profile_get_title = *openscap_pmc::xccdf_profile_get_title;
*xccdf_profile_get_description = *openscap_pmc::xccdf_profile_get_description;
*xccdf_profile_get_version = *openscap_pmc::xccdf_profile_get_version;
*xccdf_profile_get_extends = *openscap_pmc::xccdf_profile_get_extends;
*xccdf_profile_get_benchmark = *openscap_pmc::xccdf_profile_get_benchmark;
*xccdf_profile_get_abstract = *openscap_pmc::xccdf_profile_get_abstract;
*xccdf_profile_get_prohibit_changes = *openscap_pmc::xccdf_profile_get_prohibit_changes;
*xccdf_profile_get_platforms = *openscap_pmc::xccdf_profile_get_platforms;
*xccdf_profile_get_statuses = *openscap_pmc::xccdf_profile_get_statuses;
*xccdf_profile_get_dc_statuses = *openscap_pmc::xccdf_profile_get_dc_statuses;
*xccdf_profile_get_references = *openscap_pmc::xccdf_profile_get_references;
*xccdf_profile_get_status_current = *openscap_pmc::xccdf_profile_get_status_current;
*xccdf_profile_get_selects = *openscap_pmc::xccdf_profile_get_selects;
*xccdf_profile_get_setvalues = *openscap_pmc::xccdf_profile_get_setvalues;
*xccdf_profile_get_refine_values = *openscap_pmc::xccdf_profile_get_refine_values;
*xccdf_profile_get_refine_rules = *openscap_pmc::xccdf_profile_get_refine_rules;
*xccdf_profile_get_metadata = *openscap_pmc::xccdf_profile_get_metadata;
*xccdf_rule_get_parent = *openscap_pmc::xccdf_rule_get_parent;
*xccdf_rule_get_id = *openscap_pmc::xccdf_rule_get_id;
*xccdf_rule_get_title = *openscap_pmc::xccdf_rule_get_title;
*xccdf_rule_get_description = *openscap_pmc::xccdf_rule_get_description;
*xccdf_rule_get_version = *openscap_pmc::xccdf_rule_get_version;
*xccdf_rule_get_question = *openscap_pmc::xccdf_rule_get_question;
*xccdf_rule_get_warnings = *openscap_pmc::xccdf_rule_get_warnings;
*xccdf_rule_get_rationale = *openscap_pmc::xccdf_rule_get_rationale;
*xccdf_rule_get_cluster_id = *openscap_pmc::xccdf_rule_get_cluster_id;
*xccdf_rule_get_weight = *openscap_pmc::xccdf_rule_get_weight;
*xccdf_rule_set_weight = *openscap_pmc::xccdf_rule_set_weight;
*xccdf_rule_get_extends = *openscap_pmc::xccdf_rule_get_extends;
*xccdf_rule_get_abstract = *openscap_pmc::xccdf_rule_get_abstract;
*xccdf_rule_get_prohibit_changes = *openscap_pmc::xccdf_rule_get_prohibit_changes;
*xccdf_rule_get_hidden = *openscap_pmc::xccdf_rule_get_hidden;
*xccdf_rule_get_selected = *openscap_pmc::xccdf_rule_get_selected;
*xccdf_rule_get_multiple = *openscap_pmc::xccdf_rule_get_multiple;
*xccdf_rule_get_platforms = *openscap_pmc::xccdf_rule_get_platforms;
*xccdf_rule_get_statuses = *openscap_pmc::xccdf_rule_get_statuses;
*xccdf_rule_get_dc_statuses = *openscap_pmc::xccdf_rule_get_dc_statuses;
*xccdf_rule_get_references = *openscap_pmc::xccdf_rule_get_references;
*xccdf_rule_get_status_current = *openscap_pmc::xccdf_rule_get_status_current;
*xccdf_rule_get_impact_metric = *openscap_pmc::xccdf_rule_get_impact_metric;
*xccdf_rule_get_role = *openscap_pmc::xccdf_rule_get_role;
*xccdf_rule_get_severity = *openscap_pmc::xccdf_rule_get_severity;
*xccdf_rule_get_idents = *openscap_pmc::xccdf_rule_get_idents;
*xccdf_rule_get_checks = *openscap_pmc::xccdf_rule_get_checks;
*xccdf_rule_get_profile_notes = *openscap_pmc::xccdf_rule_get_profile_notes;
*xccdf_rule_get_fixes = *openscap_pmc::xccdf_rule_get_fixes;
*xccdf_rule_get_fixtexts = *openscap_pmc::xccdf_rule_get_fixtexts;
*xccdf_rule_get_conflicts = *openscap_pmc::xccdf_rule_get_conflicts;
*xccdf_rule_get_requires = *openscap_pmc::xccdf_rule_get_requires;
*xccdf_rule_get_metadata = *openscap_pmc::xccdf_rule_get_metadata;
*xccdf_group_get_parent = *openscap_pmc::xccdf_group_get_parent;
*xccdf_group_get_content = *openscap_pmc::xccdf_group_get_content;
*xccdf_group_get_values = *openscap_pmc::xccdf_group_get_values;
*xccdf_group_get_id = *openscap_pmc::xccdf_group_get_id;
*xccdf_group_get_title = *openscap_pmc::xccdf_group_get_title;
*xccdf_group_get_description = *openscap_pmc::xccdf_group_get_description;
*xccdf_group_get_version = *openscap_pmc::xccdf_group_get_version;
*xccdf_group_get_question = *openscap_pmc::xccdf_group_get_question;
*xccdf_group_get_warnings = *openscap_pmc::xccdf_group_get_warnings;
*xccdf_group_get_rationale = *openscap_pmc::xccdf_group_get_rationale;
*xccdf_group_get_cluster_id = *openscap_pmc::xccdf_group_get_cluster_id;
*xccdf_group_get_weight = *openscap_pmc::xccdf_group_get_weight;
*xccdf_group_set_weight = *openscap_pmc::xccdf_group_set_weight;
*xccdf_group_get_extends = *openscap_pmc::xccdf_group_get_extends;
*xccdf_group_get_abstract = *openscap_pmc::xccdf_group_get_abstract;
*xccdf_group_get_prohibit_changes = *openscap_pmc::xccdf_group_get_prohibit_changes;
*xccdf_group_get_hidden = *openscap_pmc::xccdf_group_get_hidden;
*xccdf_group_get_selected = *openscap_pmc::xccdf_group_get_selected;
*xccdf_group_get_platforms = *openscap_pmc::xccdf_group_get_platforms;
*xccdf_group_get_statuses = *openscap_pmc::xccdf_group_get_statuses;
*xccdf_group_get_dc_statuses = *openscap_pmc::xccdf_group_get_dc_statuses;
*xccdf_group_get_references = *openscap_pmc::xccdf_group_get_references;
*xccdf_group_get_status_current = *openscap_pmc::xccdf_group_get_status_current;
*xccdf_group_get_conflicts = *openscap_pmc::xccdf_group_get_conflicts;
*xccdf_group_get_requires = *openscap_pmc::xccdf_group_get_requires;
*xccdf_group_get_metadata = *openscap_pmc::xccdf_group_get_metadata;
*xccdf_value_get_title = *openscap_pmc::xccdf_value_get_title;
*xccdf_value_get_id = *openscap_pmc::xccdf_value_get_id;
*xccdf_value_get_description = *openscap_pmc::xccdf_value_get_description;
*xccdf_value_get_extends = *openscap_pmc::xccdf_value_get_extends;
*xccdf_value_get_abstract = *openscap_pmc::xccdf_value_get_abstract;
*xccdf_value_get_prohibit_changes = *openscap_pmc::xccdf_value_get_prohibit_changes;
*xccdf_value_get_hidden = *openscap_pmc::xccdf_value_get_hidden;
*xccdf_value_get_interactive = *openscap_pmc::xccdf_value_get_interactive;
*xccdf_value_get_statuses = *openscap_pmc::xccdf_value_get_statuses;
*xccdf_value_get_dc_statuses = *openscap_pmc::xccdf_value_get_dc_statuses;
*xccdf_value_get_references = *openscap_pmc::xccdf_value_get_references;
*xccdf_value_get_status_current = *openscap_pmc::xccdf_value_get_status_current;
*xccdf_value_get_type = *openscap_pmc::xccdf_value_get_type;
*xccdf_value_get_interface_hint = *openscap_pmc::xccdf_value_get_interface_hint;
*xccdf_value_get_oper = *openscap_pmc::xccdf_value_get_oper;
*xccdf_value_get_instance_by_selector = *openscap_pmc::xccdf_value_get_instance_by_selector;
*xccdf_value_add_instance = *openscap_pmc::xccdf_value_add_instance;
*xccdf_value_get_instances = *openscap_pmc::xccdf_value_get_instances;
*xccdf_value_get_metadata = *openscap_pmc::xccdf_value_get_metadata;
*xccdf_value_instance_free = *openscap_pmc::xccdf_value_instance_free;
*xccdf_value_new_instance = *openscap_pmc::xccdf_value_new_instance;
*xccdf_value_instance_get_selector = *openscap_pmc::xccdf_value_instance_get_selector;
*xccdf_value_instance_set_selector = *openscap_pmc::xccdf_value_instance_set_selector;
*xccdf_value_instance_get_type = *openscap_pmc::xccdf_value_instance_get_type;
*xccdf_value_instance_get_must_match = *openscap_pmc::xccdf_value_instance_get_must_match;
*xccdf_value_instance_set_must_match = *openscap_pmc::xccdf_value_instance_set_must_match;
*xccdf_value_instance_get_value_boolean = *openscap_pmc::xccdf_value_instance_get_value_boolean;
*xccdf_value_instance_set_value_boolean = *openscap_pmc::xccdf_value_instance_set_value_boolean;
*xccdf_value_instance_get_value_number = *openscap_pmc::xccdf_value_instance_get_value_number;
*xccdf_value_instance_set_value_number = *openscap_pmc::xccdf_value_instance_set_value_number;
*xccdf_value_instance_get_value_string = *openscap_pmc::xccdf_value_instance_get_value_string;
*xccdf_value_instance_set_value_string = *openscap_pmc::xccdf_value_instance_set_value_string;
*xccdf_value_instance_get_defval_boolean = *openscap_pmc::xccdf_value_instance_get_defval_boolean;
*xccdf_value_instance_set_defval_boolean = *openscap_pmc::xccdf_value_instance_set_defval_boolean;
*xccdf_value_instance_get_defval_number = *openscap_pmc::xccdf_value_instance_get_defval_number;
*xccdf_value_instance_set_defval_number = *openscap_pmc::xccdf_value_instance_set_defval_number;
*xccdf_value_instance_get_defval_string = *openscap_pmc::xccdf_value_instance_get_defval_string;
*xccdf_value_instance_set_defval_string = *openscap_pmc::xccdf_value_instance_set_defval_string;
*xccdf_value_instance_get_lower_bound = *openscap_pmc::xccdf_value_instance_get_lower_bound;
*xccdf_value_instance_set_lower_bound = *openscap_pmc::xccdf_value_instance_set_lower_bound;
*xccdf_value_instance_get_upper_bound = *openscap_pmc::xccdf_value_instance_get_upper_bound;
*xccdf_value_instance_set_upper_bound = *openscap_pmc::xccdf_value_instance_set_upper_bound;
*xccdf_value_instance_get_match = *openscap_pmc::xccdf_value_instance_get_match;
*xccdf_value_instance_set_match = *openscap_pmc::xccdf_value_instance_set_match;
*xccdf_value_instance_get_value = *openscap_pmc::xccdf_value_instance_get_value;
*xccdf_value_get_parent = *openscap_pmc::xccdf_value_get_parent;
*xccdf_status_get_date = *openscap_pmc::xccdf_status_get_date;
*xccdf_status_get_status = *openscap_pmc::xccdf_status_get_status;
*xccdf_status_type_to_text = *openscap_pmc::xccdf_status_type_to_text;
*xccdf_notice_get_id = *openscap_pmc::xccdf_notice_get_id;
*xccdf_notice_get_text = *openscap_pmc::xccdf_notice_get_text;
*xccdf_model_get_system = *openscap_pmc::xccdf_model_get_system;
*xccdf_ident_get_id = *openscap_pmc::xccdf_ident_get_id;
*xccdf_ident_get_system = *openscap_pmc::xccdf_ident_get_system;
*xccdf_check_get_id = *openscap_pmc::xccdf_check_get_id;
*xccdf_check_get_complex = *openscap_pmc::xccdf_check_get_complex;
*xccdf_check_get_oper = *openscap_pmc::xccdf_check_get_oper;
*xccdf_check_get_system = *openscap_pmc::xccdf_check_get_system;
*xccdf_check_get_selector = *openscap_pmc::xccdf_check_get_selector;
*xccdf_check_get_content = *openscap_pmc::xccdf_check_get_content;
*xccdf_check_get_multicheck = *openscap_pmc::xccdf_check_get_multicheck;
*xccdf_check_get_negate = *openscap_pmc::xccdf_check_get_negate;
*xccdf_check_get_children = *openscap_pmc::xccdf_check_get_children;
*xccdf_check_content_ref_get_href = *openscap_pmc::xccdf_check_content_ref_get_href;
*xccdf_check_content_ref_get_name = *openscap_pmc::xccdf_check_content_ref_get_name;
*xccdf_profile_note_get_reftag = *openscap_pmc::xccdf_profile_note_get_reftag;
*xccdf_profile_note_get_text = *openscap_pmc::xccdf_profile_note_get_text;
*xccdf_check_import_get_name = *openscap_pmc::xccdf_check_import_get_name;
*xccdf_check_import_get_xpath = *openscap_pmc::xccdf_check_import_get_xpath;
*xccdf_check_import_get_content = *openscap_pmc::xccdf_check_import_get_content;
*xccdf_check_export_get_value = *openscap_pmc::xccdf_check_export_get_value;
*xccdf_check_export_get_name = *openscap_pmc::xccdf_check_export_get_name;
*xccdf_fix_get_content = *openscap_pmc::xccdf_fix_get_content;
*xccdf_fix_get_reboot = *openscap_pmc::xccdf_fix_get_reboot;
*xccdf_fix_get_strategy = *openscap_pmc::xccdf_fix_get_strategy;
*xccdf_fix_get_complexity = *openscap_pmc::xccdf_fix_get_complexity;
*xccdf_fix_get_disruption = *openscap_pmc::xccdf_fix_get_disruption;
*xccdf_fix_get_id = *openscap_pmc::xccdf_fix_get_id;
*xccdf_fix_get_system = *openscap_pmc::xccdf_fix_get_system;
*xccdf_fix_get_platform = *openscap_pmc::xccdf_fix_get_platform;
*xccdf_fixtext_get_reboot = *openscap_pmc::xccdf_fixtext_get_reboot;
*xccdf_fixtext_get_strategy = *openscap_pmc::xccdf_fixtext_get_strategy;
*xccdf_fixtext_get_complexity = *openscap_pmc::xccdf_fixtext_get_complexity;
*xccdf_fixtext_get_disruption = *openscap_pmc::xccdf_fixtext_get_disruption;
*xccdf_fixtext_get_fixref = *openscap_pmc::xccdf_fixtext_get_fixref;
*xccdf_fixtext_get_text = *openscap_pmc::xccdf_fixtext_get_text;
*xccdf_value_get_version = *openscap_pmc::xccdf_value_get_version;
*xccdf_value_get_question = *openscap_pmc::xccdf_value_get_question;
*xccdf_value_get_warnings = *openscap_pmc::xccdf_value_get_warnings;
*xccdf_value_get_version_update = *openscap_pmc::xccdf_value_get_version_update;
*xccdf_value_get_version_time = *openscap_pmc::xccdf_value_get_version_time;
*xccdf_value_get_benchmark = *openscap_pmc::xccdf_value_get_benchmark;
*xccdf_value_get_sources = *openscap_pmc::xccdf_value_get_sources;
*xccdf_value_get_cluster_id = *openscap_pmc::xccdf_value_get_cluster_id;
*xccdf_item_get_question = *openscap_pmc::xccdf_item_get_question;
*xccdf_item_get_warnings = *openscap_pmc::xccdf_item_get_warnings;
*xccdf_item_get_rationale = *openscap_pmc::xccdf_item_get_rationale;
*xccdf_item_get_cluster_id = *openscap_pmc::xccdf_item_get_cluster_id;
*xccdf_item_get_version_update = *openscap_pmc::xccdf_item_get_version_update;
*xccdf_item_get_version_time = *openscap_pmc::xccdf_item_get_version_time;
*xccdf_item_get_weight = *openscap_pmc::xccdf_item_get_weight;
*xccdf_item_get_benchmark = *openscap_pmc::xccdf_item_get_benchmark;
*xccdf_item_get_platforms = *openscap_pmc::xccdf_item_get_platforms;
*xccdf_benchmark_get_warnings = *openscap_pmc::xccdf_benchmark_get_warnings;
*xccdf_benchmark_get_version_update = *openscap_pmc::xccdf_benchmark_get_version_update;
*xccdf_benchmark_get_version_time = *openscap_pmc::xccdf_benchmark_get_version_time;
*xccdf_profile_get_version_update = *openscap_pmc::xccdf_profile_get_version_update;
*xccdf_profile_get_version_time = *openscap_pmc::xccdf_profile_get_version_time;
*xccdf_profile_get_tailoring = *openscap_pmc::xccdf_profile_get_tailoring;
*xccdf_profile_get_note_tag = *openscap_pmc::xccdf_profile_get_note_tag;
*xccdf_rule_get_version_update = *openscap_pmc::xccdf_rule_get_version_update;
*xccdf_rule_get_version_time = *openscap_pmc::xccdf_rule_get_version_time;
*xccdf_rule_get_benchmark = *openscap_pmc::xccdf_rule_get_benchmark;
*xccdf_group_get_version_time = *openscap_pmc::xccdf_group_get_version_time;
*xccdf_group_get_version_update = *openscap_pmc::xccdf_group_get_version_update;
*xccdf_group_get_benchmark = *openscap_pmc::xccdf_group_get_benchmark;
*xccdf_check_get_imports = *openscap_pmc::xccdf_check_get_imports;
*xccdf_check_get_exports = *openscap_pmc::xccdf_check_get_exports;
*xccdf_check_get_content_refs = *openscap_pmc::xccdf_check_get_content_refs;
*xccdf_select_get_selected = *openscap_pmc::xccdf_select_get_selected;
*xccdf_select_get_item = *openscap_pmc::xccdf_select_get_item;
*xccdf_select_get_remarks = *openscap_pmc::xccdf_select_get_remarks;
*xccdf_warning_get_category = *openscap_pmc::xccdf_warning_get_category;
*xccdf_warning_get_text = *openscap_pmc::xccdf_warning_get_text;
*xccdf_refine_rule_get_item = *openscap_pmc::xccdf_refine_rule_get_item;
*xccdf_refine_rule_get_selector = *openscap_pmc::xccdf_refine_rule_get_selector;
*xccdf_refine_rule_get_role = *openscap_pmc::xccdf_refine_rule_get_role;
*xccdf_refine_rule_get_severity = *openscap_pmc::xccdf_refine_rule_get_severity;
*xccdf_refine_rule_get_remarks = *openscap_pmc::xccdf_refine_rule_get_remarks;
*xccdf_refine_rule_get_weight = *openscap_pmc::xccdf_refine_rule_get_weight;
*xccdf_refine_rule_weight_defined = *openscap_pmc::xccdf_refine_rule_weight_defined;
*xccdf_refine_value_get_item = *openscap_pmc::xccdf_refine_value_get_item;
*xccdf_refine_value_get_selector = *openscap_pmc::xccdf_refine_value_get_selector;
*xccdf_refine_value_get_oper = *openscap_pmc::xccdf_refine_value_get_oper;
*xccdf_refine_value_get_remarks = *openscap_pmc::xccdf_refine_value_get_remarks;
*xccdf_setvalue_get_item = *openscap_pmc::xccdf_setvalue_get_item;
*xccdf_setvalue_get_value = *openscap_pmc::xccdf_setvalue_get_value;
*xccdf_plain_text_get_id = *openscap_pmc::xccdf_plain_text_get_id;
*xccdf_plain_text_get_text = *openscap_pmc::xccdf_plain_text_get_text;
*xccdf_result_get_benchmark = *openscap_pmc::xccdf_result_get_benchmark;
*xccdf_result_get_id = *openscap_pmc::xccdf_result_get_id;
*xccdf_result_get_title = *openscap_pmc::xccdf_result_get_title;
*xccdf_result_get_version = *openscap_pmc::xccdf_result_get_version;
*xccdf_result_get_platforms = *openscap_pmc::xccdf_result_get_platforms;
*xccdf_result_get_statuses = *openscap_pmc::xccdf_result_get_statuses;
*xccdf_result_get_test_system = *openscap_pmc::xccdf_result_get_test_system;
*xccdf_result_get_benchmark_uri = *openscap_pmc::xccdf_result_get_benchmark_uri;
*xccdf_result_get_profile = *openscap_pmc::xccdf_result_get_profile;
*xccdf_result_get_identities = *openscap_pmc::xccdf_result_get_identities;
*xccdf_result_get_targets = *openscap_pmc::xccdf_result_get_targets;
*xccdf_result_get_target_addresses = *openscap_pmc::xccdf_result_get_target_addresses;
*xccdf_result_get_applicable_platforms = *openscap_pmc::xccdf_result_get_applicable_platforms;
*xccdf_result_get_organizations = *openscap_pmc::xccdf_result_get_organizations;
*xccdf_result_get_remarks = *openscap_pmc::xccdf_result_get_remarks;
*xccdf_result_get_target_facts = *openscap_pmc::xccdf_result_get_target_facts;
*xccdf_result_get_target_id_refs = *openscap_pmc::xccdf_result_get_target_id_refs;
*xccdf_result_get_setvalues = *openscap_pmc::xccdf_result_get_setvalues;
*xccdf_result_get_rule_results = *openscap_pmc::xccdf_result_get_rule_results;
*xccdf_result_get_scores = *openscap_pmc::xccdf_result_get_scores;
*xccdf_result_get_start_time = *openscap_pmc::xccdf_result_get_start_time;
*xccdf_result_get_end_time = *openscap_pmc::xccdf_result_get_end_time;
*xccdf_result_get_metadata = *openscap_pmc::xccdf_result_get_metadata;
*xccdf_rule_result_override = *openscap_pmc::xccdf_rule_result_override;
*xccdf_rule_result_get_time = *openscap_pmc::xccdf_rule_result_get_time;
*xccdf_rule_result_get_role = *openscap_pmc::xccdf_rule_result_get_role;
*xccdf_rule_result_get_weight = *openscap_pmc::xccdf_rule_result_get_weight;
*xccdf_rule_result_get_severity = *openscap_pmc::xccdf_rule_result_get_severity;
*xccdf_rule_result_get_result = *openscap_pmc::xccdf_rule_result_get_result;
*xccdf_rule_result_get_version = *openscap_pmc::xccdf_rule_result_get_version;
*xccdf_rule_result_get_idref = *openscap_pmc::xccdf_rule_result_get_idref;
*xccdf_rule_result_get_idents = *openscap_pmc::xccdf_rule_result_get_idents;
*xccdf_rule_result_get_fixes = *openscap_pmc::xccdf_rule_result_get_fixes;
*xccdf_rule_result_get_checks = *openscap_pmc::xccdf_rule_result_get_checks;
*xccdf_rule_result_get_overrides = *openscap_pmc::xccdf_rule_result_get_overrides;
*xccdf_rule_result_get_messages = *openscap_pmc::xccdf_rule_result_get_messages;
*xccdf_rule_result_get_instances = *openscap_pmc::xccdf_rule_result_get_instances;
*xccdf_identity_get_authenticated = *openscap_pmc::xccdf_identity_get_authenticated;
*xccdf_identity_get_privileged = *openscap_pmc::xccdf_identity_get_privileged;
*xccdf_identity_get_name = *openscap_pmc::xccdf_identity_get_name;
*xccdf_score_get_maximum = *openscap_pmc::xccdf_score_get_maximum;
*xccdf_score_get_score = *openscap_pmc::xccdf_score_get_score;
*xccdf_score_get_system = *openscap_pmc::xccdf_score_get_system;
*xccdf_override_get_time = *openscap_pmc::xccdf_override_get_time;
*xccdf_override_get_new_result = *openscap_pmc::xccdf_override_get_new_result;
*xccdf_override_get_old_result = *openscap_pmc::xccdf_override_get_old_result;
*xccdf_override_get_authority = *openscap_pmc::xccdf_override_get_authority;
*xccdf_override_get_remark = *openscap_pmc::xccdf_override_get_remark;
*xccdf_message_get_severity = *openscap_pmc::xccdf_message_get_severity;
*xccdf_message_get_content = *openscap_pmc::xccdf_message_get_content;
*xccdf_target_fact_get_type = *openscap_pmc::xccdf_target_fact_get_type;
*xccdf_target_fact_get_value = *openscap_pmc::xccdf_target_fact_get_value;
*xccdf_target_fact_get_name = *openscap_pmc::xccdf_target_fact_get_name;
*xccdf_target_identifier_get_xml_node = *openscap_pmc::xccdf_target_identifier_get_xml_node;
*xccdf_target_identifier_get_system = *openscap_pmc::xccdf_target_identifier_get_system;
*xccdf_target_identifier_get_href = *openscap_pmc::xccdf_target_identifier_get_href;
*xccdf_target_identifier_get_name = *openscap_pmc::xccdf_target_identifier_get_name;
*xccdf_instance_get_context = *openscap_pmc::xccdf_instance_get_context;
*xccdf_instance_get_parent_context = *openscap_pmc::xccdf_instance_get_parent_context;
*xccdf_instance_get_content = *openscap_pmc::xccdf_instance_get_content;
*xccdf_tailoring_import_source = *openscap_pmc::xccdf_tailoring_import_source;
*xccdf_tailoring_import = *openscap_pmc::xccdf_tailoring_import;
*xccdf_tailoring_get_id = *openscap_pmc::xccdf_tailoring_get_id;
*xccdf_tailoring_get_version = *openscap_pmc::xccdf_tailoring_get_version;
*xccdf_tailoring_get_version_update = *openscap_pmc::xccdf_tailoring_get_version_update;
*xccdf_tailoring_get_version_time = *openscap_pmc::xccdf_tailoring_get_version_time;
*xccdf_tailoring_get_benchmark_ref = *openscap_pmc::xccdf_tailoring_get_benchmark_ref;
*xccdf_tailoring_get_benchmark_ref_version = *openscap_pmc::xccdf_tailoring_get_benchmark_ref_version;
*xccdf_tailoring_get_metadata = *openscap_pmc::xccdf_tailoring_get_metadata;
*xccdf_tailoring_get_profiles = *openscap_pmc::xccdf_tailoring_get_profiles;
*xccdf_tailoring_get_statuses = *openscap_pmc::xccdf_tailoring_get_statuses;
*xccdf_tailoring_get_dc_statuses = *openscap_pmc::xccdf_tailoring_get_dc_statuses;
*xccdf_tailoring_get_profile_by_id = *openscap_pmc::xccdf_tailoring_get_profile_by_id;
*xccdf_item_set_weight = *openscap_pmc::xccdf_item_set_weight;
*xccdf_item_set_id = *openscap_pmc::xccdf_item_set_id;
*xccdf_item_set_cluster_id = *openscap_pmc::xccdf_item_set_cluster_id;
*xccdf_item_set_extends = *openscap_pmc::xccdf_item_set_extends;
*xccdf_item_set_version = *openscap_pmc::xccdf_item_set_version;
*xccdf_item_set_version_time = *openscap_pmc::xccdf_item_set_version_time;
*xccdf_item_set_version_update = *openscap_pmc::xccdf_item_set_version_update;
*xccdf_item_set_abstract = *openscap_pmc::xccdf_item_set_abstract;
*xccdf_item_set_hidden = *openscap_pmc::xccdf_item_set_hidden;
*xccdf_item_set_prohibit_changes = *openscap_pmc::xccdf_item_set_prohibit_changes;
*xccdf_item_set_selected = *openscap_pmc::xccdf_item_set_selected;
*xccdf_item_add_metadata = *openscap_pmc::xccdf_item_add_metadata;
*xccdf_benchmark_set_resolved = *openscap_pmc::xccdf_benchmark_set_resolved;
*xccdf_benchmark_set_style_href = *openscap_pmc::xccdf_benchmark_set_style_href;
*xccdf_benchmark_set_style = *openscap_pmc::xccdf_benchmark_set_style;
*xccdf_benchmark_set_id = *openscap_pmc::xccdf_benchmark_set_id;
*xccdf_benchmark_set_version = *openscap_pmc::xccdf_benchmark_set_version;
*xccdf_benchmark_set_version_time = *openscap_pmc::xccdf_benchmark_set_version_time;
*xccdf_benchmark_set_version_update = *openscap_pmc::xccdf_benchmark_set_version_update;
*xccdf_benchmark_set_schema_version = *openscap_pmc::xccdf_benchmark_set_schema_version;
*xccdf_benchmark_add_metadata = *openscap_pmc::xccdf_benchmark_add_metadata;
*xccdf_benchmark_set_cpe_list = *openscap_pmc::xccdf_benchmark_set_cpe_list;
*xccdf_benchmark_set_cpe_lang_model = *openscap_pmc::xccdf_benchmark_set_cpe_lang_model;
*xccdf_profile_set_note_tag = *openscap_pmc::xccdf_profile_set_note_tag;
*xccdf_profile_set_id = *openscap_pmc::xccdf_profile_set_id;
*xccdf_profile_set_abstract = *openscap_pmc::xccdf_profile_set_abstract;
*xccdf_profile_set_prohibit_changes = *openscap_pmc::xccdf_profile_set_prohibit_changes;
*xccdf_profile_set_extends = *openscap_pmc::xccdf_profile_set_extends;
*xccdf_profile_set_version = *openscap_pmc::xccdf_profile_set_version;
*xccdf_profile_set_version_time = *openscap_pmc::xccdf_profile_set_version_time;
*xccdf_profile_set_version_update = *openscap_pmc::xccdf_profile_set_version_update;
*xccdf_profile_set_tailoring = *openscap_pmc::xccdf_profile_set_tailoring;
*xccdf_profile_add_metadata = *openscap_pmc::xccdf_profile_add_metadata;
*xccdf_rule_set_id = *openscap_pmc::xccdf_rule_set_id;
*xccdf_rule_set_cluster_id = *openscap_pmc::xccdf_rule_set_cluster_id;
*xccdf_rule_set_extends = *openscap_pmc::xccdf_rule_set_extends;
*xccdf_rule_set_version = *openscap_pmc::xccdf_rule_set_version;
*xccdf_rule_set_version_time = *openscap_pmc::xccdf_rule_set_version_time;
*xccdf_rule_set_version_update = *openscap_pmc::xccdf_rule_set_version_update;
*xccdf_rule_set_abstract = *openscap_pmc::xccdf_rule_set_abstract;
*xccdf_rule_set_hidden = *openscap_pmc::xccdf_rule_set_hidden;
*xccdf_rule_set_prohibit_changes = *openscap_pmc::xccdf_rule_set_prohibit_changes;
*xccdf_rule_set_selected = *openscap_pmc::xccdf_rule_set_selected;
*xccdf_rule_set_multiple = *openscap_pmc::xccdf_rule_set_multiple;
*xccdf_rule_set_impact_metric = *openscap_pmc::xccdf_rule_set_impact_metric;
*xccdf_rule_set_role = *openscap_pmc::xccdf_rule_set_role;
*xccdf_rule_set_severity = *openscap_pmc::xccdf_rule_set_severity;
*xccdf_rule_add_metadata = *openscap_pmc::xccdf_rule_add_metadata;
*xccdf_group_set_id = *openscap_pmc::xccdf_group_set_id;
*xccdf_group_set_cluster_id = *openscap_pmc::xccdf_group_set_cluster_id;
*xccdf_group_set_extends = *openscap_pmc::xccdf_group_set_extends;
*xccdf_group_set_version = *openscap_pmc::xccdf_group_set_version;
*xccdf_group_set_version_time = *openscap_pmc::xccdf_group_set_version_time;
*xccdf_group_set_version_update = *openscap_pmc::xccdf_group_set_version_update;
*xccdf_group_set_abstract = *openscap_pmc::xccdf_group_set_abstract;
*xccdf_group_set_hidden = *openscap_pmc::xccdf_group_set_hidden;
*xccdf_group_set_prohibit_changes = *openscap_pmc::xccdf_group_set_prohibit_changes;
*xccdf_group_set_selected = *openscap_pmc::xccdf_group_set_selected;
*xccdf_group_add_metadata = *openscap_pmc::xccdf_group_add_metadata;
*xccdf_value_set_id = *openscap_pmc::xccdf_value_set_id;
*xccdf_value_set_cluster_id = *openscap_pmc::xccdf_value_set_cluster_id;
*xccdf_value_set_extends = *openscap_pmc::xccdf_value_set_extends;
*xccdf_value_set_version = *openscap_pmc::xccdf_value_set_version;
*xccdf_value_set_version_time = *openscap_pmc::xccdf_value_set_version_time;
*xccdf_value_set_version_update = *openscap_pmc::xccdf_value_set_version_update;
*xccdf_value_set_abstract = *openscap_pmc::xccdf_value_set_abstract;
*xccdf_value_set_hidden = *openscap_pmc::xccdf_value_set_hidden;
*xccdf_value_set_multiple = *openscap_pmc::xccdf_value_set_multiple;
*xccdf_value_set_prohibit_changes = *openscap_pmc::xccdf_value_set_prohibit_changes;
*xccdf_value_set_oper = *openscap_pmc::xccdf_value_set_oper;
*xccdf_value_set_interactive = *openscap_pmc::xccdf_value_set_interactive;
*xccdf_value_add_metadata = *openscap_pmc::xccdf_value_add_metadata;
*xccdf_status_set_date = *openscap_pmc::xccdf_status_set_date;
*xccdf_status_set_status = *openscap_pmc::xccdf_status_set_status;
*xccdf_notice_set_id = *openscap_pmc::xccdf_notice_set_id;
*xccdf_notice_set_text = *openscap_pmc::xccdf_notice_set_text;
*xccdf_model_set_system = *openscap_pmc::xccdf_model_set_system;
*xccdf_check_set_id = *openscap_pmc::xccdf_check_set_id;
*xccdf_check_set_system = *openscap_pmc::xccdf_check_set_system;
*xccdf_check_set_selector = *openscap_pmc::xccdf_check_set_selector;
*xccdf_check_set_content = *openscap_pmc::xccdf_check_set_content;
*xccdf_check_set_oper = *openscap_pmc::xccdf_check_set_oper;
*xccdf_check_set_multicheck = *openscap_pmc::xccdf_check_set_multicheck;
*xccdf_check_set_negate = *openscap_pmc::xccdf_check_set_negate;
*xccdf_check_content_ref_set_name = *openscap_pmc::xccdf_check_content_ref_set_name;
*xccdf_check_content_ref_set_href = *openscap_pmc::xccdf_check_content_ref_set_href;
*xccdf_profile_note_set_reftag = *openscap_pmc::xccdf_profile_note_set_reftag;
*xccdf_profile_note_set_text = *openscap_pmc::xccdf_profile_note_set_text;
*xccdf_check_import_set_name = *openscap_pmc::xccdf_check_import_set_name;
*xccdf_check_import_set_xpath = *openscap_pmc::xccdf_check_import_set_xpath;
*xccdf_check_import_set_content = *openscap_pmc::xccdf_check_import_set_content;
*xccdf_check_export_set_name = *openscap_pmc::xccdf_check_export_set_name;
*xccdf_check_export_set_value = *openscap_pmc::xccdf_check_export_set_value;
*xccdf_fix_set_strategy = *openscap_pmc::xccdf_fix_set_strategy;
*xccdf_fix_set_disruption = *openscap_pmc::xccdf_fix_set_disruption;
*xccdf_fix_set_complexity = *openscap_pmc::xccdf_fix_set_complexity;
*xccdf_fix_set_reboot = *openscap_pmc::xccdf_fix_set_reboot;
*xccdf_fix_set_content = *openscap_pmc::xccdf_fix_set_content;
*xccdf_fix_set_system = *openscap_pmc::xccdf_fix_set_system;
*xccdf_fix_set_platform = *openscap_pmc::xccdf_fix_set_platform;
*xccdf_fix_set_id = *openscap_pmc::xccdf_fix_set_id;
*xccdf_fixtext_set_strategy = *openscap_pmc::xccdf_fixtext_set_strategy;
*xccdf_fixtext_set_disruption = *openscap_pmc::xccdf_fixtext_set_disruption;
*xccdf_fixtext_set_complexity = *openscap_pmc::xccdf_fixtext_set_complexity;
*xccdf_fixtext_set_reboot = *openscap_pmc::xccdf_fixtext_set_reboot;
*xccdf_fixtext_set_text = *openscap_pmc::xccdf_fixtext_set_text;
*xccdf_fixtext_set_fixref = *openscap_pmc::xccdf_fixtext_set_fixref;
*xccdf_select_set_item = *openscap_pmc::xccdf_select_set_item;
*xccdf_select_set_selected = *openscap_pmc::xccdf_select_set_selected;
*xccdf_warning_set_category = *openscap_pmc::xccdf_warning_set_category;
*xccdf_warning_set_text = *openscap_pmc::xccdf_warning_set_text;
*xccdf_refine_rule_new = *openscap_pmc::xccdf_refine_rule_new;
*xccdf_refine_rule_clone = *openscap_pmc::xccdf_refine_rule_clone;
*xccdf_refine_rule_set_item = *openscap_pmc::xccdf_refine_rule_set_item;
*xccdf_refine_rule_set_selector = *openscap_pmc::xccdf_refine_rule_set_selector;
*xccdf_refine_rule_set_role = *openscap_pmc::xccdf_refine_rule_set_role;
*xccdf_refine_rule_set_severity = *openscap_pmc::xccdf_refine_rule_set_severity;
*xccdf_refine_rule_set_weight = *openscap_pmc::xccdf_refine_rule_set_weight;
*xccdf_refine_value_new = *openscap_pmc::xccdf_refine_value_new;
*xccdf_refine_value_clone = *openscap_pmc::xccdf_refine_value_clone;
*xccdf_refine_value_set_item = *openscap_pmc::xccdf_refine_value_set_item;
*xccdf_refine_value_set_selector = *openscap_pmc::xccdf_refine_value_set_selector;
*xccdf_refine_value_set_oper = *openscap_pmc::xccdf_refine_value_set_oper;
*xccdf_setvalue_new = *openscap_pmc::xccdf_setvalue_new;
*xccdf_setvalue_clone = *openscap_pmc::xccdf_setvalue_clone;
*xccdf_setvalue_set_item = *openscap_pmc::xccdf_setvalue_set_item;
*xccdf_setvalue_set_value = *openscap_pmc::xccdf_setvalue_set_value;
*xccdf_plain_text_set_id = *openscap_pmc::xccdf_plain_text_set_id;
*xccdf_plain_text_set_text = *openscap_pmc::xccdf_plain_text_set_text;
*xccdf_result_set_id = *openscap_pmc::xccdf_result_set_id;
*xccdf_result_set_test_system = *openscap_pmc::xccdf_result_set_test_system;
*xccdf_result_set_benchmark_uri = *openscap_pmc::xccdf_result_set_benchmark_uri;
*xccdf_result_set_profile = *openscap_pmc::xccdf_result_set_profile;
*xccdf_result_set_start_time = *openscap_pmc::xccdf_result_set_start_time;
*xccdf_result_set_end_time = *openscap_pmc::xccdf_result_set_end_time;
*xccdf_result_set_version = *openscap_pmc::xccdf_result_set_version;
*xccdf_result_add_metadata = *openscap_pmc::xccdf_result_add_metadata;
*xccdf_rule_result_set_time = *openscap_pmc::xccdf_rule_result_set_time;
*xccdf_rule_result_set_role = *openscap_pmc::xccdf_rule_result_set_role;
*xccdf_rule_result_set_weight = *openscap_pmc::xccdf_rule_result_set_weight;
*xccdf_rule_result_set_severity = *openscap_pmc::xccdf_rule_result_set_severity;
*xccdf_rule_result_set_result = *openscap_pmc::xccdf_rule_result_set_result;
*xccdf_rule_result_set_version = *openscap_pmc::xccdf_rule_result_set_version;
*xccdf_rule_result_set_idref = *openscap_pmc::xccdf_rule_result_set_idref;
*xccdf_identity_set_authenticated = *openscap_pmc::xccdf_identity_set_authenticated;
*xccdf_identity_set_privileged = *openscap_pmc::xccdf_identity_set_privileged;
*xccdf_identity_set_name = *openscap_pmc::xccdf_identity_set_name;
*xccdf_score_set_maximum = *openscap_pmc::xccdf_score_set_maximum;
*xccdf_score_set_score = *openscap_pmc::xccdf_score_set_score;
*xccdf_score_set_system = *openscap_pmc::xccdf_score_set_system;
*xccdf_override_set_time = *openscap_pmc::xccdf_override_set_time;
*xccdf_override_set_new_result = *openscap_pmc::xccdf_override_set_new_result;
*xccdf_override_set_old_result = *openscap_pmc::xccdf_override_set_old_result;
*xccdf_override_set_authority = *openscap_pmc::xccdf_override_set_authority;
*xccdf_override_set_remark = *openscap_pmc::xccdf_override_set_remark;
*xccdf_message_set_severity = *openscap_pmc::xccdf_message_set_severity;
*xccdf_message_set_content = *openscap_pmc::xccdf_message_set_content;
*xccdf_target_fact_set_string = *openscap_pmc::xccdf_target_fact_set_string;
*xccdf_target_fact_set_number = *openscap_pmc::xccdf_target_fact_set_number;
*xccdf_target_fact_set_boolean = *openscap_pmc::xccdf_target_fact_set_boolean;
*xccdf_target_fact_set_name = *openscap_pmc::xccdf_target_fact_set_name;
*xccdf_target_identifier_set_xml_node = *openscap_pmc::xccdf_target_identifier_set_xml_node;
*xccdf_target_identifier_set_system = *openscap_pmc::xccdf_target_identifier_set_system;
*xccdf_target_identifier_set_href = *openscap_pmc::xccdf_target_identifier_set_href;
*xccdf_target_identifier_set_name = *openscap_pmc::xccdf_target_identifier_set_name;
*xccdf_instance_set_context = *openscap_pmc::xccdf_instance_set_context;
*xccdf_instance_set_parent_context = *openscap_pmc::xccdf_instance_set_parent_context;
*xccdf_instance_set_content = *openscap_pmc::xccdf_instance_set_content;
*xccdf_tailoring_set_id = *openscap_pmc::xccdf_tailoring_set_id;
*xccdf_tailoring_set_version = *openscap_pmc::xccdf_tailoring_set_version;
*xccdf_tailoring_set_version_update = *openscap_pmc::xccdf_tailoring_set_version_update;
*xccdf_tailoring_set_version_time = *openscap_pmc::xccdf_tailoring_set_version_time;
*xccdf_tailoring_set_benchmark_ref = *openscap_pmc::xccdf_tailoring_set_benchmark_ref;
*xccdf_tailoring_set_benchmark_ref_version = *openscap_pmc::xccdf_tailoring_set_benchmark_ref_version;
*xccdf_tailoring_add_profile = *openscap_pmc::xccdf_tailoring_add_profile;
*xccdf_tailoring_remove_profile = *openscap_pmc::xccdf_tailoring_remove_profile;
*xccdf_tailoring_resolve = *openscap_pmc::xccdf_tailoring_resolve;
*xccdf_ident_set_id = *openscap_pmc::xccdf_ident_set_id;
*xccdf_ident_set_system = *openscap_pmc::xccdf_ident_set_system;
*xccdf_benchmark_add_result = *openscap_pmc::xccdf_benchmark_add_result;
*xccdf_benchmark_add_description = *openscap_pmc::xccdf_benchmark_add_description;
*xccdf_benchmark_add_platform = *openscap_pmc::xccdf_benchmark_add_platform;
*xccdf_benchmark_add_reference = *openscap_pmc::xccdf_benchmark_add_reference;
*xccdf_benchmark_add_status = *openscap_pmc::xccdf_benchmark_add_status;
*xccdf_benchmark_add_dc_status = *openscap_pmc::xccdf_benchmark_add_dc_status;
*xccdf_benchmark_add_title = *openscap_pmc::xccdf_benchmark_add_title;
*xccdf_benchmark_add_front_matter = *openscap_pmc::xccdf_benchmark_add_front_matter;
*xccdf_benchmark_add_model = *openscap_pmc::xccdf_benchmark_add_model;
*xccdf_benchmark_add_notice = *openscap_pmc::xccdf_benchmark_add_notice;
*xccdf_benchmark_add_plain_text = *openscap_pmc::xccdf_benchmark_add_plain_text;
*xccdf_benchmark_add_profile = *openscap_pmc::xccdf_benchmark_add_profile;
*xccdf_benchmark_add_rear_matter = *openscap_pmc::xccdf_benchmark_add_rear_matter;
*xccdf_benchmark_add_rule = *openscap_pmc::xccdf_benchmark_add_rule;
*xccdf_benchmark_add_group = *openscap_pmc::xccdf_benchmark_add_group;
*xccdf_benchmark_add_value = *openscap_pmc::xccdf_benchmark_add_value;
*xccdf_benchmark_add_content = *openscap_pmc::xccdf_benchmark_add_content;
*xccdf_profile_add_select = *openscap_pmc::xccdf_profile_add_select;
*xccdf_profile_add_setvalue = *openscap_pmc::xccdf_profile_add_setvalue;
*xccdf_profile_add_refine_value = *openscap_pmc::xccdf_profile_add_refine_value;
*xccdf_profile_add_refine_rule = *openscap_pmc::xccdf_profile_add_refine_rule;
*xccdf_profile_add_description = *openscap_pmc::xccdf_profile_add_description;
*xccdf_profile_add_platform = *openscap_pmc::xccdf_profile_add_platform;
*xccdf_profile_add_reference = *openscap_pmc::xccdf_profile_add_reference;
*xccdf_profile_add_status = *openscap_pmc::xccdf_profile_add_status;
*xccdf_profile_add_dc_status = *openscap_pmc::xccdf_profile_add_dc_status;
*xccdf_profile_add_title = *openscap_pmc::xccdf_profile_add_title;
*xccdf_rule_add_description = *openscap_pmc::xccdf_rule_add_description;
*xccdf_rule_add_platform = *openscap_pmc::xccdf_rule_add_platform;
*xccdf_rule_add_question = *openscap_pmc::xccdf_rule_add_question;
*xccdf_rule_add_rationale = *openscap_pmc::xccdf_rule_add_rationale;
*xccdf_rule_add_reference = *openscap_pmc::xccdf_rule_add_reference;
*xccdf_rule_add_status = *openscap_pmc::xccdf_rule_add_status;
*xccdf_rule_add_dc_status = *openscap_pmc::xccdf_rule_add_dc_status;
*xccdf_rule_add_title = *openscap_pmc::xccdf_rule_add_title;
*xccdf_rule_add_warning = *openscap_pmc::xccdf_rule_add_warning;
*xccdf_rule_add_ident = *openscap_pmc::xccdf_rule_add_ident;
*xccdf_rule_add_check = *openscap_pmc::xccdf_rule_add_check;
*xccdf_rule_add_profile_note = *openscap_pmc::xccdf_rule_add_profile_note;
*xccdf_rule_add_fix = *openscap_pmc::xccdf_rule_add_fix;
*xccdf_rule_add_fixtext = *openscap_pmc::xccdf_rule_add_fixtext;
*xccdf_group_add_description = *openscap_pmc::xccdf_group_add_description;
*xccdf_group_add_platform = *openscap_pmc::xccdf_group_add_platform;
*xccdf_group_add_question = *openscap_pmc::xccdf_group_add_question;
*xccdf_group_add_rationale = *openscap_pmc::xccdf_group_add_rationale;
*xccdf_group_add_reference = *openscap_pmc::xccdf_group_add_reference;
*xccdf_group_add_status = *openscap_pmc::xccdf_group_add_status;
*xccdf_group_add_dc_status = *openscap_pmc::xccdf_group_add_dc_status;
*xccdf_group_add_title = *openscap_pmc::xccdf_group_add_title;
*xccdf_group_add_warning = *openscap_pmc::xccdf_group_add_warning;
*xccdf_group_add_rule = *openscap_pmc::xccdf_group_add_rule;
*xccdf_group_add_group = *openscap_pmc::xccdf_group_add_group;
*xccdf_group_add_value = *openscap_pmc::xccdf_group_add_value;
*xccdf_group_add_content = *openscap_pmc::xccdf_group_add_content;
*xccdf_value_add_description = *openscap_pmc::xccdf_value_add_description;
*xccdf_value_add_question = *openscap_pmc::xccdf_value_add_question;
*xccdf_value_add_reference = *openscap_pmc::xccdf_value_add_reference;
*xccdf_value_add_status = *openscap_pmc::xccdf_value_add_status;
*xccdf_value_add_dc_status = *openscap_pmc::xccdf_value_add_dc_status;
*xccdf_value_add_title = *openscap_pmc::xccdf_value_add_title;
*xccdf_value_add_warning = *openscap_pmc::xccdf_value_add_warning;
*xccdf_check_add_import = *openscap_pmc::xccdf_check_add_import;
*xccdf_check_add_export = *openscap_pmc::xccdf_check_add_export;
*xccdf_check_add_content_ref = *openscap_pmc::xccdf_check_add_content_ref;
*xccdf_check_add_child = *openscap_pmc::xccdf_check_add_child;
*xccdf_select_add_remark = *openscap_pmc::xccdf_select_add_remark;
*xccdf_refine_value_add_remark = *openscap_pmc::xccdf_refine_value_add_remark;
*xccdf_result_add_rule_result = *openscap_pmc::xccdf_result_add_rule_result;
*xccdf_result_add_setvalue = *openscap_pmc::xccdf_result_add_setvalue;
*xccdf_result_add_target_fact = *openscap_pmc::xccdf_result_add_target_fact;
*xccdf_result_add_target_identifier = *openscap_pmc::xccdf_result_add_target_identifier;
*xccdf_result_add_applicable_platform = *openscap_pmc::xccdf_result_add_applicable_platform;
*xccdf_result_add_remark = *openscap_pmc::xccdf_result_add_remark;
*xccdf_result_add_organization = *openscap_pmc::xccdf_result_add_organization;
*xccdf_result_add_target = *openscap_pmc::xccdf_result_add_target;
*xccdf_result_add_identity = *openscap_pmc::xccdf_result_add_identity;
*xccdf_result_add_score = *openscap_pmc::xccdf_result_add_score;
*xccdf_result_add_title = *openscap_pmc::xccdf_result_add_title;
*xccdf_result_add_target_address = *openscap_pmc::xccdf_result_add_target_address;
*xccdf_result_recalculate_scores = *openscap_pmc::xccdf_result_recalculate_scores;
*xccdf_rule_result_add_ident = *openscap_pmc::xccdf_rule_result_add_ident;
*xccdf_rule_result_add_fix = *openscap_pmc::xccdf_rule_result_add_fix;
*xccdf_rule_result_add_check = *openscap_pmc::xccdf_rule_result_add_check;
*xccdf_rule_result_add_override = *openscap_pmc::xccdf_rule_result_add_override;
*xccdf_rule_result_add_message = *openscap_pmc::xccdf_rule_result_add_message;
*xccdf_rule_result_add_instance = *openscap_pmc::xccdf_rule_result_add_instance;
*xccdf_item_add_description = *openscap_pmc::xccdf_item_add_description;
*xccdf_item_add_platform = *openscap_pmc::xccdf_item_add_platform;
*xccdf_item_add_question = *openscap_pmc::xccdf_item_add_question;
*xccdf_item_add_rationale = *openscap_pmc::xccdf_item_add_rationale;
*xccdf_item_add_reference = *openscap_pmc::xccdf_item_add_reference;
*xccdf_item_add_dc_status = *openscap_pmc::xccdf_item_add_dc_status;
*xccdf_item_add_status = *openscap_pmc::xccdf_item_add_status;
*xccdf_item_add_title = *openscap_pmc::xccdf_item_add_title;
*xccdf_item_add_warning = *openscap_pmc::xccdf_item_add_warning;
*xccdf_refine_rule_add_remark = *openscap_pmc::xccdf_refine_rule_add_remark;
*xccdf_rule_add_requires = *openscap_pmc::xccdf_rule_add_requires;
*xccdf_group_add_requires = *openscap_pmc::xccdf_group_add_requires;
*xccdf_item_add_requires = *openscap_pmc::xccdf_item_add_requires;
*xccdf_rule_add_conflicts = *openscap_pmc::xccdf_rule_add_conflicts;
*xccdf_group_add_conflicts = *openscap_pmc::xccdf_group_add_conflicts;
*xccdf_item_add_conflicts = *openscap_pmc::xccdf_item_add_conflicts;
*xccdf_notice_iterator_remove = *openscap_pmc::xccdf_notice_iterator_remove;
*xccdf_model_iterator_remove = *openscap_pmc::xccdf_model_iterator_remove;
*xccdf_profile_iterator_remove = *openscap_pmc::xccdf_profile_iterator_remove;
*xccdf_item_iterator_remove = *openscap_pmc::xccdf_item_iterator_remove;
*xccdf_status_iterator_remove = *openscap_pmc::xccdf_status_iterator_remove;
*xccdf_profile_note_iterator_remove = *openscap_pmc::xccdf_profile_note_iterator_remove;
*xccdf_refine_value_iterator_remove = *openscap_pmc::xccdf_refine_value_iterator_remove;
*xccdf_refine_rule_iterator_remove = *openscap_pmc::xccdf_refine_rule_iterator_remove;
*xccdf_setvalue_iterator_remove = *openscap_pmc::xccdf_setvalue_iterator_remove;
*xccdf_select_iterator_remove = *openscap_pmc::xccdf_select_iterator_remove;
*xccdf_ident_iterator_remove = *openscap_pmc::xccdf_ident_iterator_remove;
*xccdf_check_content_ref_iterator_remove = *openscap_pmc::xccdf_check_content_ref_iterator_remove;
*xccdf_check_export_iterator_remove = *openscap_pmc::xccdf_check_export_iterator_remove;
*xccdf_check_import_iterator_remove = *openscap_pmc::xccdf_check_import_iterator_remove;
*xccdf_check_iterator_remove = *openscap_pmc::xccdf_check_iterator_remove;
*xccdf_fixtext_iterator_remove = *openscap_pmc::xccdf_fixtext_iterator_remove;
*xccdf_fix_iterator_remove = *openscap_pmc::xccdf_fix_iterator_remove;
*xccdf_value_iterator_remove = *openscap_pmc::xccdf_value_iterator_remove;
*xccdf_plain_text_iterator_remove = *openscap_pmc::xccdf_plain_text_iterator_remove;
*xccdf_warning_iterator_remove = *openscap_pmc::xccdf_warning_iterator_remove;
*xccdf_result_iterator_remove = *openscap_pmc::xccdf_result_iterator_remove;
*xccdf_override_iterator_remove = *openscap_pmc::xccdf_override_iterator_remove;
*xccdf_message_iterator_remove = *openscap_pmc::xccdf_message_iterator_remove;
*xccdf_instance_iterator_remove = *openscap_pmc::xccdf_instance_iterator_remove;
*xccdf_rule_result_iterator_remove = *openscap_pmc::xccdf_rule_result_iterator_remove;
*xccdf_identity_iterator_remove = *openscap_pmc::xccdf_identity_iterator_remove;
*xccdf_score_iterator_remove = *openscap_pmc::xccdf_score_iterator_remove;
*xccdf_target_fact_iterator_remove = *openscap_pmc::xccdf_target_fact_iterator_remove;
*xccdf_target_identifier_iterator_remove = *openscap_pmc::xccdf_target_identifier_iterator_remove;
*xccdf_value_instance_iterator_remove = *openscap_pmc::xccdf_value_instance_iterator_remove;
*oscap_text_xccdf_substitute = *openscap_pmc::oscap_text_xccdf_substitute;
*xccdf_session_new = *openscap_pmc::xccdf_session_new;
*xccdf_session_free = *openscap_pmc::xccdf_session_free;
*xccdf_session_get_filename = *openscap_pmc::xccdf_session_get_filename;
*xccdf_session_is_sds = *openscap_pmc::xccdf_session_is_sds;
*xccdf_session_set_validation = *openscap_pmc::xccdf_session_set_validation;
*xccdf_session_set_datastream_id = *openscap_pmc::xccdf_session_set_datastream_id;
*xccdf_session_get_datastream_id = *openscap_pmc::xccdf_session_get_datastream_id;
*xccdf_session_set_component_id = *openscap_pmc::xccdf_session_set_component_id;
*xccdf_session_get_component_id = *openscap_pmc::xccdf_session_get_component_id;
*xccdf_session_set_benchmark_id = *openscap_pmc::xccdf_session_set_benchmark_id;
*xccdf_session_get_benchmark_id = *openscap_pmc::xccdf_session_get_benchmark_id;
*xccdf_session_set_user_cpe = *openscap_pmc::xccdf_session_set_user_cpe;
*xccdf_session_set_user_tailoring_file = *openscap_pmc::xccdf_session_set_user_tailoring_file;
*xccdf_session_set_user_tailoring_cid = *openscap_pmc::xccdf_session_set_user_tailoring_cid;
*xccdf_session_set_remote_resources = *openscap_pmc::xccdf_session_set_remote_resources;
*xccdf_session_set_custom_oval_files = *openscap_pmc::xccdf_session_set_custom_oval_files;
*xccdf_session_set_custom_oval_eval_fn = *openscap_pmc::xccdf_session_set_custom_oval_eval_fn;
*xccdf_session_set_product_cpe = *openscap_pmc::xccdf_session_set_product_cpe;
*xccdf_session_set_oval_results_export = *openscap_pmc::xccdf_session_set_oval_results_export;
*xccdf_session_set_check_engine_plugins_results_export = *openscap_pmc::xccdf_session_set_check_engine_plugins_results_export;
*xccdf_session_set_sce_results_export = *openscap_pmc::xccdf_session_set_sce_results_export;
*xccdf_session_set_oval_variables_export = *openscap_pmc::xccdf_session_set_oval_variables_export;
*xccdf_session_set_xccdf_export = *openscap_pmc::xccdf_session_set_xccdf_export;
*xccdf_session_set_arf_export = *openscap_pmc::xccdf_session_set_arf_export;
*xccdf_session_set_report_export = *openscap_pmc::xccdf_session_set_report_export;
*xccdf_session_set_profile_id = *openscap_pmc::xccdf_session_set_profile_id;
*xccdf_session_get_profile_id = *openscap_pmc::xccdf_session_get_profile_id;
*xccdf_session_get_sds_idx = *openscap_pmc::xccdf_session_get_sds_idx;
*xccdf_session_load = *openscap_pmc::xccdf_session_load;
*xccdf_session_load_xccdf = *openscap_pmc::xccdf_session_load_xccdf;
*xccdf_session_load_cpe = *openscap_pmc::xccdf_session_load_cpe;
*xccdf_session_load_oval = *openscap_pmc::xccdf_session_load_oval;
*xccdf_session_load_check_engine_plugin = *openscap_pmc::xccdf_session_load_check_engine_plugin;
*xccdf_session_load_check_engine_plugins = *openscap_pmc::xccdf_session_load_check_engine_plugins;
*xccdf_session_load_sce = *openscap_pmc::xccdf_session_load_sce;
*xccdf_session_load_tailoring = *openscap_pmc::xccdf_session_load_tailoring;
*xccdf_session_evaluate = *openscap_pmc::xccdf_session_evaluate;
*xccdf_session_export_xccdf = *openscap_pmc::xccdf_session_export_xccdf;
*xccdf_session_export_oval = *openscap_pmc::xccdf_session_export_oval;
*xccdf_session_export_check_engine_plugins = *openscap_pmc::xccdf_session_export_check_engine_plugins;
*xccdf_session_export_sce = *openscap_pmc::xccdf_session_export_sce;
*xccdf_session_export_arf = *openscap_pmc::xccdf_session_export_arf;
*xccdf_session_get_policy_model = *openscap_pmc::xccdf_session_get_policy_model;
*xccdf_session_get_xccdf_policy = *openscap_pmc::xccdf_session_get_xccdf_policy;
*xccdf_session_get_base_score = *openscap_pmc::xccdf_session_get_base_score;
*xccdf_session_get_oval_agents_count = *openscap_pmc::xccdf_session_get_oval_agents_count;
*xccdf_session_get_cpe_oval_agents_count = *openscap_pmc::xccdf_session_get_cpe_oval_agents_count;
*xccdf_session_contains_fail_result = *openscap_pmc::xccdf_session_contains_fail_result;
*xccdf_session_remediate = *openscap_pmc::xccdf_session_remediate;
*xccdf_session_build_policy_from_testresult = *openscap_pmc::xccdf_session_build_policy_from_testresult;
*xccdf_policy_model_new = *openscap_pmc::xccdf_policy_model_new;
*xccdf_policy_new = *openscap_pmc::xccdf_policy_new;
*xccdf_value_binding_new = *openscap_pmc::xccdf_value_binding_new;
*xccdf_policy_model_free = *openscap_pmc::xccdf_policy_model_free;
*xccdf_policy_free = *openscap_pmc::xccdf_policy_free;
*xccdf_value_binding_free = *openscap_pmc::xccdf_value_binding_free;
*xccdf_policy_model_set_tailoring = *openscap_pmc::xccdf_policy_model_set_tailoring;
*xccdf_policy_model_get_tailoring = *openscap_pmc::xccdf_policy_model_get_tailoring;
*xccdf_policy_get_readable_item_title = *openscap_pmc::xccdf_policy_get_readable_item_title;
*xccdf_policy_get_readable_item_description = *openscap_pmc::xccdf_policy_get_readable_item_description;
*xccdf_policy_model_add_cpe_dict_source = *openscap_pmc::xccdf_policy_model_add_cpe_dict_source;
*xccdf_policy_model_add_cpe_dict = *openscap_pmc::xccdf_policy_model_add_cpe_dict;
*xccdf_policy_model_add_cpe_lang_model_source = *openscap_pmc::xccdf_policy_model_add_cpe_lang_model_source;
*xccdf_policy_model_add_cpe_lang_model = *openscap_pmc::xccdf_policy_model_add_cpe_lang_model;
*xccdf_policy_model_add_cpe_autodetect_source = *openscap_pmc::xccdf_policy_model_add_cpe_autodetect_source;
*xccdf_policy_model_add_cpe_autodetect = *openscap_pmc::xccdf_policy_model_add_cpe_autodetect;
*xccdf_policy_model_get_cpe_oval_sessions = *openscap_pmc::xccdf_policy_model_get_cpe_oval_sessions;
*xccdf_policy_model_register_engine_callback = *openscap_pmc::xccdf_policy_model_register_engine_callback;
*xccdf_policy_model_register_engine_and_query_callback = *openscap_pmc::xccdf_policy_model_register_engine_and_query_callback;
*xccdf_policy_model_register_output_callback = *openscap_pmc::xccdf_policy_model_register_output_callback;
*xccdf_policy_model_register_start_callback = *openscap_pmc::xccdf_policy_model_register_start_callback;
*xccdf_policy_get_model = *openscap_pmc::xccdf_policy_get_model;
*xccdf_policy_model_get_benchmark = *openscap_pmc::xccdf_policy_model_get_benchmark;
*xccdf_policy_get_values = *openscap_pmc::xccdf_policy_get_values;
*xccdf_policy_model_get_policies = *openscap_pmc::xccdf_policy_model_get_policies;
*xccdf_policy_get_selected_rules = *openscap_pmc::xccdf_policy_get_selected_rules;
*xccdf_policy_get_profile = *openscap_pmc::xccdf_policy_get_profile;
*xccdf_policy_get_selects = *openscap_pmc::xccdf_policy_get_selects;
*xccdf_value_binding_get_name = *openscap_pmc::xccdf_value_binding_get_name;
*xccdf_value_binding_get_value = *openscap_pmc::xccdf_value_binding_get_value;
*xccdf_value_binding_get_type = *openscap_pmc::xccdf_value_binding_get_type;
*xccdf_value_binding_get_operator = *openscap_pmc::xccdf_value_binding_get_operator;
*xccdf_value_binding_get_setvalue = *openscap_pmc::xccdf_value_binding_get_setvalue;
*xccdf_policy_get_results = *openscap_pmc::xccdf_policy_get_results;
*xccdf_policy_get_result_by_id = *openscap_pmc::xccdf_policy_get_result_by_id;
*xccdf_policy_get_id = *openscap_pmc::xccdf_policy_get_id;
*xccdf_policy_model_get_policy_by_id = *openscap_pmc::xccdf_policy_model_get_policy_by_id;
*xccdf_policy_model_add_policy = *openscap_pmc::xccdf_policy_model_add_policy;
*xccdf_policy_add_select = *openscap_pmc::xccdf_policy_add_select;
*xccdf_policy_set_selected = *openscap_pmc::xccdf_policy_set_selected;
*xccdf_policy_add_result = *openscap_pmc::xccdf_policy_add_result;
*xccdf_policy_add_value = *openscap_pmc::xccdf_policy_add_value;
*xccdf_policy_is_item_selected = *openscap_pmc::xccdf_policy_is_item_selected;
*xccdf_policy_get_selected_rules_count = *openscap_pmc::xccdf_policy_get_selected_rules_count;
*xccdf_policy_get_select_by_id = *openscap_pmc::xccdf_policy_get_select_by_id;
*xccdf_policy_evaluate = *openscap_pmc::xccdf_policy_evaluate;
*xccdf_policy_resolve = *openscap_pmc::xccdf_policy_resolve;
*xccdf_policy_generate_fix = *openscap_pmc::xccdf_policy_generate_fix;
*xccdf_policy_tailor_item = *openscap_pmc::xccdf_policy_tailor_item;
*oscap_file_entry_new = *openscap_pmc::oscap_file_entry_new;
*oscap_file_entry_dup = *openscap_pmc::oscap_file_entry_dup;
*oscap_file_entry_free = *openscap_pmc::oscap_file_entry_free;
*oscap_file_entry_get_system = *openscap_pmc::oscap_file_entry_get_system;
*oscap_file_entry_get_file = *openscap_pmc::oscap_file_entry_get_file;
*oscap_file_entry_iterator_next = *openscap_pmc::oscap_file_entry_iterator_next;
*oscap_file_entry_iterator_has_more = *openscap_pmc::oscap_file_entry_iterator_has_more;
*oscap_file_entry_iterator_free = *openscap_pmc::oscap_file_entry_iterator_free;
*oscap_file_entry_iterator_reset = *openscap_pmc::oscap_file_entry_iterator_reset;
*oscap_file_entry_list_new = *openscap_pmc::oscap_file_entry_list_new;
*oscap_file_entry_list_free = *openscap_pmc::oscap_file_entry_list_free;
*oscap_file_entry_list_get_files = *openscap_pmc::oscap_file_entry_list_get_files;
*xccdf_policy_model_get_systems_and_files = *openscap_pmc::xccdf_policy_model_get_systems_and_files;
*xccdf_item_get_systems_and_files = *openscap_pmc::xccdf_item_get_systems_and_files;
*xccdf_policy_model_get_files = *openscap_pmc::xccdf_policy_model_get_files;
*xccdf_item_get_files = *openscap_pmc::xccdf_item_get_files;
*xccdf_test_result_resolve_and_operation = *openscap_pmc::xccdf_test_result_resolve_and_operation;
*xccdf_policy_iterator_has_more = *openscap_pmc::xccdf_policy_iterator_has_more;
*xccdf_policy_iterator_next = *openscap_pmc::xccdf_policy_iterator_next;
*xccdf_policy_iterator_free = *openscap_pmc::xccdf_policy_iterator_free;
*xccdf_policy_iterator_reset = *openscap_pmc::xccdf_policy_iterator_reset;
*xccdf_value_binding_iterator_has_more = *openscap_pmc::xccdf_value_binding_iterator_has_more;
*xccdf_value_binding_iterator_next = *openscap_pmc::xccdf_value_binding_iterator_next;
*xccdf_value_binding_iterator_free = *openscap_pmc::xccdf_value_binding_iterator_free;
*xccdf_value_binding_iterator_reset = *openscap_pmc::xccdf_value_binding_iterator_reset;
*xccdf_policy_get_score = *openscap_pmc::xccdf_policy_get_score;
*xccdf_policy_get_value_of_item = *openscap_pmc::xccdf_policy_get_value_of_item;
*xccdf_policy_substitute = *openscap_pmc::xccdf_policy_substitute;
*oval_agent_new_session = *openscap_pmc::oval_agent_new_session;
*oval_agent_get_definition_model = *openscap_pmc::oval_agent_get_definition_model;
*oval_agent_set_product_name = *openscap_pmc::oval_agent_set_product_name;
*oval_agent_eval_definition = *openscap_pmc::oval_agent_eval_definition;
*oval_agent_get_definition_result = *openscap_pmc::oval_agent_get_definition_result;
*oval_agent_get_result_definition = *openscap_pmc::oval_agent_get_result_definition;
*oval_agent_reset_session = *openscap_pmc::oval_agent_reset_session;
*oval_agent_abort_session = *openscap_pmc::oval_agent_abort_session;
*oval_agent_eval_system = *openscap_pmc::oval_agent_eval_system;
*oval_agent_get_results_model = *openscap_pmc::oval_agent_get_results_model;
*oval_agent_get_filename = *openscap_pmc::oval_agent_get_filename;
*oval_agent_destroy_session = *openscap_pmc::oval_agent_destroy_session;
*oval_subtype_get_family = *openscap_pmc::oval_subtype_get_family;
*oval_operator_get_text = *openscap_pmc::oval_operator_get_text;
*oval_subtype_get_text = *openscap_pmc::oval_subtype_get_text;
*oval_family_get_text = *openscap_pmc::oval_family_get_text;
*oval_check_get_text = *openscap_pmc::oval_check_get_text;
*oval_existence_get_text = *openscap_pmc::oval_existence_get_text;
*oval_affected_family_get_text = *openscap_pmc::oval_affected_family_get_text;
*oval_datatype_get_text = *openscap_pmc::oval_datatype_get_text;
*oval_datatype_from_text = *openscap_pmc::oval_datatype_from_text;
*oval_operation_get_text = *openscap_pmc::oval_operation_get_text;
*oval_set_operation_get_text = *openscap_pmc::oval_set_operation_get_text;
*oval_datetime_format_get_text = *openscap_pmc::oval_datetime_format_get_text;
*oval_arithmetic_operation_get_text = *openscap_pmc::oval_arithmetic_operation_get_text;
*oval_filter_action_get_text = *openscap_pmc::oval_filter_action_get_text;
*oval_generator_new = *openscap_pmc::oval_generator_new;
*oval_generator_free = *openscap_pmc::oval_generator_free;
*oval_generator_clone = *openscap_pmc::oval_generator_clone;
*oval_generator_get_product_name = *openscap_pmc::oval_generator_get_product_name;
*oval_generator_get_product_version = *openscap_pmc::oval_generator_get_product_version;
*oval_generator_get_schema_version = *openscap_pmc::oval_generator_get_schema_version;
*oval_generator_get_core_schema_version = *openscap_pmc::oval_generator_get_core_schema_version;
*oval_generator_get_timestamp = *openscap_pmc::oval_generator_get_timestamp;
*oval_generator_get_platform_schema_version = *openscap_pmc::oval_generator_get_platform_schema_version;
*oval_generator_set_product_name = *openscap_pmc::oval_generator_set_product_name;
*oval_generator_set_product_version = *openscap_pmc::oval_generator_set_product_version;
*oval_generator_set_schema_version = *openscap_pmc::oval_generator_set_schema_version;
*oval_generator_set_core_schema_version = *openscap_pmc::oval_generator_set_core_schema_version;
*oval_generator_add_platform_schema_version = *openscap_pmc::oval_generator_add_platform_schema_version;
*oval_generator_set_timestamp = *openscap_pmc::oval_generator_set_timestamp;
*oval_generator_update_timestamp = *openscap_pmc::oval_generator_update_timestamp;
*oval_definition_model_new = *openscap_pmc::oval_definition_model_new;
*oval_definition_model_import_source = *openscap_pmc::oval_definition_model_import_source;
*oval_definition_model_import = *openscap_pmc::oval_definition_model_import;
*oval_definition_model_merge = *openscap_pmc::oval_definition_model_merge;
*oval_definition_model_clone = *openscap_pmc::oval_definition_model_clone;
*oval_definition_model_export = *openscap_pmc::oval_definition_model_export;
*oval_definition_model_free = *openscap_pmc::oval_definition_model_free;
*oval_definition_model_set_generator = *openscap_pmc::oval_definition_model_set_generator;
*oval_definition_model_bind_variable_model = *openscap_pmc::oval_definition_model_bind_variable_model;
*oval_definition_model_clear_external_variables = *openscap_pmc::oval_definition_model_clear_external_variables;
*oval_definition_model_get_generator = *openscap_pmc::oval_definition_model_get_generator;
*oval_definition_model_get_definition = *openscap_pmc::oval_definition_model_get_definition;
*oval_definition_model_get_test = *openscap_pmc::oval_definition_model_get_test;
*oval_definition_model_get_object = *openscap_pmc::oval_definition_model_get_object;
*oval_definition_model_get_state = *openscap_pmc::oval_definition_model_get_state;
*oval_definition_model_get_variable = *openscap_pmc::oval_definition_model_get_variable;
*oval_definition_model_get_definitions = *openscap_pmc::oval_definition_model_get_definitions;
*oval_definition_model_get_tests = *openscap_pmc::oval_definition_model_get_tests;
*oval_definition_model_get_objects = *openscap_pmc::oval_definition_model_get_objects;
*oval_definition_model_get_states = *openscap_pmc::oval_definition_model_get_states;
*oval_definition_model_get_variables = *openscap_pmc::oval_definition_model_get_variables;
*oval_definition_model_supported = *openscap_pmc::oval_definition_model_supported;
*oval_definition_model_get_variable_models = *openscap_pmc::oval_definition_model_get_variable_models;
*oval_definition_new = *openscap_pmc::oval_definition_new;
*oval_definition_clone = *openscap_pmc::oval_definition_clone;
*oval_definition_free = *openscap_pmc::oval_definition_free;
*oval_definition_set_version = *openscap_pmc::oval_definition_set_version;
*oval_definition_set_class = *openscap_pmc::oval_definition_set_class;
*oval_definition_set_deprecated = *openscap_pmc::oval_definition_set_deprecated;
*oval_definition_set_title = *openscap_pmc::oval_definition_set_title;
*oval_definition_set_description = *openscap_pmc::oval_definition_set_description;
*oval_definition_add_affected = *openscap_pmc::oval_definition_add_affected;
*oval_definition_add_reference = *openscap_pmc::oval_definition_add_reference;
*oval_definition_add_note = *openscap_pmc::oval_definition_add_note;
*oval_definition_set_criteria = *openscap_pmc::oval_definition_set_criteria;
*oval_definition_get_id = *openscap_pmc::oval_definition_get_id;
*oval_definition_get_version = *openscap_pmc::oval_definition_get_version;
*oval_definition_get_class = *openscap_pmc::oval_definition_get_class;
*oval_definition_get_deprecated = *openscap_pmc::oval_definition_get_deprecated;
*oval_definition_get_title = *openscap_pmc::oval_definition_get_title;
*oval_definition_get_description = *openscap_pmc::oval_definition_get_description;
*oval_definition_get_affected = *openscap_pmc::oval_definition_get_affected;
*oval_definition_get_references = *openscap_pmc::oval_definition_get_references;
*oval_definition_get_notes = *openscap_pmc::oval_definition_get_notes;
*oval_definition_get_criteria = *openscap_pmc::oval_definition_get_criteria;
*oval_definition_iterator_has_more = *openscap_pmc::oval_definition_iterator_has_more;
*oval_definition_iterator_next = *openscap_pmc::oval_definition_iterator_next;
*oval_definition_iterator_free = *openscap_pmc::oval_definition_iterator_free;
*oval_test_new = *openscap_pmc::oval_test_new;
*oval_test_clone = *openscap_pmc::oval_test_clone;
*oval_test_free = *openscap_pmc::oval_test_free;
*oval_test_set_subtype = *openscap_pmc::oval_test_set_subtype;
*oval_test_add_note = *openscap_pmc::oval_test_add_note;
*oval_test_set_comment = *openscap_pmc::oval_test_set_comment;
*oval_test_set_deprecated = *openscap_pmc::oval_test_set_deprecated;
*oval_test_set_version = *openscap_pmc::oval_test_set_version;
*oval_test_set_state_operator = *openscap_pmc::oval_test_set_state_operator;
*oval_test_set_existence = *openscap_pmc::oval_test_set_existence;
*oval_test_set_check = *openscap_pmc::oval_test_set_check;
*oval_test_set_object = *openscap_pmc::oval_test_set_object;
*oval_test_add_state = *openscap_pmc::oval_test_add_state;
*oval_test_get_family = *openscap_pmc::oval_test_get_family;
*oval_test_get_subtype = *openscap_pmc::oval_test_get_subtype;
*oval_test_get_notes = *openscap_pmc::oval_test_get_notes;
*oval_test_get_comment = *openscap_pmc::oval_test_get_comment;
*oval_test_get_id = *openscap_pmc::oval_test_get_id;
*oval_test_get_deprecated = *openscap_pmc::oval_test_get_deprecated;
*oval_test_get_version = *openscap_pmc::oval_test_get_version;
*oval_test_get_state_operator = *openscap_pmc::oval_test_get_state_operator;
*oval_test_get_existence = *openscap_pmc::oval_test_get_existence;
*oval_test_get_check = *openscap_pmc::oval_test_get_check;
*oval_test_get_object = *openscap_pmc::oval_test_get_object;
*oval_test_get_states = *openscap_pmc::oval_test_get_states;
*oval_test_iterator_has_more = *openscap_pmc::oval_test_iterator_has_more;
*oval_test_iterator_next = *openscap_pmc::oval_test_iterator_next;
*oval_test_iterator_free = *openscap_pmc::oval_test_iterator_free;
*oval_object_new = *openscap_pmc::oval_object_new;
*oval_object_clone = *openscap_pmc::oval_object_clone;
*oval_object_free = *openscap_pmc::oval_object_free;
*oval_object_set_subtype = *openscap_pmc::oval_object_set_subtype;
*oval_object_add_note = *openscap_pmc::oval_object_add_note;
*oval_object_set_comment = *openscap_pmc::oval_object_set_comment;
*oval_object_set_deprecated = *openscap_pmc::oval_object_set_deprecated;
*oval_object_set_version = *openscap_pmc::oval_object_set_version;
*oval_object_add_object_content = *openscap_pmc::oval_object_add_object_content;
*oval_object_add_behavior = *openscap_pmc::oval_object_add_behavior;
*oval_object_get_family = *openscap_pmc::oval_object_get_family;
*oval_object_get_name = *openscap_pmc::oval_object_get_name;
*oval_object_get_subtype = *openscap_pmc::oval_object_get_subtype;
*oval_object_get_notes = *openscap_pmc::oval_object_get_notes;
*oval_object_get_comment = *openscap_pmc::oval_object_get_comment;
*oval_object_get_id = *openscap_pmc::oval_object_get_id;
*oval_object_get_deprecated = *openscap_pmc::oval_object_get_deprecated;
*oval_object_get_version = *openscap_pmc::oval_object_get_version;
*oval_object_get_schema_version = *openscap_pmc::oval_object_get_schema_version;
*oval_object_get_platform_schema_version = *openscap_pmc::oval_object_get_platform_schema_version;
*oval_object_get_object_contents = *openscap_pmc::oval_object_get_object_contents;
*oval_object_get_behaviors = *openscap_pmc::oval_object_get_behaviors;
*oval_object_iterator_has_more = *openscap_pmc::oval_object_iterator_has_more;
*oval_object_iterator_next = *openscap_pmc::oval_object_iterator_next;
*oval_object_iterator_free = *openscap_pmc::oval_object_iterator_free;
*oval_state_new = *openscap_pmc::oval_state_new;
*oval_state_clone = *openscap_pmc::oval_state_clone;
*oval_state_free = *openscap_pmc::oval_state_free;
*oval_state_set_subtype = *openscap_pmc::oval_state_set_subtype;
*oval_state_add_note = *openscap_pmc::oval_state_add_note;
*oval_state_set_comment = *openscap_pmc::oval_state_set_comment;
*oval_state_set_deprecated = *openscap_pmc::oval_state_set_deprecated;
*oval_state_set_version = *openscap_pmc::oval_state_set_version;
*oval_state_set_operator = *openscap_pmc::oval_state_set_operator;
*oval_state_add_content = *openscap_pmc::oval_state_add_content;
*oval_state_get_family = *openscap_pmc::oval_state_get_family;
*oval_state_get_name = *openscap_pmc::oval_state_get_name;
*oval_state_get_subtype = *openscap_pmc::oval_state_get_subtype;
*oval_state_get_notes = *openscap_pmc::oval_state_get_notes;
*oval_state_get_comment = *openscap_pmc::oval_state_get_comment;
*oval_state_get_id = *openscap_pmc::oval_state_get_id;
*oval_state_get_deprecated = *openscap_pmc::oval_state_get_deprecated;
*oval_state_get_version = *openscap_pmc::oval_state_get_version;
*oval_state_get_operator = *openscap_pmc::oval_state_get_operator;
*oval_state_get_contents = *openscap_pmc::oval_state_get_contents;
*oval_state_iterator_has_more = *openscap_pmc::oval_state_iterator_has_more;
*oval_state_iterator_next = *openscap_pmc::oval_state_iterator_next;
*oval_state_iterator_free = *openscap_pmc::oval_state_iterator_free;
*oval_variable_new = *openscap_pmc::oval_variable_new;
*oval_variable_clone = *openscap_pmc::oval_variable_clone;
*oval_variable_free = *openscap_pmc::oval_variable_free;
*oval_variable_possible_value_new = *openscap_pmc::oval_variable_possible_value_new;
*oval_variable_possible_value_free = *openscap_pmc::oval_variable_possible_value_free;
*oval_variable_possible_restriction_new = *openscap_pmc::oval_variable_possible_restriction_new;
*oval_variable_possible_restriction_free = *openscap_pmc::oval_variable_possible_restriction_free;
*oval_variable_restriction_new = *openscap_pmc::oval_variable_restriction_new;
*oval_variable_restriction_free = *openscap_pmc::oval_variable_restriction_free;
*oval_variable_set_comment = *openscap_pmc::oval_variable_set_comment;
*oval_variable_set_version = *openscap_pmc::oval_variable_set_version;
*oval_variable_set_deprecated = *openscap_pmc::oval_variable_set_deprecated;
*oval_variable_set_datatype = *openscap_pmc::oval_variable_set_datatype;
*oval_variable_add_value = *openscap_pmc::oval_variable_add_value;
*oval_variable_clear_values = *openscap_pmc::oval_variable_clear_values;
*oval_variable_add_possible_value = *openscap_pmc::oval_variable_add_possible_value;
*oval_variable_add_possible_restriction = *openscap_pmc::oval_variable_add_possible_restriction;
*oval_variable_possible_restriction_add_restriction = *openscap_pmc::oval_variable_possible_restriction_add_restriction;
*oval_variable_set_component = *openscap_pmc::oval_variable_set_component;
*oval_variable_get_id = *openscap_pmc::oval_variable_get_id;
*oval_variable_get_comment = *openscap_pmc::oval_variable_get_comment;
*oval_variable_get_version = *openscap_pmc::oval_variable_get_version;
*oval_variable_get_deprecated = *openscap_pmc::oval_variable_get_deprecated;
*oval_variable_get_type = *openscap_pmc::oval_variable_get_type;
*oval_variable_get_datatype = *openscap_pmc::oval_variable_get_datatype;
*oval_variable_get_values = *openscap_pmc::oval_variable_get_values;
*oval_variable_get_component = *openscap_pmc::oval_variable_get_component;
*oval_variable_get_possible_values = *openscap_pmc::oval_variable_get_possible_values;
*oval_variable_get_possible_restrictions = *openscap_pmc::oval_variable_get_possible_restrictions;
*oval_variable_possible_restriction_get_restrictions = *openscap_pmc::oval_variable_possible_restriction_get_restrictions;
*oval_variable_possible_restriction_get_operator = *openscap_pmc::oval_variable_possible_restriction_get_operator;
*oval_component_type_get_text = *openscap_pmc::oval_component_type_get_text;
*oval_variable_iterator_has_more = *openscap_pmc::oval_variable_iterator_has_more;
*oval_variable_iterator_next = *openscap_pmc::oval_variable_iterator_next;
*oval_variable_iterator_free = *openscap_pmc::oval_variable_iterator_free;
*oval_affected_new = *openscap_pmc::oval_affected_new;
*oval_affected_clone = *openscap_pmc::oval_affected_clone;
*oval_affected_free = *openscap_pmc::oval_affected_free;
*oval_affected_set_family = *openscap_pmc::oval_affected_set_family;
*oval_affected_add_platform = *openscap_pmc::oval_affected_add_platform;
*oval_affected_add_product = *openscap_pmc::oval_affected_add_product;
*oval_affected_get_family = *openscap_pmc::oval_affected_get_family;
*oval_affected_get_platforms = *openscap_pmc::oval_affected_get_platforms;
*oval_affected_get_products = *openscap_pmc::oval_affected_get_products;
*oval_affected_iterator_has_more = *openscap_pmc::oval_affected_iterator_has_more;
*oval_affected_iterator_next = *openscap_pmc::oval_affected_iterator_next;
*oval_affected_iterator_free = *openscap_pmc::oval_affected_iterator_free;
*oval_reference_new = *openscap_pmc::oval_reference_new;
*oval_reference_clone = *openscap_pmc::oval_reference_clone;
*oval_reference_free = *openscap_pmc::oval_reference_free;
*oval_reference_set_source = *openscap_pmc::oval_reference_set_source;
*oval_reference_set_id = *openscap_pmc::oval_reference_set_id;
*oval_reference_set_url = *openscap_pmc::oval_reference_set_url;
*oval_reference_get_source = *openscap_pmc::oval_reference_get_source;
*oval_reference_get_id = *openscap_pmc::oval_reference_get_id;
*oval_reference_get_url = *openscap_pmc::oval_reference_get_url;
*oval_reference_iterator_has_more = *openscap_pmc::oval_reference_iterator_has_more;
*oval_reference_iterator_next = *openscap_pmc::oval_reference_iterator_next;
*oval_reference_iterator_free = *openscap_pmc::oval_reference_iterator_free;
*oval_criteria_node_new = *openscap_pmc::oval_criteria_node_new;
*oval_criteria_node_clone = *openscap_pmc::oval_criteria_node_clone;
*oval_criteria_node_free = *openscap_pmc::oval_criteria_node_free;
*oval_criteria_node_set_negate = *openscap_pmc::oval_criteria_node_set_negate;
*oval_criteria_node_set_applicability_check = *openscap_pmc::oval_criteria_node_set_applicability_check;
*oval_criteria_set_node_type = *openscap_pmc::oval_criteria_set_node_type;
*oval_criteria_node_set_comment = *openscap_pmc::oval_criteria_node_set_comment;
*oval_criteria_node_set_operator = *openscap_pmc::oval_criteria_node_set_operator;
*oval_criteria_node_add_subnode = *openscap_pmc::oval_criteria_node_add_subnode;
*oval_criteria_node_set_test = *openscap_pmc::oval_criteria_node_set_test;
*oval_criteria_node_set_definition = *openscap_pmc::oval_criteria_node_set_definition;
*oval_criteria_node_get_type = *openscap_pmc::oval_criteria_node_get_type;
*oval_criteria_node_get_negate = *openscap_pmc::oval_criteria_node_get_negate;
*oval_criteria_node_get_applicability_check = *openscap_pmc::oval_criteria_node_get_applicability_check;
*oval_criteria_node_get_comment = *openscap_pmc::oval_criteria_node_get_comment;
*oval_criteria_node_get_operator = *openscap_pmc::oval_criteria_node_get_operator;
*oval_criteria_node_get_subnodes = *openscap_pmc::oval_criteria_node_get_subnodes;
*oval_criteria_node_get_test = *openscap_pmc::oval_criteria_node_get_test;
*oval_criteria_node_get_definition = *openscap_pmc::oval_criteria_node_get_definition;
*oval_criteria_node_iterator_has_more = *openscap_pmc::oval_criteria_node_iterator_has_more;
*oval_criteria_node_iterator_next = *openscap_pmc::oval_criteria_node_iterator_next;
*oval_criteria_node_iterator_free = *openscap_pmc::oval_criteria_node_iterator_free;
*oval_object_content_new = *openscap_pmc::oval_object_content_new;
*oval_object_content_clone = *openscap_pmc::oval_object_content_clone;
*oval_object_content_free = *openscap_pmc::oval_object_content_free;
*oval_object_content_set_type = *openscap_pmc::oval_object_content_set_type;
*oval_object_content_set_field_name = *openscap_pmc::oval_object_content_set_field_name;
*oval_object_content_set_entity = *openscap_pmc::oval_object_content_set_entity;
*oval_object_content_set_varCheck = *openscap_pmc::oval_object_content_set_varCheck;
*oval_object_content_set_setobject = *openscap_pmc::oval_object_content_set_setobject;
*oval_object_content_get_field_name = *openscap_pmc::oval_object_content_get_field_name;
*oval_object_content_get_type = *openscap_pmc::oval_object_content_get_type;
*oval_object_content_get_entity = *openscap_pmc::oval_object_content_get_entity;
*oval_object_content_get_varCheck = *openscap_pmc::oval_object_content_get_varCheck;
*oval_object_content_get_setobject = *openscap_pmc::oval_object_content_get_setobject;
*oval_object_content_iterator_has_more = *openscap_pmc::oval_object_content_iterator_has_more;
*oval_object_content_iterator_next = *openscap_pmc::oval_object_content_iterator_next;
*oval_object_content_iterator_free = *openscap_pmc::oval_object_content_iterator_free;
*oval_behavior_new = *openscap_pmc::oval_behavior_new;
*oval_behavior_clone = *openscap_pmc::oval_behavior_clone;
*oval_behavior_free = *openscap_pmc::oval_behavior_free;
*oval_behavior_set_keyval = *openscap_pmc::oval_behavior_set_keyval;
*oval_behavior_get_key = *openscap_pmc::oval_behavior_get_key;
*oval_behavior_get_value = *openscap_pmc::oval_behavior_get_value;
*oval_behavior_iterator_has_more = *openscap_pmc::oval_behavior_iterator_has_more;
*oval_behavior_iterator_next = *openscap_pmc::oval_behavior_iterator_next;
*oval_behavior_iterator_free = *openscap_pmc::oval_behavior_iterator_free;
*oval_state_content_new = *openscap_pmc::oval_state_content_new;
*oval_state_content_clone = *openscap_pmc::oval_state_content_clone;
*oval_state_content_free = *openscap_pmc::oval_state_content_free;
*oval_state_content_set_entity = *openscap_pmc::oval_state_content_set_entity;
*oval_state_content_add_record_field = *openscap_pmc::oval_state_content_add_record_field;
*oval_state_content_set_varcheck = *openscap_pmc::oval_state_content_set_varcheck;
*oval_state_content_set_entcheck = *openscap_pmc::oval_state_content_set_entcheck;
*oval_state_content_set_check_existence = *openscap_pmc::oval_state_content_set_check_existence;
*oval_state_content_get_entity = *openscap_pmc::oval_state_content_get_entity;
*oval_state_content_get_record_fields = *openscap_pmc::oval_state_content_get_record_fields;
*oval_state_content_get_var_check = *openscap_pmc::oval_state_content_get_var_check;
*oval_state_content_get_ent_check = *openscap_pmc::oval_state_content_get_ent_check;
*oval_state_content_get_check_existence = *openscap_pmc::oval_state_content_get_check_existence;
*oval_state_content_iterator_has_more = *openscap_pmc::oval_state_content_iterator_has_more;
*oval_state_content_iterator_next = *openscap_pmc::oval_state_content_iterator_next;
*oval_state_content_iterator_free = *openscap_pmc::oval_state_content_iterator_free;
*oval_value_new = *openscap_pmc::oval_value_new;
*oval_value_clone = *openscap_pmc::oval_value_clone;
*oval_value_free = *openscap_pmc::oval_value_free;
*oval_value_set_datatype = *openscap_pmc::oval_value_set_datatype;
*oval_value_get_datatype = *openscap_pmc::oval_value_get_datatype;
*oval_value_get_text = *openscap_pmc::oval_value_get_text;
*oval_value_get_binary = *openscap_pmc::oval_value_get_binary;
*oval_value_get_boolean = *openscap_pmc::oval_value_get_boolean;
*oval_value_get_float = *openscap_pmc::oval_value_get_float;
*oval_value_get_integer = *openscap_pmc::oval_value_get_integer;
*oval_value_iterator_has_more = *openscap_pmc::oval_value_iterator_has_more;
*oval_value_iterator_next = *openscap_pmc::oval_value_iterator_next;
*oval_value_iterator_remaining = *openscap_pmc::oval_value_iterator_remaining;
*oval_value_iterator_free = *openscap_pmc::oval_value_iterator_free;
*oval_entity_new = *openscap_pmc::oval_entity_new;
*oval_entity_clone = *openscap_pmc::oval_entity_clone;
*oval_entity_free = *openscap_pmc::oval_entity_free;
*oval_entity_set_type = *openscap_pmc::oval_entity_set_type;
*oval_entity_set_datatype = *openscap_pmc::oval_entity_set_datatype;
*oval_entity_set_mask = *openscap_pmc::oval_entity_set_mask;
*oval_entity_set_varref_type = *openscap_pmc::oval_entity_set_varref_type;
*oval_entity_set_variable = *openscap_pmc::oval_entity_set_variable;
*oval_entity_set_value = *openscap_pmc::oval_entity_set_value;
*oval_entity_set_name = *openscap_pmc::oval_entity_set_name;
*oval_entity_set_operation = *openscap_pmc::oval_entity_set_operation;
*oval_entity_get_name = *openscap_pmc::oval_entity_get_name;
*oval_entity_get_type = *openscap_pmc::oval_entity_get_type;
*oval_entity_get_datatype = *openscap_pmc::oval_entity_get_datatype;
*oval_entity_get_operation = *openscap_pmc::oval_entity_get_operation;
*oval_entity_get_variable = *openscap_pmc::oval_entity_get_variable;
*oval_entity_get_value = *openscap_pmc::oval_entity_get_value;
*oval_entity_get_mask = *openscap_pmc::oval_entity_get_mask;
*oval_entity_get_varref_type = *openscap_pmc::oval_entity_get_varref_type;
*oval_entity_iterator_has_more = *openscap_pmc::oval_entity_iterator_has_more;
*oval_entity_iterator_next = *openscap_pmc::oval_entity_iterator_next;
*oval_entity_iterator_free = *openscap_pmc::oval_entity_iterator_free;
*oval_record_field_new = *openscap_pmc::oval_record_field_new;
*oval_record_field_clone = *openscap_pmc::oval_record_field_clone;
*oval_record_field_free = *openscap_pmc::oval_record_field_free;
*oval_record_field_set_name = *openscap_pmc::oval_record_field_set_name;
*oval_record_field_set_value = *openscap_pmc::oval_record_field_set_value;
*oval_record_field_set_datatype = *openscap_pmc::oval_record_field_set_datatype;
*oval_record_field_set_mask = *openscap_pmc::oval_record_field_set_mask;
*oval_record_field_set_operation = *openscap_pmc::oval_record_field_set_operation;
*oval_record_field_set_variable = *openscap_pmc::oval_record_field_set_variable;
*oval_record_field_set_var_check = *openscap_pmc::oval_record_field_set_var_check;
*oval_record_field_set_ent_check = *openscap_pmc::oval_record_field_set_ent_check;
*oval_record_field_get_type = *openscap_pmc::oval_record_field_get_type;
*oval_record_field_get_name = *openscap_pmc::oval_record_field_get_name;
*oval_record_field_get_value = *openscap_pmc::oval_record_field_get_value;
*oval_record_field_get_datatype = *openscap_pmc::oval_record_field_get_datatype;
*oval_record_field_get_mask = *openscap_pmc::oval_record_field_get_mask;
*oval_record_field_get_operation = *openscap_pmc::oval_record_field_get_operation;
*oval_record_field_get_variable = *openscap_pmc::oval_record_field_get_variable;
*oval_record_field_get_var_check = *openscap_pmc::oval_record_field_get_var_check;
*oval_record_field_get_ent_check = *openscap_pmc::oval_record_field_get_ent_check;
*oval_record_field_iterator_has_more = *openscap_pmc::oval_record_field_iterator_has_more;
*oval_record_field_iterator_next = *openscap_pmc::oval_record_field_iterator_next;
*oval_record_field_iterator_free = *openscap_pmc::oval_record_field_iterator_free;
*oval_filter_new = *openscap_pmc::oval_filter_new;
*oval_filter_free = *openscap_pmc::oval_filter_free;
*oval_filter_clone = *openscap_pmc::oval_filter_clone;
*oval_filter_set_state = *openscap_pmc::oval_filter_set_state;
*oval_filter_set_filter_action = *openscap_pmc::oval_filter_set_filter_action;
*oval_filter_get_state = *openscap_pmc::oval_filter_get_state;
*oval_filter_get_filter_action = *openscap_pmc::oval_filter_get_filter_action;
*oval_filter_iterator_has_more = *openscap_pmc::oval_filter_iterator_has_more;
*oval_filter_iterator_next = *openscap_pmc::oval_filter_iterator_next;
*oval_filter_iterator_free = *openscap_pmc::oval_filter_iterator_free;
*oval_setobject_new = *openscap_pmc::oval_setobject_new;
*oval_setobject_clone = *openscap_pmc::oval_setobject_clone;
*oval_setobject_free = *openscap_pmc::oval_setobject_free;
*oval_setobject_set_type = *openscap_pmc::oval_setobject_set_type;
*oval_setobject_set_operation = *openscap_pmc::oval_setobject_set_operation;
*oval_setobject_add_subset = *openscap_pmc::oval_setobject_add_subset;
*oval_setobject_add_object = *openscap_pmc::oval_setobject_add_object;
*oval_setobject_add_filter = *openscap_pmc::oval_setobject_add_filter;
*oval_setobject_get_type = *openscap_pmc::oval_setobject_get_type;
*oval_setobject_get_operation = *openscap_pmc::oval_setobject_get_operation;
*oval_setobject_get_subsets = *openscap_pmc::oval_setobject_get_subsets;
*oval_setobject_get_objects = *openscap_pmc::oval_setobject_get_objects;
*oval_setobject_get_filters = *openscap_pmc::oval_setobject_get_filters;
*oval_setobject_iterator_has_more = *openscap_pmc::oval_setobject_iterator_has_more;
*oval_setobject_iterator_next = *openscap_pmc::oval_setobject_iterator_next;
*oval_setobject_iterator_free = *openscap_pmc::oval_setobject_iterator_free;
*oval_component_new = *openscap_pmc::oval_component_new;
*oval_component_clone = *openscap_pmc::oval_component_clone;
*oval_component_free = *openscap_pmc::oval_component_free;
*oval_component_set_type = *openscap_pmc::oval_component_set_type;
*oval_component_set_object = *openscap_pmc::oval_component_set_object;
*oval_component_set_item_field = *openscap_pmc::oval_component_set_item_field;
*oval_component_set_record_field = *openscap_pmc::oval_component_set_record_field;
*oval_component_set_variable = *openscap_pmc::oval_component_set_variable;
*oval_component_add_function_component = *openscap_pmc::oval_component_add_function_component;
*oval_component_set_arithmetic_operation = *openscap_pmc::oval_component_set_arithmetic_operation;
*oval_component_set_prefix = *openscap_pmc::oval_component_set_prefix;
*oval_component_set_suffix = *openscap_pmc::oval_component_set_suffix;
*oval_component_set_split_delimiter = *openscap_pmc::oval_component_set_split_delimiter;
*oval_component_set_glob_to_regex_glob_noescape = *openscap_pmc::oval_component_set_glob_to_regex_glob_noescape;
*oval_component_set_substring_start = *openscap_pmc::oval_component_set_substring_start;
*oval_component_set_substring_length = *openscap_pmc::oval_component_set_substring_length;
*oval_component_set_timedif_format_1 = *openscap_pmc::oval_component_set_timedif_format_1;
*oval_component_set_timedif_format_2 = *openscap_pmc::oval_component_set_timedif_format_2;
*oval_component_set_regex_pattern = *openscap_pmc::oval_component_set_regex_pattern;
*oval_component_set_literal_value = *openscap_pmc::oval_component_set_literal_value;
*oval_component_get_type = *openscap_pmc::oval_component_get_type;
*oval_component_get_object = *openscap_pmc::oval_component_get_object;
*oval_component_get_item_field = *openscap_pmc::oval_component_get_item_field;
*oval_component_get_record_field = *openscap_pmc::oval_component_get_record_field;
*oval_component_get_variable = *openscap_pmc::oval_component_get_variable;
*oval_component_get_function_components = *openscap_pmc::oval_component_get_function_components;
*oval_component_get_arithmetic_operation = *openscap_pmc::oval_component_get_arithmetic_operation;
*oval_component_get_prefix = *openscap_pmc::oval_component_get_prefix;
*oval_component_get_suffix = *openscap_pmc::oval_component_get_suffix;
*oval_component_get_split_delimiter = *openscap_pmc::oval_component_get_split_delimiter;
*oval_component_get_glob_to_regex_glob_noescape = *openscap_pmc::oval_component_get_glob_to_regex_glob_noescape;
*oval_component_get_substring_start = *openscap_pmc::oval_component_get_substring_start;
*oval_component_get_substring_length = *openscap_pmc::oval_component_get_substring_length;
*oval_component_get_timedif_format_1 = *openscap_pmc::oval_component_get_timedif_format_1;
*oval_component_get_timedif_format_2 = *openscap_pmc::oval_component_get_timedif_format_2;
*oval_component_get_regex_pattern = *openscap_pmc::oval_component_get_regex_pattern;
*oval_component_get_literal_value = *openscap_pmc::oval_component_get_literal_value;
*oval_component_iterator_has_more = *openscap_pmc::oval_component_iterator_has_more;
*oval_component_iterator_next = *openscap_pmc::oval_component_iterator_next;
*oval_component_iterator_free = *openscap_pmc::oval_component_iterator_free;
*oval_component_iterator_remaining = *openscap_pmc::oval_component_iterator_remaining;
*oval_determine_document_schema_version = *openscap_pmc::oval_determine_document_schema_version;
*oval_syschar_collection_flag_get_text = *openscap_pmc::oval_syschar_collection_flag_get_text;
*oval_syschar_status_get_text = *openscap_pmc::oval_syschar_status_get_text;
*oval_message_level_text = *openscap_pmc::oval_message_level_text;
*oval_syschar_model_new = *openscap_pmc::oval_syschar_model_new;
*oval_syschar_model_import_source = *openscap_pmc::oval_syschar_model_import_source;
*oval_syschar_model_import = *openscap_pmc::oval_syschar_model_import;
*oval_syschar_model_clone = *openscap_pmc::oval_syschar_model_clone;
*oval_syschar_model_export = *openscap_pmc::oval_syschar_model_export;
*oval_syschar_model_free = *openscap_pmc::oval_syschar_model_free;
*oval_syschar_model_set_generator = *openscap_pmc::oval_syschar_model_set_generator;
*oval_syschar_model_bind_variable_model = *openscap_pmc::oval_syschar_model_bind_variable_model;
*oval_syschar_model_set_sysinfo = *openscap_pmc::oval_syschar_model_set_sysinfo;
*oval_syschar_model_get_generator = *openscap_pmc::oval_syschar_model_get_generator;
*oval_syschar_model_get_definition_model = *openscap_pmc::oval_syschar_model_get_definition_model;
*oval_syschar_model_get_syschars = *openscap_pmc::oval_syschar_model_get_syschars;
*oval_syschar_model_get_sysinfo = *openscap_pmc::oval_syschar_model_get_sysinfo;
*oval_syschar_model_get_syschar = *openscap_pmc::oval_syschar_model_get_syschar;
*oval_syschar_model_compute_variable = *openscap_pmc::oval_syschar_model_compute_variable;
*oval_variable_get_collection_flag = *openscap_pmc::oval_variable_get_collection_flag;
*oval_syschar_model_get_sysitem = *openscap_pmc::oval_syschar_model_get_sysitem;
*oval_sysinfo_new = *openscap_pmc::oval_sysinfo_new;
*oval_sysinfo_clone = *openscap_pmc::oval_sysinfo_clone;
*oval_sysinfo_free = *openscap_pmc::oval_sysinfo_free;
*oval_sysinfo_set_os_name = *openscap_pmc::oval_sysinfo_set_os_name;
*oval_sysinfo_set_os_version = *openscap_pmc::oval_sysinfo_set_os_version;
*oval_sysinfo_set_os_architecture = *openscap_pmc::oval_sysinfo_set_os_architecture;
*oval_sysinfo_set_primary_host_name = *openscap_pmc::oval_sysinfo_set_primary_host_name;
*oval_sysinfo_add_interface = *openscap_pmc::oval_sysinfo_add_interface;
*oval_sysinfo_get_os_name = *openscap_pmc::oval_sysinfo_get_os_name;
*oval_sysinfo_get_os_version = *openscap_pmc::oval_sysinfo_get_os_version;
*oval_sysinfo_get_os_architecture = *openscap_pmc::oval_sysinfo_get_os_architecture;
*oval_sysinfo_get_primary_host_name = *openscap_pmc::oval_sysinfo_get_primary_host_name;
*oval_sysinfo_get_interfaces = *openscap_pmc::oval_sysinfo_get_interfaces;
*oval_sysinfo_iterator_has_more = *openscap_pmc::oval_sysinfo_iterator_has_more;
*oval_sysinfo_iterator_next = *openscap_pmc::oval_sysinfo_iterator_next;
*oval_sysinfo_iterator_free = *openscap_pmc::oval_sysinfo_iterator_free;
*oval_syschar_new = *openscap_pmc::oval_syschar_new;
*oval_syschar_clone = *openscap_pmc::oval_syschar_clone;
*oval_syschar_free = *openscap_pmc::oval_syschar_free;
*oval_syschar_add_variable_binding = *openscap_pmc::oval_syschar_add_variable_binding;
*oval_syschar_set_flag = *openscap_pmc::oval_syschar_set_flag;
*oval_syschar_set_object = *openscap_pmc::oval_syschar_set_object;
*oval_syschar_get_variable_instance = *openscap_pmc::oval_syschar_get_variable_instance;
*oval_syschar_set_variable_instance = *openscap_pmc::oval_syschar_set_variable_instance;
*oval_syschar_add_sysitem = *openscap_pmc::oval_syschar_add_sysitem;
*oval_syschar_add_message = *openscap_pmc::oval_syschar_add_message;
*oval_syschar_add_new_message = *openscap_pmc::oval_syschar_add_new_message;
*oval_syschar_get_flag = *openscap_pmc::oval_syschar_get_flag;
*oval_syschar_get_messages = *openscap_pmc::oval_syschar_get_messages;
*oval_syschar_get_object = *openscap_pmc::oval_syschar_get_object;
*oval_syschar_get_variable_bindings = *openscap_pmc::oval_syschar_get_variable_bindings;
*oval_syschar_get_sysitem = *openscap_pmc::oval_syschar_get_sysitem;
*oval_syschar_iterator_has_more = *openscap_pmc::oval_syschar_iterator_has_more;
*oval_syschar_iterator_next = *openscap_pmc::oval_syschar_iterator_next;
*oval_syschar_iterator_free = *openscap_pmc::oval_syschar_iterator_free;
*oval_sysint_new = *openscap_pmc::oval_sysint_new;
*oval_sysint_clone = *openscap_pmc::oval_sysint_clone;
*oval_sysint_free = *openscap_pmc::oval_sysint_free;
*oval_sysint_set_name = *openscap_pmc::oval_sysint_set_name;
*oval_sysint_set_ip_address = *openscap_pmc::oval_sysint_set_ip_address;
*oval_sysint_set_mac_address = *openscap_pmc::oval_sysint_set_mac_address;
*oval_sysint_get_name = *openscap_pmc::oval_sysint_get_name;
*oval_sysint_get_ip_address = *openscap_pmc::oval_sysint_get_ip_address;
*oval_sysint_get_mac_address = *openscap_pmc::oval_sysint_get_mac_address;
*oval_sysint_iterator_has_more = *openscap_pmc::oval_sysint_iterator_has_more;
*oval_sysint_iterator_next = *openscap_pmc::oval_sysint_iterator_next;
*oval_sysint_iterator_free = *openscap_pmc::oval_sysint_iterator_free;
*oval_sysitem_new = *openscap_pmc::oval_sysitem_new;
*oval_sysitem_clone = *openscap_pmc::oval_sysitem_clone;
*oval_sysitem_free = *openscap_pmc::oval_sysitem_free;
*oval_sysitem_set_status = *openscap_pmc::oval_sysitem_set_status;
*oval_sysitem_set_subtype = *openscap_pmc::oval_sysitem_set_subtype;
*oval_sysitem_add_message = *openscap_pmc::oval_sysitem_add_message;
*oval_sysitem_add_sysent = *openscap_pmc::oval_sysitem_add_sysent;
*oval_sysitem_get_id = *openscap_pmc::oval_sysitem_get_id;
*oval_sysitem_get_status = *openscap_pmc::oval_sysitem_get_status;
*oval_sysitem_get_sysents = *openscap_pmc::oval_sysitem_get_sysents;
*oval_sysitem_get_messages = *openscap_pmc::oval_sysitem_get_messages;
*oval_sysitem_get_subtype = *openscap_pmc::oval_sysitem_get_subtype;
*oval_sysitem_iterator_has_more = *openscap_pmc::oval_sysitem_iterator_has_more;
*oval_sysitem_iterator_next = *openscap_pmc::oval_sysitem_iterator_next;
*oval_sysitem_iterator_free = *openscap_pmc::oval_sysitem_iterator_free;
*oval_sysent_new = *openscap_pmc::oval_sysent_new;
*oval_sysent_clone = *openscap_pmc::oval_sysent_clone;
*oval_sysent_free = *openscap_pmc::oval_sysent_free;
*oval_sysent_set_name = *openscap_pmc::oval_sysent_set_name;
*oval_sysent_set_value = *openscap_pmc::oval_sysent_set_value;
*oval_sysent_add_record_field = *openscap_pmc::oval_sysent_add_record_field;
*oval_sysent_set_status = *openscap_pmc::oval_sysent_set_status;
*oval_sysent_set_datatype = *openscap_pmc::oval_sysent_set_datatype;
*oval_sysent_set_mask = *openscap_pmc::oval_sysent_set_mask;
*oval_sysent_get_name = *openscap_pmc::oval_sysent_get_name;
*oval_sysent_get_value = *openscap_pmc::oval_sysent_get_value;
*oval_sysent_get_record_fields = *openscap_pmc::oval_sysent_get_record_fields;
*oval_sysent_get_status = *openscap_pmc::oval_sysent_get_status;
*oval_sysent_get_datatype = *openscap_pmc::oval_sysent_get_datatype;
*oval_sysent_get_mask = *openscap_pmc::oval_sysent_get_mask;
*oval_sysent_iterator_has_more = *openscap_pmc::oval_sysent_iterator_has_more;
*oval_sysent_iterator_next = *openscap_pmc::oval_sysent_iterator_next;
*oval_sysent_iterator_free = *openscap_pmc::oval_sysent_iterator_free;
*oval_record_field_set_status = *openscap_pmc::oval_record_field_set_status;
*oval_record_field_get_status = *openscap_pmc::oval_record_field_get_status;
*oval_message_new = *openscap_pmc::oval_message_new;
*oval_message_clone = *openscap_pmc::oval_message_clone;
*oval_message_free = *openscap_pmc::oval_message_free;
*oval_message_set_text = *openscap_pmc::oval_message_set_text;
*oval_message_set_level = *openscap_pmc::oval_message_set_level;
*oval_message_get_text = *openscap_pmc::oval_message_get_text;
*oval_message_get_level = *openscap_pmc::oval_message_get_level;
*oval_message_iterator_has_more = *openscap_pmc::oval_message_iterator_has_more;
*oval_message_iterator_next = *openscap_pmc::oval_message_iterator_next;
*oval_message_iterator_free = *openscap_pmc::oval_message_iterator_free;
*oval_variable_binding_new = *openscap_pmc::oval_variable_binding_new;
*oval_variable_binding_clone = *openscap_pmc::oval_variable_binding_clone;
*oval_variable_binding_free = *openscap_pmc::oval_variable_binding_free;
*oval_variable_binding_set_variable = *openscap_pmc::oval_variable_binding_set_variable;
*oval_variable_binding_add_value = *openscap_pmc::oval_variable_binding_add_value;
*oval_variable_binding_get_variable = *openscap_pmc::oval_variable_binding_get_variable;
*oval_variable_binding_get_values = *openscap_pmc::oval_variable_binding_get_values;
*oval_variable_binding_iterator_has_more = *openscap_pmc::oval_variable_binding_iterator_has_more;
*oval_variable_binding_iterator_next = *openscap_pmc::oval_variable_binding_iterator_next;
*oval_variable_binding_iterator_free = *openscap_pmc::oval_variable_binding_iterator_free;
*oval_result_get_text = *openscap_pmc::oval_result_get_text;
*oval_results_model_new = *openscap_pmc::oval_results_model_new;
*oval_results_model_import_source = *openscap_pmc::oval_results_model_import_source;
*oval_results_model_import = *openscap_pmc::oval_results_model_import;
*oval_results_model_clone = *openscap_pmc::oval_results_model_clone;
*oval_results_model_free = *openscap_pmc::oval_results_model_free;
*oval_results_model_export = *openscap_pmc::oval_results_model_export;
*oval_results_model_export_source = *openscap_pmc::oval_results_model_export_source;
*oval_results_model_set_generator = *openscap_pmc::oval_results_model_set_generator;
*oval_results_model_get_generator = *openscap_pmc::oval_results_model_get_generator;
*oval_results_model_get_definition_model = *openscap_pmc::oval_results_model_get_definition_model;
*oval_results_model_get_systems = *openscap_pmc::oval_results_model_get_systems;
*oval_results_model_eval = *openscap_pmc::oval_results_model_eval;
*oval_result_system_new = *openscap_pmc::oval_result_system_new;
*oval_result_system_clone = *openscap_pmc::oval_result_system_clone;
*oval_result_system_free = *openscap_pmc::oval_result_system_free;
*oval_result_system_add_definition = *openscap_pmc::oval_result_system_add_definition;
*oval_result_system_add_test = *openscap_pmc::oval_result_system_add_test;
*oval_result_system_get_results_model = *openscap_pmc::oval_result_system_get_results_model;
*oval_result_system_get_definition = *openscap_pmc::oval_result_system_get_definition;
*oval_result_system_get_definitions = *openscap_pmc::oval_result_system_get_definitions;
*oval_result_system_get_tests = *openscap_pmc::oval_result_system_get_tests;
*oval_result_system_get_syschar_model = *openscap_pmc::oval_result_system_get_syschar_model;
*oval_result_system_get_sysinfo = *openscap_pmc::oval_result_system_get_sysinfo;
*oval_result_system_iterator_has_more = *openscap_pmc::oval_result_system_iterator_has_more;
*oval_result_system_iterator_next = *openscap_pmc::oval_result_system_iterator_next;
*oval_result_system_iterator_free = *openscap_pmc::oval_result_system_iterator_free;
*oval_result_system_eval = *openscap_pmc::oval_result_system_eval;
*oval_result_system_eval_definition = *openscap_pmc::oval_result_system_eval_definition;
*oval_result_definition_new = *openscap_pmc::oval_result_definition_new;
*oval_result_definition_clone = *openscap_pmc::oval_result_definition_clone;
*oval_result_definition_free = *openscap_pmc::oval_result_definition_free;
*oval_result_definition_set_result = *openscap_pmc::oval_result_definition_set_result;
*oval_result_definition_set_instance = *openscap_pmc::oval_result_definition_set_instance;
*oval_result_definition_set_criteria = *openscap_pmc::oval_result_definition_set_criteria;
*oval_result_definition_add_message = *openscap_pmc::oval_result_definition_add_message;
*oval_result_definition_get_definition = *openscap_pmc::oval_result_definition_get_definition;
*oval_result_definition_get_id = *openscap_pmc::oval_result_definition_get_id;
*oval_result_definition_get_system = *openscap_pmc::oval_result_definition_get_system;
*oval_result_definition_get_instance = *openscap_pmc::oval_result_definition_get_instance;
*oval_result_definition_eval = *openscap_pmc::oval_result_definition_eval;
*oval_result_definition_get_result = *openscap_pmc::oval_result_definition_get_result;
*oval_result_definition_get_messages = *openscap_pmc::oval_result_definition_get_messages;
*oval_result_definition_get_criteria = *openscap_pmc::oval_result_definition_get_criteria;
*oval_result_definition_iterator_has_more = *openscap_pmc::oval_result_definition_iterator_has_more;
*oval_result_definition_iterator_next = *openscap_pmc::oval_result_definition_iterator_next;
*oval_result_definition_iterator_free = *openscap_pmc::oval_result_definition_iterator_free;
*oval_result_test_new = *openscap_pmc::oval_result_test_new;
*oval_result_test_clone = *openscap_pmc::oval_result_test_clone;
*oval_result_test_free = *openscap_pmc::oval_result_test_free;
*oval_result_test_set_result = *openscap_pmc::oval_result_test_set_result;
*oval_result_test_set_instance = *openscap_pmc::oval_result_test_set_instance;
*oval_result_test_add_message = *openscap_pmc::oval_result_test_add_message;
*oval_result_test_add_item = *openscap_pmc::oval_result_test_add_item;
*oval_result_test_add_binding = *openscap_pmc::oval_result_test_add_binding;
*oval_result_test_get_test = *openscap_pmc::oval_result_test_get_test;
*oval_result_test_get_system = *openscap_pmc::oval_result_test_get_system;
*oval_result_test_eval = *openscap_pmc::oval_result_test_eval;
*oval_result_test_get_result = *openscap_pmc::oval_result_test_get_result;
*oval_result_test_get_instance = *openscap_pmc::oval_result_test_get_instance;
*oval_result_test_get_messages = *openscap_pmc::oval_result_test_get_messages;
*oval_result_test_get_items = *openscap_pmc::oval_result_test_get_items;
*oval_result_test_get_bindings = *openscap_pmc::oval_result_test_get_bindings;
*oval_result_test_iterator_has_more = *openscap_pmc::oval_result_test_iterator_has_more;
*oval_result_test_iterator_next = *openscap_pmc::oval_result_test_iterator_next;
*oval_result_test_iterator_free = *openscap_pmc::oval_result_test_iterator_free;
*oval_result_item_new = *openscap_pmc::oval_result_item_new;
*oval_result_item_clone = *openscap_pmc::oval_result_item_clone;
*oval_result_item_free = *openscap_pmc::oval_result_item_free;
*oval_result_item_set_result = *openscap_pmc::oval_result_item_set_result;
*oval_result_item_add_message = *openscap_pmc::oval_result_item_add_message;
*oval_result_item_get_sysitem = *openscap_pmc::oval_result_item_get_sysitem;
*oval_result_item_get_result = *openscap_pmc::oval_result_item_get_result;
*oval_result_item_get_messages = *openscap_pmc::oval_result_item_get_messages;
*oval_result_item_iterator_has_more = *openscap_pmc::oval_result_item_iterator_has_more;
*oval_result_item_iterator_next = *openscap_pmc::oval_result_item_iterator_next;
*oval_result_item_iterator_free = *openscap_pmc::oval_result_item_iterator_free;
*oval_result_criteria_node_new = *openscap_pmc::oval_result_criteria_node_new;
*oval_result_criteria_node_clone = *openscap_pmc::oval_result_criteria_node_clone;
*oval_result_criteria_node_free = *openscap_pmc::oval_result_criteria_node_free;
*oval_result_criteria_node_set_result = *openscap_pmc::oval_result_criteria_node_set_result;
*oval_result_criteria_node_set_negate = *openscap_pmc::oval_result_criteria_node_set_negate;
*oval_result_criteria_node_set_applicability_check = *openscap_pmc::oval_result_criteria_node_set_applicability_check;
*oval_result_criteria_node_set_operator = *openscap_pmc::oval_result_criteria_node_set_operator;
*oval_result_criteria_node_add_subnode = *openscap_pmc::oval_result_criteria_node_add_subnode;
*oval_result_criteria_node_set_test = *openscap_pmc::oval_result_criteria_node_set_test;
*oval_result_criteria_node_set_extends = *openscap_pmc::oval_result_criteria_node_set_extends;
*oval_result_criteria_node_get_type = *openscap_pmc::oval_result_criteria_node_get_type;
*oval_result_criteria_node_eval = *openscap_pmc::oval_result_criteria_node_eval;
*oval_result_criteria_node_get_result = *openscap_pmc::oval_result_criteria_node_get_result;
*oval_result_criteria_node_get_negate = *openscap_pmc::oval_result_criteria_node_get_negate;
*oval_result_criteria_node_get_applicability_check = *openscap_pmc::oval_result_criteria_node_get_applicability_check;
*oval_result_criteria_node_get_operator = *openscap_pmc::oval_result_criteria_node_get_operator;
*oval_result_criteria_node_get_subnodes = *openscap_pmc::oval_result_criteria_node_get_subnodes;
*oval_result_criteria_node_get_test = *openscap_pmc::oval_result_criteria_node_get_test;
*oval_result_criteria_node_get_extends = *openscap_pmc::oval_result_criteria_node_get_extends;
*oval_result_criteria_node_iterator_has_more = *openscap_pmc::oval_result_criteria_node_iterator_has_more;
*oval_result_criteria_node_iterator_next = *openscap_pmc::oval_result_criteria_node_iterator_next;
*oval_result_criteria_node_iterator_free = *openscap_pmc::oval_result_criteria_node_iterator_free;
*oval_variable_model_new = *openscap_pmc::oval_variable_model_new;
*oval_variable_model_import_source = *openscap_pmc::oval_variable_model_import_source;
*oval_variable_model_import = *openscap_pmc::oval_variable_model_import;
*oval_variable_model_clone = *openscap_pmc::oval_variable_model_clone;
*oval_variable_model_free = *openscap_pmc::oval_variable_model_free;
*oval_variable_model_export = *openscap_pmc::oval_variable_model_export;
*oval_variable_model_set_generator = *openscap_pmc::oval_variable_model_set_generator;
*oval_variable_model_add = *openscap_pmc::oval_variable_model_add;
*oval_variable_model_get_generator = *openscap_pmc::oval_variable_model_get_generator;
*oval_variable_model_get_variable_ids = *openscap_pmc::oval_variable_model_get_variable_ids;
*oval_variable_model_has_variable = *openscap_pmc::oval_variable_model_has_variable;
*oval_variable_model_get_datatype = *openscap_pmc::oval_variable_model_get_datatype;
*oval_variable_model_get_comment = *openscap_pmc::oval_variable_model_get_comment;
*oval_variable_model_get_values = *openscap_pmc::oval_variable_model_get_values;
*oval_variable_model_iterator_has_more = *openscap_pmc::oval_variable_model_iterator_has_more;
*oval_variable_model_iterator_next = *openscap_pmc::oval_variable_model_iterator_next;
*oval_variable_model_iterator_free = *openscap_pmc::oval_variable_model_iterator_free;
*oval_probe_query_sysinfo = *openscap_pmc::oval_probe_query_sysinfo;
*oval_probe_query_object = *openscap_pmc::oval_probe_query_object;
*oval_probe_query_definition = *openscap_pmc::oval_probe_query_definition;
*oval_probe_query_variable = *openscap_pmc::oval_probe_query_variable;
*oval_probe_meta_list = *openscap_pmc::oval_probe_meta_list;
*oval_probe_ext_getdir = *openscap_pmc::oval_probe_ext_getdir;
*oval_probe_session_new = *openscap_pmc::oval_probe_session_new;
*oval_probe_session_destroy = *openscap_pmc::oval_probe_session_destroy;
*oval_probe_session_close = *openscap_pmc::oval_probe_session_close;
*oval_probe_session_reset = *openscap_pmc::oval_probe_session_reset;
*oval_probe_session_abort = *openscap_pmc::oval_probe_session_abort;
*oval_probe_session_sethandler = *openscap_pmc::oval_probe_session_sethandler;
*oval_probe_session_getmodel = *openscap_pmc::oval_probe_session_getmodel;
*oval_agent_eval_rule = *openscap_pmc::oval_agent_eval_rule;
*oval_agent_resolve_variables = *openscap_pmc::oval_agent_resolve_variables;
*xccdf_policy_model_register_engine_oval = *openscap_pmc::xccdf_policy_model_register_engine_oval;
*oval_agent_export_sysinfo_to_xccdf_result = *openscap_pmc::oval_agent_export_sysinfo_to_xccdf_result;

# ------- VARIABLE STUBS --------

package openscap_pm;

*OSCAP_DOCUMENT_UNKNOWN = *openscap_pmc::OSCAP_DOCUMENT_UNKNOWN;
*OSCAP_DOCUMENT_OVAL_DEFINITIONS = *openscap_pmc::OSCAP_DOCUMENT_OVAL_DEFINITIONS;
*OSCAP_DOCUMENT_OVAL_VARIABLES = *openscap_pmc::OSCAP_DOCUMENT_OVAL_VARIABLES;
*OSCAP_DOCUMENT_OVAL_SYSCHAR = *openscap_pmc::OSCAP_DOCUMENT_OVAL_SYSCHAR;
*OSCAP_DOCUMENT_OVAL_RESULTS = *openscap_pmc::OSCAP_DOCUMENT_OVAL_RESULTS;
*OSCAP_DOCUMENT_OVAL_DIRECTIVES = *openscap_pmc::OSCAP_DOCUMENT_OVAL_DIRECTIVES;
*OSCAP_DOCUMENT_XCCDF = *openscap_pmc::OSCAP_DOCUMENT_XCCDF;
*OSCAP_DOCUMENT_CPE_LANGUAGE = *openscap_pmc::OSCAP_DOCUMENT_CPE_LANGUAGE;
*OSCAP_DOCUMENT_CPE_DICTIONARY = *openscap_pmc::OSCAP_DOCUMENT_CPE_DICTIONARY;
*OSCAP_DOCUMENT_CVE_FEED = *openscap_pmc::OSCAP_DOCUMENT_CVE_FEED;
*OSCAP_DOCUMENT_SCE_RESULT = *openscap_pmc::OSCAP_DOCUMENT_SCE_RESULT;
*OSCAP_DOCUMENT_SDS = *openscap_pmc::OSCAP_DOCUMENT_SDS;
*OSCAP_DOCUMENT_ARF = *openscap_pmc::OSCAP_DOCUMENT_ARF;
*OSCAP_DOCUMENT_XCCDF_TAILORING = *openscap_pmc::OSCAP_DOCUMENT_XCCDF_TAILORING;
*OSCAP_EFAMILY_NONE = *openscap_pmc::OSCAP_EFAMILY_NONE;
*OSCAP_EFAMILY_GLIBC = *openscap_pmc::OSCAP_EFAMILY_GLIBC;
*OSCAP_EFAMILY_XML = *openscap_pmc::OSCAP_EFAMILY_XML;
*OSCAP_EFAMILY_OSCAP = *openscap_pmc::OSCAP_EFAMILY_OSCAP;
*OSCAP_EFAMILY_OVAL = *openscap_pmc::OSCAP_EFAMILY_OVAL;
*OSCAP_EFAMILY_XCCDF = *openscap_pmc::OSCAP_EFAMILY_XCCDF;
*OSCAP_EFAMILY_SCE = *openscap_pmc::OSCAP_EFAMILY_SCE;
*OSCAP_EFAMILY_NET = *openscap_pmc::OSCAP_EFAMILY_NET;
*OSCAP_LANG_ENGLISH = *openscap_pmc::OSCAP_LANG_ENGLISH;
*OSCAP_LANG_ENGLISH_US = *openscap_pmc::OSCAP_LANG_ENGLISH_US;
*OSCAP_LANG_DEFAULT = *openscap_pmc::OSCAP_LANG_DEFAULT;
*CPE_PART_NONE = *openscap_pmc::CPE_PART_NONE;
*CPE_PART_HW = *openscap_pmc::CPE_PART_HW;
*CPE_PART_OS = *openscap_pmc::CPE_PART_OS;
*CPE_PART_APP = *openscap_pmc::CPE_PART_APP;
*CPE_FORMAT_UNKNOWN = *openscap_pmc::CPE_FORMAT_UNKNOWN;
*CPE_FORMAT_URI = *openscap_pmc::CPE_FORMAT_URI;
*CPE_FORMAT_STRING = *openscap_pmc::CPE_FORMAT_STRING;
*CPE_FORMAT_WFN = *openscap_pmc::CPE_FORMAT_WFN;
*CPE_LANG_OPER_INVALID = *openscap_pmc::CPE_LANG_OPER_INVALID;
*CPE_LANG_OPER_AND = *openscap_pmc::CPE_LANG_OPER_AND;
*CPE_LANG_OPER_OR = *openscap_pmc::CPE_LANG_OPER_OR;
*CPE_LANG_OPER_MATCH = *openscap_pmc::CPE_LANG_OPER_MATCH;
*CPE_LANG_OPER_CHECK = *openscap_pmc::CPE_LANG_OPER_CHECK;
*CPE_LANG_OPER_MASK = *openscap_pmc::CPE_LANG_OPER_MASK;
*CPE_LANG_OPER_NOT = *openscap_pmc::CPE_LANG_OPER_NOT;
*CPE_LANG_OPER_NAND = *openscap_pmc::CPE_LANG_OPER_NAND;
*CPE_LANG_OPER_NOR = *openscap_pmc::CPE_LANG_OPER_NOR;
*CVSS_NONE = *openscap_pmc::CVSS_NONE;
*CVSS_BASE = *openscap_pmc::CVSS_BASE;
*CVSS_TEMPORAL = *openscap_pmc::CVSS_TEMPORAL;
*CVSS_ENVIRONMENTAL = *openscap_pmc::CVSS_ENVIRONMENTAL;
*CVSS_AV_NOT_SET = *openscap_pmc::CVSS_AV_NOT_SET;
*CVSS_AV_LOCAL = *openscap_pmc::CVSS_AV_LOCAL;
*CVSS_AV_ADJACENT_NETWORK = *openscap_pmc::CVSS_AV_ADJACENT_NETWORK;
*CVSS_AV_NETWORK = *openscap_pmc::CVSS_AV_NETWORK;
*CVSS_AV_END_ = *openscap_pmc::CVSS_AV_END_;
*CVSS_AC_NOT_SET = *openscap_pmc::CVSS_AC_NOT_SET;
*CVSS_AC_HIGH = *openscap_pmc::CVSS_AC_HIGH;
*CVSS_AC_MEDIUM = *openscap_pmc::CVSS_AC_MEDIUM;
*CVSS_AC_LOW = *openscap_pmc::CVSS_AC_LOW;
*CVSS_AC_END_ = *openscap_pmc::CVSS_AC_END_;
*CVSS_AU_NOT_SET = *openscap_pmc::CVSS_AU_NOT_SET;
*CVSS_AU_MULTIPLE = *openscap_pmc::CVSS_AU_MULTIPLE;
*CVSS_AU_SINGLE = *openscap_pmc::CVSS_AU_SINGLE;
*CVSS_AU_NONE = *openscap_pmc::CVSS_AU_NONE;
*CVSS_AU_END_ = *openscap_pmc::CVSS_AU_END_;
*CVSS_IMP_NOT_SET = *openscap_pmc::CVSS_IMP_NOT_SET;
*CVSS_IMP_NONE = *openscap_pmc::CVSS_IMP_NONE;
*CVSS_IMP_PARTIAL = *openscap_pmc::CVSS_IMP_PARTIAL;
*CVSS_IMP_COMPLETE = *openscap_pmc::CVSS_IMP_COMPLETE;
*CVSS_IMP_END_ = *openscap_pmc::CVSS_IMP_END_;
*CVSS_E_NOT_DEFINED = *openscap_pmc::CVSS_E_NOT_DEFINED;
*CVSS_E_UNPROVEN = *openscap_pmc::CVSS_E_UNPROVEN;
*CVSS_E_PROOF_OF_CONCEPT = *openscap_pmc::CVSS_E_PROOF_OF_CONCEPT;
*CVSS_E_FUNCTIONAL = *openscap_pmc::CVSS_E_FUNCTIONAL;
*CVSS_E_HIGH = *openscap_pmc::CVSS_E_HIGH;
*CVSS_E_END_ = *openscap_pmc::CVSS_E_END_;
*CVSS_RL_NOT_DEFINED = *openscap_pmc::CVSS_RL_NOT_DEFINED;
*CVSS_RL_OFFICIAL_FIX = *openscap_pmc::CVSS_RL_OFFICIAL_FIX;
*CVSS_RL_TEMPORARY_FIX = *openscap_pmc::CVSS_RL_TEMPORARY_FIX;
*CVSS_RL_WORKAROUND = *openscap_pmc::CVSS_RL_WORKAROUND;
*CVSS_RL_UNAVAILABLE = *openscap_pmc::CVSS_RL_UNAVAILABLE;
*CVSS_RL_END_ = *openscap_pmc::CVSS_RL_END_;
*CVSS_RC_NOT_DEFINED = *openscap_pmc::CVSS_RC_NOT_DEFINED;
*CVSS_RC_UNCONFIRMED = *openscap_pmc::CVSS_RC_UNCONFIRMED;
*CVSS_RC_UNCORROBORATED = *openscap_pmc::CVSS_RC_UNCORROBORATED;
*CVSS_RC_CONFIRMED = *openscap_pmc::CVSS_RC_CONFIRMED;
*CVSS_RC_END_ = *openscap_pmc::CVSS_RC_END_;
*CVSS_CDP_NOT_DEFINED = *openscap_pmc::CVSS_CDP_NOT_DEFINED;
*CVSS_CDP_NONE = *openscap_pmc::CVSS_CDP_NONE;
*CVSS_CDP_LOW = *openscap_pmc::CVSS_CDP_LOW;
*CVSS_CDP_LOW_MEDIUM = *openscap_pmc::CVSS_CDP_LOW_MEDIUM;
*CVSS_CDP_MEDIUM_HIGH = *openscap_pmc::CVSS_CDP_MEDIUM_HIGH;
*CVSS_CDP_HIGH = *openscap_pmc::CVSS_CDP_HIGH;
*CVSS_CDP_END_ = *openscap_pmc::CVSS_CDP_END_;
*CVSS_TD_NOT_DEFINED = *openscap_pmc::CVSS_TD_NOT_DEFINED;
*CVSS_TD_NONE = *openscap_pmc::CVSS_TD_NONE;
*CVSS_TD_LOW = *openscap_pmc::CVSS_TD_LOW;
*CVSS_TD_MEDIUM = *openscap_pmc::CVSS_TD_MEDIUM;
*CVSS_TD_HIGH = *openscap_pmc::CVSS_TD_HIGH;
*CVSS_TD_END_ = *openscap_pmc::CVSS_TD_END_;
*CVSS_REQ_NOT_DEFINED = *openscap_pmc::CVSS_REQ_NOT_DEFINED;
*CVSS_REQ_LOW = *openscap_pmc::CVSS_REQ_LOW;
*CVSS_REQ_MEDIUM = *openscap_pmc::CVSS_REQ_MEDIUM;
*CVSS_REQ_HIGH = *openscap_pmc::CVSS_REQ_HIGH;
*CVSS_REQ_END_ = *openscap_pmc::CVSS_REQ_END_;
*XCCDF_BENCHMARK = *openscap_pmc::XCCDF_BENCHMARK;
*XCCDF_PROFILE = *openscap_pmc::XCCDF_PROFILE;
*XCCDF_RESULT = *openscap_pmc::XCCDF_RESULT;
*XCCDF_RULE = *openscap_pmc::XCCDF_RULE;
*XCCDF_GROUP = *openscap_pmc::XCCDF_GROUP;
*XCCDF_VALUE = *openscap_pmc::XCCDF_VALUE;
*XCCDF_CONTENT = *openscap_pmc::XCCDF_CONTENT;
*XCCDF_ITEM = *openscap_pmc::XCCDF_ITEM;
*XCCDF_OBJECT = *openscap_pmc::XCCDF_OBJECT;
*XCCDF_IFACE_HINT_NONE = *openscap_pmc::XCCDF_IFACE_HINT_NONE;
*XCCDF_IFACE_HINT_CHOICE = *openscap_pmc::XCCDF_IFACE_HINT_CHOICE;
*XCCDF_IFACE_HINT_TEXTLINE = *openscap_pmc::XCCDF_IFACE_HINT_TEXTLINE;
*XCCDF_IFACE_HINT_TEXT = *openscap_pmc::XCCDF_IFACE_HINT_TEXT;
*XCCDF_IFACE_HINT_DATE = *openscap_pmc::XCCDF_IFACE_HINT_DATE;
*XCCDF_IFACE_HINT_DATETIME = *openscap_pmc::XCCDF_IFACE_HINT_DATETIME;
*XCCDF_STATUS_NOT_SPECIFIED = *openscap_pmc::XCCDF_STATUS_NOT_SPECIFIED;
*XCCDF_STATUS_ACCEPTED = *openscap_pmc::XCCDF_STATUS_ACCEPTED;
*XCCDF_STATUS_DEPRECATED = *openscap_pmc::XCCDF_STATUS_DEPRECATED;
*XCCDF_STATUS_DRAFT = *openscap_pmc::XCCDF_STATUS_DRAFT;
*XCCDF_STATUS_INCOMPLETE = *openscap_pmc::XCCDF_STATUS_INCOMPLETE;
*XCCDF_STATUS_INTERIM = *openscap_pmc::XCCDF_STATUS_INTERIM;
*XCCDF_TYPE_NUMBER = *openscap_pmc::XCCDF_TYPE_NUMBER;
*XCCDF_TYPE_STRING = *openscap_pmc::XCCDF_TYPE_STRING;
*XCCDF_TYPE_BOOLEAN = *openscap_pmc::XCCDF_TYPE_BOOLEAN;
*XCCDF_OPERATOR_EQUALS = *openscap_pmc::XCCDF_OPERATOR_EQUALS;
*XCCDF_OPERATOR_NOT_EQUAL = *openscap_pmc::XCCDF_OPERATOR_NOT_EQUAL;
*XCCDF_OPERATOR_GREATER = *openscap_pmc::XCCDF_OPERATOR_GREATER;
*XCCDF_OPERATOR_GREATER_EQUAL = *openscap_pmc::XCCDF_OPERATOR_GREATER_EQUAL;
*XCCDF_OPERATOR_LESS = *openscap_pmc::XCCDF_OPERATOR_LESS;
*XCCDF_OPERATOR_LESS_EQUAL = *openscap_pmc::XCCDF_OPERATOR_LESS_EQUAL;
*XCCDF_OPERATOR_PATTERN_MATCH = *openscap_pmc::XCCDF_OPERATOR_PATTERN_MATCH;
*XCCDF_OPERATOR_AND = *openscap_pmc::XCCDF_OPERATOR_AND;
*XCCDF_OPERATOR_OR = *openscap_pmc::XCCDF_OPERATOR_OR;
*XCCDF_LEVEL_NOT_DEFINED = *openscap_pmc::XCCDF_LEVEL_NOT_DEFINED;
*XCCDF_UNKNOWN = *openscap_pmc::XCCDF_UNKNOWN;
*XCCDF_INFO = *openscap_pmc::XCCDF_INFO;
*XCCDF_LOW = *openscap_pmc::XCCDF_LOW;
*XCCDF_MEDIUM = *openscap_pmc::XCCDF_MEDIUM;
*XCCDF_HIGH = *openscap_pmc::XCCDF_HIGH;
*XCCDF_MSG_INFO = *openscap_pmc::XCCDF_MSG_INFO;
*XCCDF_MSG_WARNING = *openscap_pmc::XCCDF_MSG_WARNING;
*XCCDF_MSG_ERROR = *openscap_pmc::XCCDF_MSG_ERROR;
*XCCDF_ROLE_FULL = *openscap_pmc::XCCDF_ROLE_FULL;
*XCCDF_ROLE_UNSCORED = *openscap_pmc::XCCDF_ROLE_UNSCORED;
*XCCDF_ROLE_UNCHECKED = *openscap_pmc::XCCDF_ROLE_UNCHECKED;
*XCCDF_WARNING_NOT_SPECIFIED = *openscap_pmc::XCCDF_WARNING_NOT_SPECIFIED;
*XCCDF_WARNING_GENERAL = *openscap_pmc::XCCDF_WARNING_GENERAL;
*XCCDF_WARNING_FUNCTIONALITY = *openscap_pmc::XCCDF_WARNING_FUNCTIONALITY;
*XCCDF_WARNING_PERFORMANCE = *openscap_pmc::XCCDF_WARNING_PERFORMANCE;
*XCCDF_WARNING_HARDWARE = *openscap_pmc::XCCDF_WARNING_HARDWARE;
*XCCDF_WARNING_LEGAL = *openscap_pmc::XCCDF_WARNING_LEGAL;
*XCCDF_WARNING_REGULATORY = *openscap_pmc::XCCDF_WARNING_REGULATORY;
*XCCDF_WARNING_MANAGEMENT = *openscap_pmc::XCCDF_WARNING_MANAGEMENT;
*XCCDF_WARNING_AUDIT = *openscap_pmc::XCCDF_WARNING_AUDIT;
*XCCDF_WARNING_DEPENDENCY = *openscap_pmc::XCCDF_WARNING_DEPENDENCY;
*XCCDF_STRATEGY_UNKNOWN = *openscap_pmc::XCCDF_STRATEGY_UNKNOWN;
*XCCDF_STRATEGY_CONFIGURE = *openscap_pmc::XCCDF_STRATEGY_CONFIGURE;
*XCCDF_STRATEGY_DISABLE = *openscap_pmc::XCCDF_STRATEGY_DISABLE;
*XCCDF_STRATEGY_ENABLE = *openscap_pmc::XCCDF_STRATEGY_ENABLE;
*XCCDF_STRATEGY_PATCH = *openscap_pmc::XCCDF_STRATEGY_PATCH;
*XCCDF_STRATEGY_POLICY = *openscap_pmc::XCCDF_STRATEGY_POLICY;
*XCCDF_STRATEGY_RESTRICT = *openscap_pmc::XCCDF_STRATEGY_RESTRICT;
*XCCDF_STRATEGY_UPDATE = *openscap_pmc::XCCDF_STRATEGY_UPDATE;
*XCCDF_STRATEGY_COMBINATION = *openscap_pmc::XCCDF_STRATEGY_COMBINATION;
*XCCDF_RESULT_PASS = *openscap_pmc::XCCDF_RESULT_PASS;
*XCCDF_RESULT_FAIL = *openscap_pmc::XCCDF_RESULT_FAIL;
*XCCDF_RESULT_ERROR = *openscap_pmc::XCCDF_RESULT_ERROR;
*XCCDF_RESULT_UNKNOWN = *openscap_pmc::XCCDF_RESULT_UNKNOWN;
*XCCDF_RESULT_NOT_APPLICABLE = *openscap_pmc::XCCDF_RESULT_NOT_APPLICABLE;
*XCCDF_RESULT_NOT_CHECKED = *openscap_pmc::XCCDF_RESULT_NOT_CHECKED;
*XCCDF_RESULT_NOT_SELECTED = *openscap_pmc::XCCDF_RESULT_NOT_SELECTED;
*XCCDF_RESULT_INFORMATIONAL = *openscap_pmc::XCCDF_RESULT_INFORMATIONAL;
*XCCDF_RESULT_FIXED = *openscap_pmc::XCCDF_RESULT_FIXED;
*XCCDF_SUBST_NONE = *openscap_pmc::XCCDF_SUBST_NONE;
*XCCDF_SUBST_SUB = *openscap_pmc::XCCDF_SUBST_SUB;
*XCCDF_SUBST_LINK = *openscap_pmc::XCCDF_SUBST_LINK;
*XCCDF_SUBST_INSTANCE = *openscap_pmc::XCCDF_SUBST_INSTANCE;
*POLICY_ENGINE_QUERY_NAMES_FOR_HREF = *openscap_pmc::POLICY_ENGINE_QUERY_NAMES_FOR_HREF;
*OVAL_AFCFML_UNKNOWN = *openscap_pmc::OVAL_AFCFML_UNKNOWN;
*OVAL_AFCFML_CATOS = *openscap_pmc::OVAL_AFCFML_CATOS;
*OVAL_AFCFML_IOS = *openscap_pmc::OVAL_AFCFML_IOS;
*OVAL_AFCFML_MACOS = *openscap_pmc::OVAL_AFCFML_MACOS;
*OVAL_AFCFML_PIXOS = *openscap_pmc::OVAL_AFCFML_PIXOS;
*OVAL_AFCFML_UNDEFINED = *openscap_pmc::OVAL_AFCFML_UNDEFINED;
*OVAL_AFCFML_UNIX = *openscap_pmc::OVAL_AFCFML_UNIX;
*OVAL_AFCFML_WINDOWS = *openscap_pmc::OVAL_AFCFML_WINDOWS;
*OVAL_NODETYPE_UNKNOWN = *openscap_pmc::OVAL_NODETYPE_UNKNOWN;
*OVAL_NODETYPE_CRITERIA = *openscap_pmc::OVAL_NODETYPE_CRITERIA;
*OVAL_NODETYPE_CRITERION = *openscap_pmc::OVAL_NODETYPE_CRITERION;
*OVAL_NODETYPE_EXTENDDEF = *openscap_pmc::OVAL_NODETYPE_EXTENDDEF;
*OVAL_OPERATOR_UNKNOWN = *openscap_pmc::OVAL_OPERATOR_UNKNOWN;
*OVAL_OPERATOR_AND = *openscap_pmc::OVAL_OPERATOR_AND;
*OVAL_OPERATOR_ONE = *openscap_pmc::OVAL_OPERATOR_ONE;
*OVAL_OPERATOR_OR = *openscap_pmc::OVAL_OPERATOR_OR;
*OVAL_OPERATOR_XOR = *openscap_pmc::OVAL_OPERATOR_XOR;
*OVAL_OPERATION_UNKNOWN = *openscap_pmc::OVAL_OPERATION_UNKNOWN;
*OVAL_OPERATION_BITWISE_AND = *openscap_pmc::OVAL_OPERATION_BITWISE_AND;
*OVAL_OPERATION_BITWISE_OR = *openscap_pmc::OVAL_OPERATION_BITWISE_OR;
*OVAL_OPERATION_CASE_INSENSITIVE_EQUALS = *openscap_pmc::OVAL_OPERATION_CASE_INSENSITIVE_EQUALS;
*OVAL_OPERATION_CASE_INSENSITIVE_NOT_EQUAL = *openscap_pmc::OVAL_OPERATION_CASE_INSENSITIVE_NOT_EQUAL;
*OVAL_OPERATION_EQUALS = *openscap_pmc::OVAL_OPERATION_EQUALS;
*OVAL_OPERATION_GREATER_THAN = *openscap_pmc::OVAL_OPERATION_GREATER_THAN;
*OVAL_OPERATION_GREATER_THAN_OR_EQUAL = *openscap_pmc::OVAL_OPERATION_GREATER_THAN_OR_EQUAL;
*OVAL_OPERATION_LESS_THAN = *openscap_pmc::OVAL_OPERATION_LESS_THAN;
*OVAL_OPERATION_LESS_THAN_OR_EQUAL = *openscap_pmc::OVAL_OPERATION_LESS_THAN_OR_EQUAL;
*OVAL_OPERATION_NOT_EQUAL = *openscap_pmc::OVAL_OPERATION_NOT_EQUAL;
*OVAL_OPERATION_PATTERN_MATCH = *openscap_pmc::OVAL_OPERATION_PATTERN_MATCH;
*OVAL_OPERATION_SUBSET_OF = *openscap_pmc::OVAL_OPERATION_SUBSET_OF;
*OVAL_OPERATION_SUPERSET_OF = *openscap_pmc::OVAL_OPERATION_SUPERSET_OF;
*OVAL_EXISTENCE_UNKNOWN = *openscap_pmc::OVAL_EXISTENCE_UNKNOWN;
*OVAL_ALL_EXIST = *openscap_pmc::OVAL_ALL_EXIST;
*OVAL_ANY_EXIST = *openscap_pmc::OVAL_ANY_EXIST;
*OVAL_AT_LEAST_ONE_EXISTS = *openscap_pmc::OVAL_AT_LEAST_ONE_EXISTS;
*OVAL_ONLY_ONE_EXISTS = *openscap_pmc::OVAL_ONLY_ONE_EXISTS;
*OVAL_NONE_EXIST = *openscap_pmc::OVAL_NONE_EXIST;
*OVAL_CHECK_UNKNOWN = *openscap_pmc::OVAL_CHECK_UNKNOWN;
*OVAL_CHECK_ALL = *openscap_pmc::OVAL_CHECK_ALL;
*OVAL_CHECK_AT_LEAST_ONE = *openscap_pmc::OVAL_CHECK_AT_LEAST_ONE;
*OVAL_CHECK_NONE_EXIST = *openscap_pmc::OVAL_CHECK_NONE_EXIST;
*OVAL_CHECK_NONE_SATISFY = *openscap_pmc::OVAL_CHECK_NONE_SATISFY;
*OVAL_CHECK_ONLY_ONE = *openscap_pmc::OVAL_CHECK_ONLY_ONE;
*OVAL_OBJECTCONTENT_UNKNOWN = *openscap_pmc::OVAL_OBJECTCONTENT_UNKNOWN;
*OVAL_OBJECTCONTENT_ENTITY = *openscap_pmc::OVAL_OBJECTCONTENT_ENTITY;
*OVAL_OBJECTCONTENT_SET = *openscap_pmc::OVAL_OBJECTCONTENT_SET;
*OVAL_OBJECTCONTENT_FILTER = *openscap_pmc::OVAL_OBJECTCONTENT_FILTER;
*OVAL_ENTITY_TYPE_UNKNOWN = *openscap_pmc::OVAL_ENTITY_TYPE_UNKNOWN;
*OVAL_ENTITY_TYPE_ANY = *openscap_pmc::OVAL_ENTITY_TYPE_ANY;
*OVAL_ENTITY_TYPE_BINARY = *openscap_pmc::OVAL_ENTITY_TYPE_BINARY;
*OVAL_ENTITY_TYPE_BOOLEAN = *openscap_pmc::OVAL_ENTITY_TYPE_BOOLEAN;
*OVAL_ENTITY_TYPE_FLOAT = *openscap_pmc::OVAL_ENTITY_TYPE_FLOAT;
*OVAL_ENTITY_TYPE_INTEGER = *openscap_pmc::OVAL_ENTITY_TYPE_INTEGER;
*OVAL_ENTITY_TYPE_STRING = *openscap_pmc::OVAL_ENTITY_TYPE_STRING;
*OVAL_FILTER_ACTION_UNKNOWN = *openscap_pmc::OVAL_FILTER_ACTION_UNKNOWN;
*OVAL_FILTER_ACTION_EXCLUDE = *openscap_pmc::OVAL_FILTER_ACTION_EXCLUDE;
*OVAL_FILTER_ACTION_INCLUDE = *openscap_pmc::OVAL_FILTER_ACTION_INCLUDE;
*OVAL_DATATYPE_UNKNOWN = *openscap_pmc::OVAL_DATATYPE_UNKNOWN;
*OVAL_DATATYPE_BINARY = *openscap_pmc::OVAL_DATATYPE_BINARY;
*OVAL_DATATYPE_BOOLEAN = *openscap_pmc::OVAL_DATATYPE_BOOLEAN;
*OVAL_DATATYPE_EVR_STRING = *openscap_pmc::OVAL_DATATYPE_EVR_STRING;
*OVAL_DATATYPE_FILESET_REVISION = *openscap_pmc::OVAL_DATATYPE_FILESET_REVISION;
*OVAL_DATATYPE_FLOAT = *openscap_pmc::OVAL_DATATYPE_FLOAT;
*OVAL_DATATYPE_INTEGER = *openscap_pmc::OVAL_DATATYPE_INTEGER;
*OVAL_DATATYPE_IOS_VERSION = *openscap_pmc::OVAL_DATATYPE_IOS_VERSION;
*OVAL_DATATYPE_IPV4ADDR = *openscap_pmc::OVAL_DATATYPE_IPV4ADDR;
*OVAL_DATATYPE_IPV6ADDR = *openscap_pmc::OVAL_DATATYPE_IPV6ADDR;
*OVAL_DATATYPE_RECORD = *openscap_pmc::OVAL_DATATYPE_RECORD;
*OVAL_DATATYPE_SEXP = *openscap_pmc::OVAL_DATATYPE_SEXP;
*OVAL_DATATYPE_STRING = *openscap_pmc::OVAL_DATATYPE_STRING;
*OVAL_DATATYPE_STRING_M = *openscap_pmc::OVAL_DATATYPE_STRING_M;
*OVAL_DATATYPE_VERSION = *openscap_pmc::OVAL_DATATYPE_VERSION;
*OVAL_DATATYPE_DEBIAN_EVR_STRING = *openscap_pmc::OVAL_DATATYPE_DEBIAN_EVR_STRING;
*OVAL_ENTITY_VARREF_UNKNOWN = *openscap_pmc::OVAL_ENTITY_VARREF_UNKNOWN;
*OVAL_ENTITY_VARREF_NONE = *openscap_pmc::OVAL_ENTITY_VARREF_NONE;
*OVAL_ENTITY_VARREF_ATTRIBUTE = *openscap_pmc::OVAL_ENTITY_VARREF_ATTRIBUTE;
*OVAL_ENTITY_VARREF_ELEMENT = *openscap_pmc::OVAL_ENTITY_VARREF_ELEMENT;
*OVAL_SET_UNKNOWN = *openscap_pmc::OVAL_SET_UNKNOWN;
*OVAL_SET_AGGREGATE = *openscap_pmc::OVAL_SET_AGGREGATE;
*OVAL_SET_COLLECTIVE = *openscap_pmc::OVAL_SET_COLLECTIVE;
*OVAL_SET_OPERATION_UNKNOWN = *openscap_pmc::OVAL_SET_OPERATION_UNKNOWN;
*OVAL_SET_OPERATION_COMPLEMENT = *openscap_pmc::OVAL_SET_OPERATION_COMPLEMENT;
*OVAL_SET_OPERATION_INTERSECTION = *openscap_pmc::OVAL_SET_OPERATION_INTERSECTION;
*OVAL_SET_OPERATION_UNION = *openscap_pmc::OVAL_SET_OPERATION_UNION;
*OVAL_VARIABLE_UNKNOWN = *openscap_pmc::OVAL_VARIABLE_UNKNOWN;
*OVAL_VARIABLE_EXTERNAL = *openscap_pmc::OVAL_VARIABLE_EXTERNAL;
*OVAL_VARIABLE_CONSTANT = *openscap_pmc::OVAL_VARIABLE_CONSTANT;
*OVAL_VARIABLE_LOCAL = *openscap_pmc::OVAL_VARIABLE_LOCAL;
*OVAL_FUNCTION = *openscap_pmc::OVAL_FUNCTION;
*OVAL_COMPONENT_UNKNOWN = *openscap_pmc::OVAL_COMPONENT_UNKNOWN;
*OVAL_COMPONENT_LITERAL = *openscap_pmc::OVAL_COMPONENT_LITERAL;
*OVAL_COMPONENT_OBJECTREF = *openscap_pmc::OVAL_COMPONENT_OBJECTREF;
*OVAL_COMPONENT_VARREF = *openscap_pmc::OVAL_COMPONENT_VARREF;
*OVAL_COMPONENT_FUNCTION = *openscap_pmc::OVAL_COMPONENT_FUNCTION;
*OVAL_FUNCTION_BEGIN = *openscap_pmc::OVAL_FUNCTION_BEGIN;
*OVAL_FUNCTION_CONCAT = *openscap_pmc::OVAL_FUNCTION_CONCAT;
*OVAL_FUNCTION_END = *openscap_pmc::OVAL_FUNCTION_END;
*OVAL_FUNCTION_SPLIT = *openscap_pmc::OVAL_FUNCTION_SPLIT;
*OVAL_FUNCTION_SUBSTRING = *openscap_pmc::OVAL_FUNCTION_SUBSTRING;
*OVAL_FUNCTION_TIMEDIF = *openscap_pmc::OVAL_FUNCTION_TIMEDIF;
*OVAL_FUNCTION_ESCAPE_REGEX = *openscap_pmc::OVAL_FUNCTION_ESCAPE_REGEX;
*OVAL_FUNCTION_REGEX_CAPTURE = *openscap_pmc::OVAL_FUNCTION_REGEX_CAPTURE;
*OVAL_FUNCTION_ARITHMETIC = *openscap_pmc::OVAL_FUNCTION_ARITHMETIC;
*OVAL_FUNCTION_COUNT = *openscap_pmc::OVAL_FUNCTION_COUNT;
*OVAL_FUNCTION_UNIQUE = *openscap_pmc::OVAL_FUNCTION_UNIQUE;
*OVAL_FUNCTION_GLOB_TO_REGEX = *openscap_pmc::OVAL_FUNCTION_GLOB_TO_REGEX;
*OVAL_FUNCTION_LAST = *openscap_pmc::OVAL_FUNCTION_LAST;
*OVAL_ARITHMETIC_UNKNOWN = *openscap_pmc::OVAL_ARITHMETIC_UNKNOWN;
*OVAL_ARITHMETIC_ADD = *openscap_pmc::OVAL_ARITHMETIC_ADD;
*OVAL_ARITHMETIC_MULTIPLY = *openscap_pmc::OVAL_ARITHMETIC_MULTIPLY;
*OVAL_ARITHMETIC_SUBTRACT = *openscap_pmc::OVAL_ARITHMETIC_SUBTRACT;
*OVAL_ARITHMETIC_DIVIDE = *openscap_pmc::OVAL_ARITHMETIC_DIVIDE;
*OVAL_DATETIME_UNKNOWN = *openscap_pmc::OVAL_DATETIME_UNKNOWN;
*OVAL_DATETIME_YEAR_MONTH_DAY = *openscap_pmc::OVAL_DATETIME_YEAR_MONTH_DAY;
*OVAL_DATETIME_MONTH_DAY_YEAR = *openscap_pmc::OVAL_DATETIME_MONTH_DAY_YEAR;
*OVAL_DATETIME_DAY_MONTH_YEAR = *openscap_pmc::OVAL_DATETIME_DAY_MONTH_YEAR;
*OVAL_DATETIME_WIN_FILETIME = *openscap_pmc::OVAL_DATETIME_WIN_FILETIME;
*OVAL_DATETIME_SECONDS_SINCE_EPOCH = *openscap_pmc::OVAL_DATETIME_SECONDS_SINCE_EPOCH;
*OVAL_DATETIME_CIM_DATETIME = *openscap_pmc::OVAL_DATETIME_CIM_DATETIME;
*OVAL_RECORD_FIELD_UNKNOWN = *openscap_pmc::OVAL_RECORD_FIELD_UNKNOWN;
*OVAL_RECORD_FIELD_STATE = *openscap_pmc::OVAL_RECORD_FIELD_STATE;
*OVAL_RECORD_FIELD_ITEM = *openscap_pmc::OVAL_RECORD_FIELD_ITEM;
*SYSCHAR_FLAG_UNKNOWN = *openscap_pmc::SYSCHAR_FLAG_UNKNOWN;
*SYSCHAR_FLAG_ERROR = *openscap_pmc::SYSCHAR_FLAG_ERROR;
*SYSCHAR_FLAG_COMPLETE = *openscap_pmc::SYSCHAR_FLAG_COMPLETE;
*SYSCHAR_FLAG_INCOMPLETE = *openscap_pmc::SYSCHAR_FLAG_INCOMPLETE;
*SYSCHAR_FLAG_DOES_NOT_EXIST = *openscap_pmc::SYSCHAR_FLAG_DOES_NOT_EXIST;
*SYSCHAR_FLAG_NOT_COLLECTED = *openscap_pmc::SYSCHAR_FLAG_NOT_COLLECTED;
*SYSCHAR_FLAG_NOT_APPLICABLE = *openscap_pmc::SYSCHAR_FLAG_NOT_APPLICABLE;
*SYSCHAR_STATUS_UNKNOWN = *openscap_pmc::SYSCHAR_STATUS_UNKNOWN;
*SYSCHAR_STATUS_ERROR = *openscap_pmc::SYSCHAR_STATUS_ERROR;
*SYSCHAR_STATUS_EXISTS = *openscap_pmc::SYSCHAR_STATUS_EXISTS;
*SYSCHAR_STATUS_DOES_NOT_EXIST = *openscap_pmc::SYSCHAR_STATUS_DOES_NOT_EXIST;
*SYSCHAR_STATUS_NOT_COLLECTED = *openscap_pmc::SYSCHAR_STATUS_NOT_COLLECTED;
*OVAL_MESSAGE_LEVEL_NONE = *openscap_pmc::OVAL_MESSAGE_LEVEL_NONE;
*OVAL_MESSAGE_LEVEL_DEBUG = *openscap_pmc::OVAL_MESSAGE_LEVEL_DEBUG;
*OVAL_MESSAGE_LEVEL_INFO = *openscap_pmc::OVAL_MESSAGE_LEVEL_INFO;
*OVAL_MESSAGE_LEVEL_WARNING = *openscap_pmc::OVAL_MESSAGE_LEVEL_WARNING;
*OVAL_MESSAGE_LEVEL_ERROR = *openscap_pmc::OVAL_MESSAGE_LEVEL_ERROR;
*OVAL_MESSAGE_LEVEL_FATAL = *openscap_pmc::OVAL_MESSAGE_LEVEL_FATAL;
*OVAL_FAMILY_UNKNOWN = *openscap_pmc::OVAL_FAMILY_UNKNOWN;
*OVAL_FAMILY_AIX = *openscap_pmc::OVAL_FAMILY_AIX;
*OVAL_FAMILY_APACHE = *openscap_pmc::OVAL_FAMILY_APACHE;
*OVAL_FAMILY_CATOS = *openscap_pmc::OVAL_FAMILY_CATOS;
*OVAL_FAMILY_ESX = *openscap_pmc::OVAL_FAMILY_ESX;
*OVAL_FAMILY_FREEBSD = *openscap_pmc::OVAL_FAMILY_FREEBSD;
*OVAL_FAMILY_HPUX = *openscap_pmc::OVAL_FAMILY_HPUX;
*OVAL_FAMILY_INDEPENDENT = *openscap_pmc::OVAL_FAMILY_INDEPENDENT;
*OVAL_FAMILY_IOS = *openscap_pmc::OVAL_FAMILY_IOS;
*OVAL_FAMILY_LINUX = *openscap_pmc::OVAL_FAMILY_LINUX;
*OVAL_FAMILY_MACOS = *openscap_pmc::OVAL_FAMILY_MACOS;
*OVAL_FAMILY_PIXOS = *openscap_pmc::OVAL_FAMILY_PIXOS;
*OVAL_FAMILY_SOLARIS = *openscap_pmc::OVAL_FAMILY_SOLARIS;
*OVAL_FAMILY_UNIX = *openscap_pmc::OVAL_FAMILY_UNIX;
*OVAL_FAMILY_WINDOWS = *openscap_pmc::OVAL_FAMILY_WINDOWS;
*OVAL_SUBTYPE_UNKNOWN = *openscap_pmc::OVAL_SUBTYPE_UNKNOWN;
*OVAL_SUBTYPE_ALL = *openscap_pmc::OVAL_SUBTYPE_ALL;
*OVAL_SUBTYPE_SYSINFO = *openscap_pmc::OVAL_SUBTYPE_SYSINFO;
*OVAL_AIX_FILESET = *openscap_pmc::OVAL_AIX_FILESET;
*OVAL_AIX_FIX = *openscap_pmc::OVAL_AIX_FIX;
*OVAL_AIX_OSLEVEL = *openscap_pmc::OVAL_AIX_OSLEVEL;
*OVAL_APACHE_HTTPD = *openscap_pmc::OVAL_APACHE_HTTPD;
*OVAL_APACHE_VERSION = *openscap_pmc::OVAL_APACHE_VERSION;
*OVAL_CATOS_LINE = *openscap_pmc::OVAL_CATOS_LINE;
*OVAL_CATOS_MODULE = *openscap_pmc::OVAL_CATOS_MODULE;
*OVAL_CATOS_VERSION_55 = *openscap_pmc::OVAL_CATOS_VERSION_55;
*OVAL_CATOS_VERSION = *openscap_pmc::OVAL_CATOS_VERSION;
*OVAL_ESX_PATCH = *openscap_pmc::OVAL_ESX_PATCH;
*OVAL_ESX_PATCH56 = *openscap_pmc::OVAL_ESX_PATCH56;
*OVAL_ESX_VERSION = *openscap_pmc::OVAL_ESX_VERSION;
*OVAL_ESX_VISDKMANAGEDOBJECT = *openscap_pmc::OVAL_ESX_VISDKMANAGEDOBJECT;
*OVAL_FREEBSD_PORT_INFO = *openscap_pmc::OVAL_FREEBSD_PORT_INFO;
*OVAL_HPUX_GETCONF = *openscap_pmc::OVAL_HPUX_GETCONF;
*OVAL_HPUX_PATCH_53 = *openscap_pmc::OVAL_HPUX_PATCH_53;
*OVAL_HPUX_PATCH = *openscap_pmc::OVAL_HPUX_PATCH;
*OVAL_HPUX_SOFTWARE_LIST = *openscap_pmc::OVAL_HPUX_SOFTWARE_LIST;
*OVAL_HPUX_TRUSTED_ACCOUNTS = *openscap_pmc::OVAL_HPUX_TRUSTED_ACCOUNTS;
*OVAL_HPUX_NDD = *openscap_pmc::OVAL_HPUX_NDD;
*OVAL_HPUX_SWLIST = *openscap_pmc::OVAL_HPUX_SWLIST;
*OVAL_HPUX_TRUSTED = *openscap_pmc::OVAL_HPUX_TRUSTED;
*OVAL_INDEPENDENT_FAMILY = *openscap_pmc::OVAL_INDEPENDENT_FAMILY;
*OVAL_INDEPENDENT_FILE_MD5 = *openscap_pmc::OVAL_INDEPENDENT_FILE_MD5;
*OVAL_INDEPENDENT_FILE_HASH = *openscap_pmc::OVAL_INDEPENDENT_FILE_HASH;
*OVAL_INDEPENDENT_ENVIRONMENT_VARIABLE = *openscap_pmc::OVAL_INDEPENDENT_ENVIRONMENT_VARIABLE;
*OVAL_INDEPENDENT_SQL = *openscap_pmc::OVAL_INDEPENDENT_SQL;
*OVAL_INDEPENDENT_TEXT_FILE_CONTENT_54 = *openscap_pmc::OVAL_INDEPENDENT_TEXT_FILE_CONTENT_54;
*OVAL_INDEPENDENT_TEXT_FILE_CONTENT = *openscap_pmc::OVAL_INDEPENDENT_TEXT_FILE_CONTENT;
*OVAL_INDEPENDENT_UNKNOWN = *openscap_pmc::OVAL_INDEPENDENT_UNKNOWN;
*OVAL_INDEPENDENT_VARIABLE = *openscap_pmc::OVAL_INDEPENDENT_VARIABLE;
*OVAL_INDEPENDENT_XML_FILE_CONTENT = *openscap_pmc::OVAL_INDEPENDENT_XML_FILE_CONTENT;
*OVAL_INDEPENDENT_LDAP57 = *openscap_pmc::OVAL_INDEPENDENT_LDAP57;
*OVAL_INDEPENDENT_LDAP = *openscap_pmc::OVAL_INDEPENDENT_LDAP;
*OVAL_INDEPENDENT_SQL57 = *openscap_pmc::OVAL_INDEPENDENT_SQL57;
*OVAL_INDEPENDENT_ENVIRONMENT_VARIABLE58 = *openscap_pmc::OVAL_INDEPENDENT_ENVIRONMENT_VARIABLE58;
*OVAL_INDEPENDENT_FILE_HASH58 = *openscap_pmc::OVAL_INDEPENDENT_FILE_HASH58;
*OVAL_IOS_GLOBAL = *openscap_pmc::OVAL_IOS_GLOBAL;
*OVAL_IOS_INTERFACE = *openscap_pmc::OVAL_IOS_INTERFACE;
*OVAL_IOS_LINE = *openscap_pmc::OVAL_IOS_LINE;
*OVAL_IOS_SNMP = *openscap_pmc::OVAL_IOS_SNMP;
*OVAL_IOS_TCLSH = *openscap_pmc::OVAL_IOS_TCLSH;
*OVAL_IOS_VERSION_55 = *openscap_pmc::OVAL_IOS_VERSION_55;
*OVAL_LINUX_DPKG_INFO = *openscap_pmc::OVAL_LINUX_DPKG_INFO;
*OVAL_LINUX_INET_LISTENING_SERVERS = *openscap_pmc::OVAL_LINUX_INET_LISTENING_SERVERS;
*OVAL_LINUX_RPM_INFO = *openscap_pmc::OVAL_LINUX_RPM_INFO;
*OVAL_LINUX_SLACKWARE_PKG_INFO_TEST = *openscap_pmc::OVAL_LINUX_SLACKWARE_PKG_INFO_TEST;
*OVAL_LINUX_PARTITION = *openscap_pmc::OVAL_LINUX_PARTITION;
*OVAL_LINUX_IFLISTENERS = *openscap_pmc::OVAL_LINUX_IFLISTENERS;
*OVAL_LINUX_RPMVERIFY = *openscap_pmc::OVAL_LINUX_RPMVERIFY;
*OVAL_LINUX_RPMVERIFYFILE = *openscap_pmc::OVAL_LINUX_RPMVERIFYFILE;
*OVAL_LINUX_RPMVERIFYPACKAGE = *openscap_pmc::OVAL_LINUX_RPMVERIFYPACKAGE;
*OVAL_LINUX_SELINUXBOOLEAN = *openscap_pmc::OVAL_LINUX_SELINUXBOOLEAN;
*OVAL_LINUX_SELINUXSECURITYCONTEXT = *openscap_pmc::OVAL_LINUX_SELINUXSECURITYCONTEXT;
*OVAL_LINUX_INET_LISTENING_SERVER = *openscap_pmc::OVAL_LINUX_INET_LISTENING_SERVER;
*OVAL_LINUX_SYSTEMDUNITPROPERTY = *openscap_pmc::OVAL_LINUX_SYSTEMDUNITPROPERTY;
*OVAL_LINUX_SYSTEMDUNITDEPENDENCY = *openscap_pmc::OVAL_LINUX_SYSTEMDUNITDEPENDENCY;
*OVAL_MACOS_ACCOUNT_INFO = *openscap_pmc::OVAL_MACOS_ACCOUNT_INFO;
*OVAL_MACOS_INET_LISTENING_SERVERS = *openscap_pmc::OVAL_MACOS_INET_LISTENING_SERVERS;
*OVAL_MACOS_NVRAM_INFO = *openscap_pmc::OVAL_MACOS_NVRAM_INFO;
*OVAL_MACOS_PWPOLICY = *openscap_pmc::OVAL_MACOS_PWPOLICY;
*OVAL_PIXOS_LINE = *openscap_pmc::OVAL_PIXOS_LINE;
*OVAL_PIXOS_VERSION = *openscap_pmc::OVAL_PIXOS_VERSION;
*OVAL_SOLARIS_ISAINFO = *openscap_pmc::OVAL_SOLARIS_ISAINFO;
*OVAL_SOLARIS_PACKAGE = *openscap_pmc::OVAL_SOLARIS_PACKAGE;
*OVAL_SOLARIS_PATCH = *openscap_pmc::OVAL_SOLARIS_PATCH;
*OVAL_SOLARIS_SMF = *openscap_pmc::OVAL_SOLARIS_SMF;
*OVAL_SOLARIS_PATCH54 = *openscap_pmc::OVAL_SOLARIS_PATCH54;
*OVAL_SOLARIS_NDD = *openscap_pmc::OVAL_SOLARIS_NDD;
*OVAL_SOLARIS_PACKAGECHECK = *openscap_pmc::OVAL_SOLARIS_PACKAGECHECK;
*OVAL_UNIX_FILE = *openscap_pmc::OVAL_UNIX_FILE;
*OVAL_UNIX_INETD = *openscap_pmc::OVAL_UNIX_INETD;
*OVAL_UNIX_INTERFACE = *openscap_pmc::OVAL_UNIX_INTERFACE;
*OVAL_UNIX_PASSWORD = *openscap_pmc::OVAL_UNIX_PASSWORD;
*OVAL_UNIX_PROCESS = *openscap_pmc::OVAL_UNIX_PROCESS;
*OVAL_UNIX_RUNLEVEL = *openscap_pmc::OVAL_UNIX_RUNLEVEL;
*OVAL_UNIX_SCCS = *openscap_pmc::OVAL_UNIX_SCCS;
*OVAL_UNIX_SHADOW = *openscap_pmc::OVAL_UNIX_SHADOW;
*OVAL_UNIX_UNAME = *openscap_pmc::OVAL_UNIX_UNAME;
*OVAL_UNIX_XINETD = *openscap_pmc::OVAL_UNIX_XINETD;
*OVAL_UNIX_DNSCACHE = *openscap_pmc::OVAL_UNIX_DNSCACHE;
*OVAL_UNIX_SYSCTL = *openscap_pmc::OVAL_UNIX_SYSCTL;
*OVAL_UNIX_PROCESS58 = *openscap_pmc::OVAL_UNIX_PROCESS58;
*OVAL_UNIX_FILEEXTENDEDATTRIBUTE = *openscap_pmc::OVAL_UNIX_FILEEXTENDEDATTRIBUTE;
*OVAL_UNIX_GCONF = *openscap_pmc::OVAL_UNIX_GCONF;
*OVAL_UNIX_ROUTINGTABLE = *openscap_pmc::OVAL_UNIX_ROUTINGTABLE;
*OVAL_UNIX_SYMLINK = *openscap_pmc::OVAL_UNIX_SYMLINK;
*OVAL_WINDOWS_ACCESS_TOKEN = *openscap_pmc::OVAL_WINDOWS_ACCESS_TOKEN;
*OVAL_WINDOWS_ACTIVE_DIRECTORY = *openscap_pmc::OVAL_WINDOWS_ACTIVE_DIRECTORY;
*OVAL_WINDOWS_AUDIT_EVENT_POLICY = *openscap_pmc::OVAL_WINDOWS_AUDIT_EVENT_POLICY;
*OVAL_WINDOWS_AUDIT_EVENT_SUBCATEGORIES = *openscap_pmc::OVAL_WINDOWS_AUDIT_EVENT_SUBCATEGORIES;
*OVAL_WINDOWS_FILE = *openscap_pmc::OVAL_WINDOWS_FILE;
*OVAL_WINDOWS_FILE_AUDITED_PERMISSIONS_53 = *openscap_pmc::OVAL_WINDOWS_FILE_AUDITED_PERMISSIONS_53;
*OVAL_WINDOWS_FILE_AUDITED_PERMISSIONS = *openscap_pmc::OVAL_WINDOWS_FILE_AUDITED_PERMISSIONS;
*OVAL_WINDOWS_FILE_EFFECTIVE_RIGHTS_53 = *openscap_pmc::OVAL_WINDOWS_FILE_EFFECTIVE_RIGHTS_53;
*OVAL_WINDOWS_FILE_EFFECTIVE_RIGHTS = *openscap_pmc::OVAL_WINDOWS_FILE_EFFECTIVE_RIGHTS;
*OVAL_WINDOWS_GROUP = *openscap_pmc::OVAL_WINDOWS_GROUP;
*OVAL_WINDOWS_GROUP_SID = *openscap_pmc::OVAL_WINDOWS_GROUP_SID;
*OVAL_WINDOWS_INTERFACE = *openscap_pmc::OVAL_WINDOWS_INTERFACE;
*OVAL_WINDOWS_LOCKOUT_POLICY = *openscap_pmc::OVAL_WINDOWS_LOCKOUT_POLICY;
*OVAL_WINDOWS_METABASE = *openscap_pmc::OVAL_WINDOWS_METABASE;
*OVAL_WINDOWS_PASSWORD_POLICY = *openscap_pmc::OVAL_WINDOWS_PASSWORD_POLICY;
*OVAL_WINDOWS_PORT = *openscap_pmc::OVAL_WINDOWS_PORT;
*OVAL_WINDOWS_PRINTER_EFFECTIVE_RIGHTS = *openscap_pmc::OVAL_WINDOWS_PRINTER_EFFECTIVE_RIGHTS;
*OVAL_WINDOWS_PROCESS = *openscap_pmc::OVAL_WINDOWS_PROCESS;
*OVAL_WINDOWS_REGISTRY = *openscap_pmc::OVAL_WINDOWS_REGISTRY;
*OVAL_WINDOWS_REGKEY_AUDITED_PERMISSIONS_53 = *openscap_pmc::OVAL_WINDOWS_REGKEY_AUDITED_PERMISSIONS_53;
*OVAL_WINDOWS_REGKEY_AUDITED_PERMISSIONS = *openscap_pmc::OVAL_WINDOWS_REGKEY_AUDITED_PERMISSIONS;
*OVAL_WINDOWS_REGKEY_EFFECTIVE_RIGHTS_53 = *openscap_pmc::OVAL_WINDOWS_REGKEY_EFFECTIVE_RIGHTS_53;
*OVAL_WINDOWS_REGKEY_EFFECTIVE_RIGHTS = *openscap_pmc::OVAL_WINDOWS_REGKEY_EFFECTIVE_RIGHTS;
*OVAL_WINDOWS_SHARED_RESOURCE = *openscap_pmc::OVAL_WINDOWS_SHARED_RESOURCE;
*OVAL_WINDOWS_SID = *openscap_pmc::OVAL_WINDOWS_SID;
*OVAL_WINDOWS_SID_SID = *openscap_pmc::OVAL_WINDOWS_SID_SID;
*OVAL_WINDOWS_USER_ACCESS_CONTROL = *openscap_pmc::OVAL_WINDOWS_USER_ACCESS_CONTROL;
*OVAL_WINDOWS_USER = *openscap_pmc::OVAL_WINDOWS_USER;
*OVAL_WINDOWS_USER_SID_55 = *openscap_pmc::OVAL_WINDOWS_USER_SID_55;
*OVAL_WINDOWS_USER_SID = *openscap_pmc::OVAL_WINDOWS_USER_SID;
*OVAL_WINDOWS_VOLUME = *openscap_pmc::OVAL_WINDOWS_VOLUME;
*OVAL_WINDOWS_WMI = *openscap_pmc::OVAL_WINDOWS_WMI;
*OVAL_WINDOWS_WUA_UPDATE_SEARCHER = *openscap_pmc::OVAL_WINDOWS_WUA_UPDATE_SEARCHER;
*XML_VALIDITY_WARNING = *openscap_pmc::XML_VALIDITY_WARNING;
*XML_VALIDITY_ERROR = *openscap_pmc::XML_VALIDITY_ERROR;
*XML_WARNING = *openscap_pmc::XML_WARNING;
*XML_ERROR = *openscap_pmc::XML_ERROR;
*OVAL_LOG_INFO = *openscap_pmc::OVAL_LOG_INFO;
*OVAL_LOG_DEBUG = *openscap_pmc::OVAL_LOG_DEBUG;
*OVAL_LOG_WARN = *openscap_pmc::OVAL_LOG_WARN;
*OVAL_RESULT_TRUE = *openscap_pmc::OVAL_RESULT_TRUE;
*OVAL_RESULT_FALSE = *openscap_pmc::OVAL_RESULT_FALSE;
*OVAL_RESULT_UNKNOWN = *openscap_pmc::OVAL_RESULT_UNKNOWN;
*OVAL_RESULT_ERROR = *openscap_pmc::OVAL_RESULT_ERROR;
*OVAL_RESULT_NOT_EVALUATED = *openscap_pmc::OVAL_RESULT_NOT_EVALUATED;
*OVAL_RESULT_NOT_APPLICABLE = *openscap_pmc::OVAL_RESULT_NOT_APPLICABLE;
*OVAL_CLASS_UNKNOWN = *openscap_pmc::OVAL_CLASS_UNKNOWN;
*OVAL_CLASS_COMPLIANCE = *openscap_pmc::OVAL_CLASS_COMPLIANCE;
*OVAL_CLASS_INVENTORY = *openscap_pmc::OVAL_CLASS_INVENTORY;
*OVAL_CLASS_MISCELLANEOUS = *openscap_pmc::OVAL_CLASS_MISCELLANEOUS;
*OVAL_CLASS_PATCH = *openscap_pmc::OVAL_CLASS_PATCH;
*OVAL_CLASS_VULNERABILITY = *openscap_pmc::OVAL_CLASS_VULNERABILITY;
*OVAL_PDFLAG_NOREPLY = *openscap_pmc::OVAL_PDFLAG_NOREPLY;
*OVAL_PDFLAG_NORECONN = *openscap_pmc::OVAL_PDFLAG_NORECONN;
*OVAL_PDGLAG_RUNALL = *openscap_pmc::OVAL_PDGLAG_RUNALL;
*OVAL_PDFLAG_RUNNOW = *openscap_pmc::OVAL_PDFLAG_RUNNOW;
*OVAL_PDFLAG_SLAVE = *openscap_pmc::OVAL_PDFLAG_SLAVE;
*OVAL_PDFLAG_MASK = *openscap_pmc::OVAL_PDFLAG_MASK;
*OVAL_PROBEMETA_LIST_VERBOSE = *openscap_pmc::OVAL_PROBEMETA_LIST_VERBOSE;
*OVAL_PROBEMETA_LIST_DYNAMIC = *openscap_pmc::OVAL_PROBEMETA_LIST_DYNAMIC;
*PROBE_HANDLER_ACT_INIT = *openscap_pmc::PROBE_HANDLER_ACT_INIT;
*PROBE_HANDLER_ACT_FREE = *openscap_pmc::PROBE_HANDLER_ACT_FREE;
*PROBE_HANDLER_ACT_OPEN = *openscap_pmc::PROBE_HANDLER_ACT_OPEN;
*PROBE_HANDLER_ACT_EVAL = *openscap_pmc::PROBE_HANDLER_ACT_EVAL;
*PROBE_HANDLER_ACT_RESET = *openscap_pmc::PROBE_HANDLER_ACT_RESET;
*PROBE_HANDLER_ACT_CLOSE = *openscap_pmc::PROBE_HANDLER_ACT_CLOSE;
*PROBE_HANDLER_ACT_ABORT = *openscap_pmc::PROBE_HANDLER_ACT_ABORT;
1;