File: group__KVP.html

package info (click to toggle)
qof 0.5.0-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,376 kB
  • ctags: 2,995
  • sloc: ansic: 14,210; sh: 7,273; makefile: 204; yacc: 184; lex: 123
file content (2211 lines) | stat: -rw-r--r-- 104,499 bytes parent folder | download
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>QOF: KVP: Key-Value Pairs</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.3.6-20040222 -->
<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Data&nbsp;Structures</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Data&nbsp;Fields</a> | <a class="qindex" href="globals.html">Globals</a> | <a class="qindex" href="pages.html">Related&nbsp;Pages</a></div>
<h1>KVP: Key-Value Pairs<br>
<small>
[<a class="el" href="group__QOF.html">Query Object Framework</a>]</small>
</h1><hr><a name="_details"></a><h2>Detailed Description</h2>
A KvpFrame is a set of associations between character strings (keys) and KvpValue structures. A KvpValue is a union with possible types enumerated in the KvpValueType enum, and includes, among other things, ints, doubles, strings, guid's, lists, time and numeric values. KvpValues may also be other frames, so KVP is inherently heirarchical.<p>
Values are stored in a 'slot' associated with a key. Pointers passed as arguments into set_slot and get_slot are the responsibility of the caller. Pointers returned by get_slot are owned by the kvp_frame. Make copies as needed.<p>
A 'path' is a sequence of keys that can be followed to a value. Paths may be specified as varargs (variable number of arguments to a subrutine, NULL-terminated), as a GSList, or as a standard URL-like path name. The later is parsed and treated in the same way as file paths would be: / separates keys, /./ is treated as / and /../ means backup one level. Repeated slashes are treated as one slash.<p>
Note that although, in principle, keys may contain the / and . and .. characters, doing so may lead to confusion, and will make path-string parsing routines fail. In other words, don't use a key such as 'some/key' or 'some/./other/../key' because you may get unexpected results.<p>
To set a value into a frame, you will want to use one of the kvp_frame_set_xxx() routines. Most of the other routines provide only low-level access that you probably shouldn't use. 
<p>
<table border=0 cellpadding=0 cellspacing=0>
<tr><td></td></tr>
<tr><td colspan=2><br><h2>Files</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>file &nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="kvp-util_8h.html">kvp-util.h</a></td></tr>

<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">GnuCash KVP utility functions. <br><br></td></tr>

<p>
<tr><td class="memItemLeft" nowrap align=right valign=top>file &nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="kvp__frame_8h.html">kvp_frame.h</a></td></tr>

<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">A key-value frame system. <br><br></td></tr>

<p>
<tr><td colspan=2><br><h2>Modules</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>group&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP__Private.html">KVP_Private</a></td></tr>

<tr><td colspan=2><br><h2>Data Structures</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>struct &nbsp;</td><td class="memItemRight" valign=bottom><b>GHashTableKVPair</b></td></tr>

<tr><td colspan=2><br><h2>Hash Utilities</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>GSList *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga2">g_hash_table_key_value_pairs</a> (GHashTable *table)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga3" doxytag="KVP::g_hash_table_kv_pair_free_gfunc" ></a>
void&nbsp;</td><td class="memItemRight" valign=bottom><b>g_hash_table_kv_pair_free_gfunc</b> (gpointer data, gpointer user_data)</td></tr>

<tr><td colspan=2><br><h2>KvpFrame Constructors</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga4">kvp_frame_new</a> (void)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>void&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga5">kvp_frame_delete</a> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga6">kvp_frame_copy</a> (const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>gboolean&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga7">kvp_frame_is_empty</a> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame)</td></tr>

<tr><td colspan=2><br><h2>KvpFrame Basic Value Storing</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>void&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga8">kvp_frame_set_gint64</a> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path, gint64 ival)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga9" doxytag="KVP::kvp_frame_set_double" ></a>
void&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame_set_double</b> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path, double dval)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga10" doxytag="KVP::kvp_frame_set_gnc_numeric" ></a>
void&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame_set_gnc_numeric</b> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path, <a class="el" href="group__Numeric.html#ga0">gnc_numeric</a> nval)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga11" doxytag="KVP::kvp_frame_set_timespec" ></a>
void&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame_set_timespec</b> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path, <a class="el" href="structtimespec64.html">Timespec</a> ts)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>void&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga12">kvp_frame_set_str</a> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path, const char *str)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga13" doxytag="KVP::kvp_frame_set_guid" ></a>
void&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame_set_guid</b> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path, const <a class="el" href="union__GUID.html">GUID</a> *guid)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga14" doxytag="KVP::kvp_frame_set_frame" ></a>
void&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame_set_frame</b> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path, <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *chld)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga15" doxytag="KVP::kvp_frame_set_frame_nc" ></a>
void&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame_set_frame_nc</b> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path, <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *chld)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga16">kvp_frame_set_value</a> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path, const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga17">kvp_frame_set_value_nc</a> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path, <a class="el" href="group__KVP.html#ga1">KvpValue</a> *value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga18">kvp_frame_replace_value_nc</a> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *slot, <a class="el" href="group__KVP.html#ga1">KvpValue</a> *new_value)</td></tr>

<tr><td colspan=2><br><h2>KvpFrame URL handling</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>void&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga19">kvp_frame_add_url_encoding</a> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *enc)</td></tr>

<tr><td colspan=2><br><h2>KvpFrame Glist Bag Storing</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>void&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga20">kvp_frame_add_gint64</a> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path, gint64 ival)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga21" doxytag="KVP::kvp_frame_add_double" ></a>
void&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame_add_double</b> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path, double dval)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga22" doxytag="KVP::kvp_frame_add_gnc_numeric" ></a>
void&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame_add_gnc_numeric</b> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path, <a class="el" href="group__Numeric.html#ga0">gnc_numeric</a> nval)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga23" doxytag="KVP::kvp_frame_add_timespec" ></a>
void&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame_add_timespec</b> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path, <a class="el" href="structtimespec64.html">Timespec</a> ts)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>void&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga24">kvp_frame_add_str</a> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path, const char *str)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga25" doxytag="KVP::kvp_frame_add_guid" ></a>
void&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame_add_guid</b> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path, const <a class="el" href="union__GUID.html">GUID</a> *guid)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga26" doxytag="KVP::kvp_frame_add_frame" ></a>
void&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame_add_frame</b> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path, <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *chld)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga27" doxytag="KVP::kvp_frame_add_frame_nc" ></a>
void&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame_add_frame_nc</b> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path, <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *chld)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga28" doxytag="KVP::kvp_frame_add_value" ></a>
<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame_add_value</b> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path, <a class="el" href="group__KVP.html#ga1">KvpValue</a> *value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga29" doxytag="KVP::kvp_frame_add_value_nc" ></a>
<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame_add_value_nc</b> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path, <a class="el" href="group__KVP.html#ga1">KvpValue</a> *value)</td></tr>

<tr><td colspan=2><br><h2>KvpFrame Value Fetching</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>gint64&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga30">kvp_frame_get_gint64</a> (const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga31" doxytag="KVP::kvp_frame_get_double" ></a>
double&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame_get_double</b> (const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga32" doxytag="KVP::kvp_frame_get_numeric" ></a>
<a class="el" href="group__Numeric.html#ga0">gnc_numeric</a>&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame_get_numeric</b> (const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga33" doxytag="KVP::kvp_frame_get_string" ></a>
char *&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame_get_string</b> (const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga34" doxytag="KVP::kvp_frame_get_guid" ></a>
<a class="el" href="union__GUID.html">GUID</a> *&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame_get_guid</b> (const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga35" doxytag="KVP::kvp_frame_get_binary" ></a>
void *&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame_get_binary</b> (const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path, guint64 *size_return)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga36" doxytag="KVP::kvp_frame_get_timespec" ></a>
<a class="el" href="structtimespec64.html">Timespec</a>&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame_get_timespec</b> (const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga37" doxytag="KVP::kvp_frame_get_value" ></a>
<a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame_get_value</b> (const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga38">kvp_frame_get_frame</a> (const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga39">kvp_frame_get_frame_path</a> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *,...)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga40">kvp_frame_get_frame_gslist</a> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, GSList *key_path)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga41">kvp_frame_get_frame_slash</a> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *path)</td></tr>

<tr><td colspan=2><br><h2>KvpFrame KvpValue low-level storing routines.</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga42">kvp_frame_replace_slot_nc</a> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *slot, <a class="el" href="group__KVP.html#ga1">KvpValue</a> *new_value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>void&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga43">kvp_frame_set_slot</a> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *key, const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>void&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga44">kvp_frame_set_slot_nc</a> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *key, <a class="el" href="group__KVP.html#ga1">KvpValue</a> *value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>void&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga45">kvp_frame_set_slot_path</a> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *value, const char *first_key,...)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>void&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga46">kvp_frame_set_slot_path_gslist</a> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *value, GSList *key_path)</td></tr>

<tr><td colspan=2><br><h2>KvpFrame KvpValue Low-Level Retrieval Routines</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga47">kvp_frame_get_slot</a> (const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *key)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga48">kvp_frame_get_slot_path</a> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, const char *first_key,...)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga49">kvp_frame_get_slot_path_gslist</a> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame, GSList *key_path)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>gint&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga50">kvp_frame_compare</a> (const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *fa, const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *fb)</td></tr>

<tr><td colspan=2><br><h2>KvpValue List Convenience Functions</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>gint&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga52">kvp_glist_compare</a> (const GList *list1, const GList *list2)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>GList *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga53">kvp_glist_copy</a> (const GList *list)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>void&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga54">kvp_glist_delete</a> (GList *list)</td></tr>

<tr><td colspan=2><br><h2>KvpValue Constructors</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga55">kvp_value_new_gint64</a> (gint64 value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga56" doxytag="KVP::kvp_value_new_double" ></a>
<a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_value_new_double</b> (double value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga57" doxytag="KVP::kvp_value_new_gnc_numeric" ></a>
<a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_value_new_gnc_numeric</b> (<a class="el" href="group__Numeric.html#ga0">gnc_numeric</a> value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga58" doxytag="KVP::kvp_value_new_string" ></a>
<a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_value_new_string</b> (const char *value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga59" doxytag="KVP::kvp_value_new_guid" ></a>
<a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_value_new_guid</b> (const <a class="el" href="union__GUID.html">GUID</a> *guid)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga60" doxytag="KVP::kvp_value_new_timespec" ></a>
<a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_value_new_timespec</b> (<a class="el" href="structtimespec64.html">Timespec</a> timespec)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga61" doxytag="KVP::kvp_value_new_binary" ></a>
<a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_value_new_binary</b> (const void *data, guint64 datasize)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga62" doxytag="KVP::kvp_value_new_frame" ></a>
<a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_value_new_frame</b> (const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga63">kvp_value_new_glist</a> (const GList *value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga64">kvp_value_new_binary_nc</a> (void *data, guint64 datasize)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga65">kvp_value_new_glist_nc</a> (GList *lst)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga66">kvp_value_new_frame_nc</a> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>void&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga67">kvp_value_delete</a> (<a class="el" href="group__KVP.html#ga1">KvpValue</a> *value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga68">kvp_value_copy</a> (const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga69">kvp_value_replace_frame_nc</a> (<a class="el" href="group__KVP.html#ga1">KvpValue</a> *value, <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *newframe)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>GList *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga70">kvp_value_replace_glist_nc</a> (<a class="el" href="group__KVP.html#ga1">KvpValue</a> *value, GList *newlist)</td></tr>

<tr><td colspan=2><br><h2>KvpValue Value access</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="group__KVP.html#ga92">KvpValueType</a>&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga71">kvp_value_get_type</a> (const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>gint64&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga72">kvp_value_get_gint64</a> (const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga73" doxytag="KVP::kvp_value_get_double" ></a>
double&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_value_get_double</b> (const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga74" doxytag="KVP::kvp_value_get_numeric" ></a>
<a class="el" href="group__Numeric.html#ga0">gnc_numeric</a>&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_value_get_numeric</b> (const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>char *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga75">kvp_value_get_string</a> (const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="union__GUID.html">GUID</a> *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga76">kvp_value_get_guid</a> (const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>void *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga77">kvp_value_get_binary</a> (const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *value, guint64 *size_return)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>GList *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga78">kvp_value_get_glist</a> (const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga79">kvp_value_get_frame</a> (const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga80" doxytag="KVP::kvp_value_get_timespec" ></a>
<a class="el" href="structtimespec64.html">Timespec</a>&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_value_get_timespec</b> (const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *value)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>gint&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga81">kvp_value_compare</a> (const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *va, const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *vb)</td></tr>

<tr><td colspan=2><br><h2>Iterators</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>void&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga84">kvp_frame_for_each_slot</a> (<a class="el" href="group__KVP.html#ga0">KvpFrame</a> *f, void(*proc)(const char *key, <a class="el" href="group__KVP.html#ga1">KvpValue</a> *value, gpointer data), gpointer data)</td></tr>

<tr><td colspan=2><br><h2>Defines</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga89" doxytag="KVP::kvp_frame" ></a>
#define&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame</b>&nbsp;&nbsp;&nbsp;<a class="el" href="group__KVP.html#ga0">KvpFrame</a></td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga90" doxytag="KVP::kvp_value" ></a>
#define&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_value</b>&nbsp;&nbsp;&nbsp;<a class="el" href="group__KVP.html#ga1">KvpValue</a></td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga91" doxytag="KVP::kvp_value_t" ></a>
#define&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_value_t</b>&nbsp;&nbsp;&nbsp;<a class="el" href="group__KVP.html#ga92">KvpValueType</a></td></tr>

<tr><td colspan=2><br><h2>Typedefs</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>typedef _KvpFrame&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga0">KvpFrame</a></td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>typedef _KvpValue&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga1">KvpValue</a></td></tr>

<tr><td colspan=2><br><h2>Enumerations</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>enum &nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga92">KvpValueType</a> { <br>
&nbsp;&nbsp;<b>KVP_TYPE_GINT64</b> = 1, 
<b>KVP_TYPE_DOUBLE</b>, 
<b>KVP_TYPE_NUMERIC</b>, 
<b>KVP_TYPE_STRING</b>, 
<br>
&nbsp;&nbsp;<b>KVP_TYPE_GUID</b>, 
<b>KVP_TYPE_TIMESPEC</b>, 
<b>KVP_TYPE_BINARY</b>, 
<b>KVP_TYPE_GLIST</b>, 
<br>
&nbsp;&nbsp;<b>KVP_TYPE_FRAME</b>
<br>
 }</td></tr>

<tr><td colspan=2><br><h2>Functions</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga51" doxytag="KVP::double_compare" ></a>
gint&nbsp;</td><td class="memItemRight" valign=bottom><b>double_compare</b> (double v1, double v2)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga82" doxytag="KVP::kvp_value_to_string" ></a>
gchar *&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_value_to_string</b> (const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *val)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>gboolean&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga83">kvp_value_binary_append</a> (<a class="el" href="group__KVP.html#ga1">KvpValue</a> *v, void *data, guint64 size)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top>gchar *&nbsp;</td><td class="memItemRight" valign=bottom><a class="el" href="group__KVP.html#ga85">kvp_frame_to_string</a> (const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga86" doxytag="KVP::binary_to_string" ></a>
gchar *&nbsp;</td><td class="memItemRight" valign=bottom><b>binary_to_string</b> (const void *data, guint32 size)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga87" doxytag="KVP::kvp_value_glist_to_string" ></a>
gchar *&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_value_glist_to_string</b> (const GList *list)</td></tr>

<tr><td class="memItemLeft" nowrap align=right valign=top><a class="anchor" name="ga88" doxytag="KVP::kvp_frame_get_hash" ></a>
GHashTable *&nbsp;</td><td class="memItemRight" valign=bottom><b>kvp_frame_get_hash</b> (const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *frame)</td></tr>

</table>
<hr><h2>Typedef Documentation</h2>
<a class="anchor" name="ga0" doxytag="kvp_frame.h::KvpFrame" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> typedef struct _KvpFrame <a class="el" href="group__KVP.html#ga0">KvpFrame</a>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Opaque frame structure     </td>
  </tr>
</table>
<a class="anchor" name="ga1" doxytag="kvp_frame.h::KvpValue" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> typedef struct _KvpValue <a class="el" href="group__KVP.html#ga1">KvpValue</a>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
A KvpValue is a union with possible types enumerated in the KvpValueType enum.     </td>
  </tr>
</table>
<hr><h2>Enumeration Type Documentation</h2>
<a class="anchor" name="ga92" doxytag="kvp_frame.h::KvpValueType" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> enum <a class="el" href="group__KVP.html#ga92">KvpValueType</a>
      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Enum to enumerate possible types in the union KvpValue XXX FIXME TODO: People have asked for boolean values, e.g. in xaccAccountSetAutoInterestXfer<p>
XXX In the long run, this should be synchronized with the core QOF types, which in turn should be synced to the g_types in GLib. Unfortuantely, this requies writing a pile of code to handle all of the different cases. An alternative might be to make kvp values inherit from the core g_types (i.e. add new core g_types) ??     </td>
  </tr>
</table>
<hr><h2>Function Documentation</h2>
<a class="anchor" name="ga2" doxytag="kvp-util.h::g_hash_table_key_value_pairs" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> GSList* g_hash_table_key_value_pairs </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">GHashTable *&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>table</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Returns a GSList* of all the keys and values in a given hash table. Data elements of lists are actual hash elements, so be careful, and deallocation of the GHashTableKVPairs in the result list are the caller's responsibility. A typical sequence might look like this:<p>
GSList *kvps = g_hash_table_key_value_pairs(hash); ... use kvps-&gt;data-&gt;key and kvps-&gt;data-&gt;val, etc. here ... g_slist_foreach(kvps, g_hash_table_kv_pair_free_gfunc, NULL); g_slist_free(kvps);     </td>
  </tr>
</table>
<a class="anchor" name="ga20" doxytag="kvp_frame.h::kvp_frame_add_gint64" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void kvp_frame_add_gint64 </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>frame</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const char *&nbsp;</td>
          <td class="mdname" nowrap> <em>path</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>gint64&nbsp;</td>
          <td class="mdname" nowrap> <em>ival</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
The <a class="el" href="group__KVP.html#ga31">kvp_frame_add_gint64()</a> routine will add the value of the gint64 to the glist bag of values at the indicated path. If not all frame components of the path exist, they are created. If the value previously stored at this path was not a glist bag, then a bag will be formed there, the old value placed in the bag, and the new value added to the bag.<p>
Similarly, the add_double, add_numeric, and add_timespec routines perform the same function, for each of the respective types.     </td>
  </tr>
</table>
<a class="anchor" name="ga24" doxytag="kvp_frame.h::kvp_frame_add_str" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void kvp_frame_add_str </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>frame</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const char *&nbsp;</td>
          <td class="mdname" nowrap> <em>path</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const char *&nbsp;</td>
          <td class="mdname" nowrap> <em>str</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
The <a class="el" href="group__KVP.html#ga34">kvp_frame_add_str()</a> routine will add a copy of the string to the glist bag at the indicated path. If not all frame components of the path exist, they are created. If there was another item previously stored at that path, then the path is converted to a bag, and the old value, along with the new value, is added to the bag.<p>
Similarly, the add_guid and add_frame will make copies and add those.<p>
The kvp_frame_add_frame_nc() routine works as above, but does *NOT* copy the frame.     </td>
  </tr>
</table>
<a class="anchor" name="ga19" doxytag="kvp_frame.h::kvp_frame_add_url_encoding" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void kvp_frame_add_url_encoding </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>frame</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const char *&nbsp;</td>
          <td class="mdname" nowrap> <em>enc</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
The <a class="el" href="group__KVP.html#ga45">kvp_frame_add_url_encoding()</a> routine will parse the value string, assuming it to be URL-encoded in the standard way, turning it into a set of key-value pairs, and adding those to the indicated frame. URL-encoded strings are the things that are returned by web browsers when a form is filled out. For example, 'start-date=June&amp;end-date=November' consists of two keys, 'start-date' and 'end-date', which have the values 'June' and 'November', respectively. This routine also handles  encoding.<p>
This routine treats all values as strings; it does *not* attempt to perform any type-conversion.     </td>
  </tr>
</table>
<a class="anchor" name="ga50" doxytag="kvp_frame.h::kvp_frame_compare" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> gint kvp_frame_compare </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>fa</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>fb</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Similar returns as strcmp.     </td>
  </tr>
</table>
<a class="anchor" name="ga6" doxytag="kvp_frame.h::kvp_frame_copy" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="group__KVP.html#ga0">KvpFrame</a>* kvp_frame_copy </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>frame</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Perform a deep (recursive) value copy, copying the fraame, subframes, and the values as well.     </td>
  </tr>
</table>
<a class="anchor" name="ga5" doxytag="kvp_frame.h::kvp_frame_delete" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void kvp_frame_delete </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>frame</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Perform a deep (recursive) delete of the frame and any subframes.     </td>
  </tr>
</table>
<a class="anchor" name="ga84" doxytag="kvp_frame.h::kvp_frame_for_each_slot" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void kvp_frame_for_each_slot </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>f</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>void(*&nbsp;</td>
          <td class="mdname" nowrap> <em>proc</em>)(const char *key, <a class="el" href="group__KVP.html#ga1">KvpValue</a> *value, gpointer data), </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>gpointer&nbsp;</td>
          <td class="mdname" nowrap> <em>data</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Traverse all of the slots in the given kvp_frame. This function does not descend recursively to traverse any kvp_frames stored as slot values. You must handle that in proc, with a suitable recursive call if desired.     </td>
  </tr>
</table>
<a class="anchor" name="ga38" doxytag="kvp_frame.h::kvp_frame_get_frame" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="group__KVP.html#ga0">KvpFrame</a>* kvp_frame_get_frame </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>frame</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const char *&nbsp;</td>
          <td class="mdname" nowrap> <em>path</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Value accessor. Takes a unix-style slash-separated path as an argument, and return the KvpFrame stored at that location. If the KvpFrame does not exist, then a NULL is returned.<p>
<dl compact><dt><b>Note:</b></dt><dd>The semantics here have changed: In gnucash-1.8, if the KvpFrame did not exist, this function automatically created one and returned it. However, now this function will return NULL in this case and the caller has to create a KvpFrame on his own. The old functionality is now implemented by <a class="el" href="group__KVP.html#ga56">kvp_frame_get_frame_path()</a>. This happened on 2003-09-14, revision 1.31. FIXME: Is it really a good idea to change the semantics of an existing function and move the old semantics to a new function??! It would save us a lot of trouble if the new semantics would have been available in a new function!</dd></dl>
<dl compact><dt><b>Returns:</b></dt><dd>The KvpFrame at the specified path, or NULL if it doesn't exist. </dd></dl>
    </td>
  </tr>
</table>
<a class="anchor" name="ga40" doxytag="kvp_frame.h::kvp_frame_get_frame_gslist" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="group__KVP.html#ga0">KvpFrame</a>* kvp_frame_get_frame_gslist </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>frame</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>GSList *&nbsp;</td>
          <td class="mdname" nowrap> <em>key_path</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
This routine returns the last frame of the path. If the frame path doesn't exist, it is created. Note that this is *VERY DIFFERENT FROM* like <a class="el" href="group__KVP.html#ga53">kvp_frame_get_frame()</a>     </td>
  </tr>
</table>
<a class="anchor" name="ga39" doxytag="kvp_frame.h::kvp_frame_get_frame_path" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="group__KVP.html#ga0">KvpFrame</a>* kvp_frame_get_frame_path </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>frame</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const char *&nbsp;</td>
          <td class="mdname" nowrap>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>&nbsp;</td>
          <td class="mdname" nowrap> <em>...</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
This routine returns the last frame of the path. If the frame path doesn't exist, it is created. Note that this is *VERY DIFFERENT FROM* like <a class="el" href="group__KVP.html#ga53">kvp_frame_get_frame()</a><p>
<dl compact><dt><b>Note:</b></dt><dd>The semantics of this function implemented the gnucash-1.8 behaviour of kvp_frame_get_frame: In gnucash-1.8, if the KvpFrame did not exist, kvp_frame_get_frame automatically created one and returned it. However, now that one will return NULL in this case and the caller has to create a KvpFrame on his own. The old functionality is implemented by this <a class="el" href="group__KVP.html#ga56">kvp_frame_get_frame_path()</a>. This happened on 2003-09-14, revision 1.31. </dd></dl>
    </td>
  </tr>
</table>
<a class="anchor" name="ga41" doxytag="kvp_frame.h::kvp_frame_get_frame_slash" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="group__KVP.html#ga0">KvpFrame</a>* kvp_frame_get_frame_slash </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>frame</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const char *&nbsp;</td>
          <td class="mdname" nowrap> <em>path</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
This routine returns the last frame of the path. If the frame path doesn't exist, it is created. Note that this is *VERY DIFFERENT FROM* like <a class="el" href="group__KVP.html#ga53">kvp_frame_get_frame()</a><p>
The <a class="el" href="group__KVP.html#ga57">kvp_frame_get_frame_slash()</a> routine takes a single string where the keys are separated by slashes; thus, for example: /this/is/a/valid/path and///so//is////this/ Multiple slashes are compresed. Leading slash is optional. The pointers . and .. are *not* currently followed/obeyed. (This is a bug that needs fixing).     </td>
  </tr>
</table>
<a class="anchor" name="ga30" doxytag="kvp_frame.h::kvp_frame_get_gint64" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> gint64 kvp_frame_get_gint64 </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>frame</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const char *&nbsp;</td>
          <td class="mdname" nowrap> <em>path</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Value accessors. These all take a unix-style slash-separated path as an argument, and return the value stored at that location. If the object at the end of that path is not of the type that was asked for, then a NULL or a zero is returned. So, for example, asking for a string when the path stored an int will return a NULL. In some future date, this may be changed to a looser type system, such as perl's automatic re-typing (e.g. an integer value might be converted to a printed string representing that value).<p>
If any part of the path does not exist, then NULL or zero will be returned.<p>
The values returned for GUID, binary, GList, KvpFrame and string are "non-copying" -- the returned item is the actual item stored. Do not delete this item unless you take the required care to avoid possible bad pointer derefrences (i.e. core dumps). Also, be careful hanging on to those references if you are also storing at the same path names: the referenced item will be freed during the store.<p>
That is, if you get a string value (or guid, binary or frame), and then store something else at that path, the string that you've gotten will be freed during the store (internally, by the set_*() routines), and you will be left hanging onto an invalid pointer.     </td>
  </tr>
</table>
<a class="anchor" name="ga47" doxytag="kvp_frame.h::kvp_frame_get_slot" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="group__KVP.html#ga1">KvpValue</a>* kvp_frame_get_slot </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>frame</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const char *&nbsp;</td>
          <td class="mdname" nowrap> <em>key</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Returns the KvpValue in the given KvpFrame 'frame' that is associated with 'key'. If there is no key in the frame, NULL is returned. If the value associated with the key is NULL, NULL is returned.<p>
Pointers passed as arguments into get_slot are the responsibility of the caller. Pointers returned by get_slot are owned by the kvp_frame. Make copies as needed.     </td>
  </tr>
</table>
<a class="anchor" name="ga48" doxytag="kvp_frame.h::kvp_frame_get_slot_path" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="group__KVP.html#ga1">KvpValue</a>* kvp_frame_get_slot_path </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>frame</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const char *&nbsp;</td>
          <td class="mdname" nowrap> <em>first_key</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>&nbsp;</td>
          <td class="mdname" nowrap> <em>...</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
This routine return the value at the end of the path, or NULL if any portion of the path doesn't exist.     </td>
  </tr>
</table>
<a class="anchor" name="ga49" doxytag="kvp_frame.h::kvp_frame_get_slot_path_gslist" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="group__KVP.html#ga1">KvpValue</a>* kvp_frame_get_slot_path_gslist </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>frame</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>GSList *&nbsp;</td>
          <td class="mdname" nowrap> <em>key_path</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
This routine return the value at the end of the path, or NULL if any portion of the path doesn't exist.     </td>
  </tr>
</table>
<a class="anchor" name="ga7" doxytag="kvp_frame.h::kvp_frame_is_empty" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> gboolean kvp_frame_is_empty </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>frame</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Return TRUE if the KvpFrame is empty     </td>
  </tr>
</table>
<a class="anchor" name="ga4" doxytag="kvp_frame.h::kvp_frame_new" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="group__KVP.html#ga0">KvpFrame</a>* kvp_frame_new </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">void&nbsp;</td>
          <td class="mdname1" valign="top" nowrap>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Return a new empty instance of KvpFrame     </td>
  </tr>
</table>
<a class="anchor" name="ga42" doxytag="kvp_frame.h::kvp_frame_replace_slot_nc" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="group__KVP.html#ga1">KvpValue</a>* kvp_frame_replace_slot_nc </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>frame</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const char *&nbsp;</td>
          <td class="mdname" nowrap> <em>slot</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>new_value</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
The <a class="el" href="group__KVP.html#ga11">kvp_frame_replace_slot_nc()</a> routine places the new value into the indicated frame, for the given key. It returns the old value, if any. It returns NULL if the slot doesn't exist, if there was some other an error, or if there was no old value. Passing in a NULL new_value has the effect of deleting that slot.     </td>
  </tr>
</table>
<a class="anchor" name="ga18" doxytag="kvp_frame.h::kvp_frame_replace_value_nc" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="group__KVP.html#ga1">KvpValue</a>* kvp_frame_replace_value_nc </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>frame</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const char *&nbsp;</td>
          <td class="mdname" nowrap> <em>slot</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>new_value</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
The <a class="el" href="group__KVP.html#ga28">kvp_frame_replace_value_nc()</a> routine places the new value at the indicated path. It returns the old value, if any. It returns NULL if there was an error, or if there was no old value. If the path doesn't exist, it is created, unless new_value is NULL. Passing in a NULL new_value has the effect of deleting the trailing slot (i.e. the trailing path element).     </td>
  </tr>
</table>
<a class="anchor" name="ga8" doxytag="kvp_frame.h::kvp_frame_set_gint64" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void kvp_frame_set_gint64 </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>frame</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const char *&nbsp;</td>
          <td class="mdname" nowrap> <em>path</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>gint64&nbsp;</td>
          <td class="mdname" nowrap> <em>ival</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
The <a class="el" href="group__KVP.html#ga18">kvp_frame_set_gint64()</a> routine will store the value of the gint64 at the indicated path. If not all frame components of the path exist, they are created.<p>
Similarly, the set_double, set_numeric, and set_timespec routines perform the same function, for each of the respective types.     </td>
  </tr>
</table>
<a class="anchor" name="ga43" doxytag="kvp_frame.h::kvp_frame_set_slot" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void kvp_frame_set_slot </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>frame</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const char *&nbsp;</td>
          <td class="mdname" nowrap> <em>key</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>value</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
The <a class="el" href="group__KVP.html#ga39">kvp_frame_set_slot()</a> routine copies the value into the frame, associating it with a copy of 'key'. Pointers passed as arguments into kvp_frame_set_slot are the responsibility of the caller; the pointers are *not* taken over or managed. The old value at this location, if any, is destroyed.     </td>
  </tr>
</table>
<a class="anchor" name="ga44" doxytag="kvp_frame.h::kvp_frame_set_slot_nc" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void kvp_frame_set_slot_nc </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>frame</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const char *&nbsp;</td>
          <td class="mdname" nowrap> <em>key</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>value</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
The <a class="el" href="group__KVP.html#ga40">kvp_frame_set_slot_nc()</a> routine puts the value (without copying it) into the frame, associating it with a copy of 'key'. This routine is handy for avoiding excess memory allocations &amp; frees. Note that because the KvpValue was grabbed, you can't just delete unless you remove the key as well (or unless you replace the value). The old value at this location, if any, is destroyed.     </td>
  </tr>
</table>
<a class="anchor" name="ga45" doxytag="kvp_frame.h::kvp_frame_set_slot_path" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void kvp_frame_set_slot_path </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>frame</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>value</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const char *&nbsp;</td>
          <td class="mdname" nowrap> <em>first_key</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>&nbsp;</td>
          <td class="mdname" nowrap> <em>...</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
The <a class="el" href="group__KVP.html#ga42">kvp_frame_set_slot_path()</a> routine walks the hierarchy, using the key values to pick each branch. When the terminal node is reached, the value is copied into it. The old value at this location, if any, is destroyed.     </td>
  </tr>
</table>
<a class="anchor" name="ga46" doxytag="kvp_frame.h::kvp_frame_set_slot_path_gslist" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void kvp_frame_set_slot_path_gslist </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>frame</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>value</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>GSList *&nbsp;</td>
          <td class="mdname" nowrap> <em>key_path</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
The <a class="el" href="group__KVP.html#ga43">kvp_frame_set_slot_path_gslist()</a> routine walks the hierarchy, using the key values to pick each branch. When the terminal node is reached, the value is copied into it. The old value at this location, if any, is destroyed.     </td>
  </tr>
</table>
<a class="anchor" name="ga12" doxytag="kvp_frame.h::kvp_frame_set_str" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void kvp_frame_set_str </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>frame</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const char *&nbsp;</td>
          <td class="mdname" nowrap> <em>path</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const char *&nbsp;</td>
          <td class="mdname" nowrap> <em>str</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
The <a class="el" href="group__KVP.html#ga21">kvp_frame_set_str()</a> routine will store a copy of the string at the indicated path. If not all frame components of the path exist, they are created. If there was another string previously stored at that path, the old copy is deleted.<p>
Similarly, the set_guid and set_frame will make copies and store those. Old copies, if any, are deleted.<p>
The kvp_frame_set_frame_nc() routine works as above, but does *NOT* copy the frame.     </td>
  </tr>
</table>
<a class="anchor" name="ga16" doxytag="kvp_frame.h::kvp_frame_set_value" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="group__KVP.html#ga0">KvpFrame</a>* kvp_frame_set_value </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>frame</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const char *&nbsp;</td>
          <td class="mdname" nowrap> <em>path</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>value</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
The <a class="el" href="group__KVP.html#ga27">kvp_frame_set_value()</a> routine copies the value into the frame, at the location 'path'. If the path contains slashes '/', these are assumed to represent a sequence of keys. The returned value is a pointer to the actual frame into which the value was inserted; it is NULL if the frame couldn't be found (and thus the value wasn't inserted). The old value at this location, if any, is destroyed.<p>
Pointers passed as arguments into this routine are the responsibility of the caller; the pointers are *not* taken over or managed.     </td>
  </tr>
</table>
<a class="anchor" name="ga17" doxytag="kvp_frame.h::kvp_frame_set_value_nc" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="group__KVP.html#ga0">KvpFrame</a>* kvp_frame_set_value_nc </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>frame</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const char *&nbsp;</td>
          <td class="mdname" nowrap> <em>path</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>value</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
The <a class="el" href="group__KVP.html#ga26">kvp_frame_set_value_nc()</a> routine puts the value (without copying it) into the frame, putting it at the location 'path'. If the path contains slashes '/', these are assumed to represent a sequence of keys. The returned value is a pointer to the actual frame into which the value was inserted; it is NULL if the frame couldn't be found (and thus the value wasn't inserted). The old value at this location, if any, is destroyed.<p>
This routine is handy for avoiding excess memory allocations &amp; frees. Note that because the KvpValue was grabbed, you can't just delete unless you remove the key as well (or unless you replace the value).     </td>
  </tr>
</table>
<a class="anchor" name="ga85" doxytag="kvp_frame.h::kvp_frame_to_string" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> gchar* kvp_frame_to_string </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const <a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>frame</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Internal helper routines, you probably shouldn't be using these.     </td>
  </tr>
</table>
<a class="anchor" name="ga52" doxytag="kvp_frame.h::kvp_glist_compare" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> gint kvp_glist_compare </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const GList *&nbsp;</td>
          <td class="mdname" nowrap> <em>list1</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const GList *&nbsp;</td>
          <td class="mdname" nowrap> <em>list2</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
<a class="el" href="group__KVP.html#ga62">kvp_glist_compare()</a> compares <b>GLists of kvp_values</b> (not to be confused with GLists of something else): it iterates over the list elements, performing a kvp_value_compare on each.     </td>
  </tr>
</table>
<a class="anchor" name="ga53" doxytag="kvp_frame.h::kvp_glist_copy" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> GList* kvp_glist_copy </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const GList *&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>list</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
<a class="el" href="group__KVP.html#ga61">kvp_glist_copy()</a> performs a deep copy of a <b>GList of kvp_values</b> (not to be confused with GLists of something else): same as mapping <a class="el" href="group__KVP.html#ga88">kvp_value_copy()</a> over the elements and then copying the spine.     </td>
  </tr>
</table>
<a class="anchor" name="ga54" doxytag="kvp_frame.h::kvp_glist_delete" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void kvp_glist_delete </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">GList *&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>list</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
<a class="el" href="group__KVP.html#ga60">kvp_glist_delete()</a> performs a deep delete of a <b>GList of kvp_values</b> (not to be confused with GLists of something else): same as mapping * <a class="el" href="group__KVP.html#ga75">kvp_value_delete()</a> over the elements and then deleting the GList.     </td>
  </tr>
</table>
<a class="anchor" name="ga83" doxytag="kvp_frame.h::kvp_value_binary_append" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> gboolean kvp_value_binary_append </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>v</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>void *&nbsp;</td>
          <td class="mdname" nowrap> <em>data</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>guint64&nbsp;</td>
          <td class="mdname" nowrap> <em>size</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Manipulator:<p>
copying - but more efficient than creating a new KvpValue manually.     </td>
  </tr>
</table>
<a class="anchor" name="ga81" doxytag="kvp_frame.h::kvp_value_compare" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> gint kvp_value_compare </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>va</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>vb</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Similar returns as strcmp.     </td>
  </tr>
</table>
<a class="anchor" name="ga68" doxytag="kvp_frame.h::kvp_value_copy" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="group__KVP.html#ga1">KvpValue</a>* kvp_value_copy </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>value</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
This is a deep value copy.     </td>
  </tr>
</table>
<a class="anchor" name="ga67" doxytag="kvp_frame.h::kvp_value_delete" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void kvp_value_delete </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>value</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
This is a deep (recursive) delete.     </td>
  </tr>
</table>
<a class="anchor" name="ga77" doxytag="kvp_frame.h::kvp_value_get_binary" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> void* kvp_value_get_binary </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>value</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>guint64 *&nbsp;</td>
          <td class="mdname" nowrap> <em>size_return</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Value accessor. This one is non-copying -- the caller can modify the value directly.     </td>
  </tr>
</table>
<a class="anchor" name="ga79" doxytag="kvp_frame.h::kvp_value_get_frame" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="group__KVP.html#ga0">KvpFrame</a>* kvp_value_get_frame </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>value</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Value accessor. This one is non-copying -- the caller can modify the value directly.     </td>
  </tr>
</table>
<a class="anchor" name="ga72" doxytag="kvp_frame.h::kvp_value_get_gint64" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> gint64 kvp_value_get_gint64 </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>value</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Value accessors. Those for GUID, binary, GList, KvpFrame and string are non-copying -- the caller can modify the value directly. Just don't free it, or you screw up everything. Note that if another value is stored at the key location that this value came from, then this value will be uncermoniously deleted, and you will be left pointing to garbage. So don't store values at the same time you are examining thier contents.     </td>
  </tr>
</table>
<a class="anchor" name="ga78" doxytag="kvp_frame.h::kvp_value_get_glist" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> GList* kvp_value_get_glist </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>value</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Returns the GList of kvp_frame's (not to be confused with GList's of something else!) from the given kvp_frame. This one is non-copying -- the caller can modify the value directly.     </td>
  </tr>
</table>
<a class="anchor" name="ga76" doxytag="kvp_frame.h::kvp_value_get_guid" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="union__GUID.html">GUID</a>* kvp_value_get_guid </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>value</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Value accessor. This one is non-copying -- the caller can modify the value directly.     </td>
  </tr>
</table>
<a class="anchor" name="ga75" doxytag="kvp_frame.h::kvp_value_get_string" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> char* kvp_value_get_string </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>value</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Value accessor. This one is non-copying -- the caller can modify the value directly.     </td>
  </tr>
</table>
<a class="anchor" name="ga71" doxytag="kvp_frame.h::kvp_value_get_type" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="group__KVP.html#ga92">KvpValueType</a> kvp_value_get_type </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const <a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>value</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
You probably shouldn't be using these low-level routines     </td>
  </tr>
</table>
<a class="anchor" name="ga64" doxytag="kvp_frame.h::kvp_value_new_binary_nc" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="group__KVP.html#ga1">KvpValue</a>* kvp_value_new_binary_nc </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">void *&nbsp;</td>
          <td class="mdname" nowrap> <em>data</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>guint64&nbsp;</td>
          <td class="mdname" nowrap> <em>datasize</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
value constructors (non-copying - KvpValue takes pointer ownership) values *must* have been allocated via glib allocators! (gnew, etc.)     </td>
  </tr>
</table>
<a class="anchor" name="ga66" doxytag="kvp_frame.h::kvp_value_new_frame_nc" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="group__KVP.html#ga1">KvpValue</a>* kvp_value_new_frame_nc </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>value</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
value constructors (non-copying - KvpValue takes pointer ownership) values *must* have been allocated via glib allocators! (gnew, etc.)     </td>
  </tr>
</table>
<a class="anchor" name="ga55" doxytag="kvp_frame.h::kvp_value_new_gint64" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="group__KVP.html#ga1">KvpValue</a>* kvp_value_new_gint64 </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">gint64&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>value</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
The following routines are constructors for kvp_value. Those with pointer arguments copy in the value. The *_nc() versions do *not* copy in thier values, but use them directly.     </td>
  </tr>
</table>
<a class="anchor" name="ga63" doxytag="kvp_frame.h::kvp_value_new_glist" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="group__KVP.html#ga1">KvpValue</a>* kvp_value_new_glist </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">const GList *&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>value</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Creates a KvpValue from a <b>GList of kvp_value's</b>! (Not to be confused with GList's of something else!)     </td>
  </tr>
</table>
<a class="anchor" name="ga65" doxytag="kvp_frame.h::kvp_value_new_glist_nc" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="group__KVP.html#ga1">KvpValue</a>* kvp_value_new_glist_nc </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top">GList *&nbsp;</td>
          <td class="mdname1" valign="top" nowrap> <em>lst</em>          </td>
          <td class="md" valign="top">&nbsp;)&nbsp;</td>
          <td class="md" nowrap></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Creates a KvpValue from a <b>GList of kvp_value's</b>! (Not to be confused with GList's of something else!)<p>
This value constructor is non-copying (KvpValue takes pointer ownership). The values *must* have been allocated via glib allocators! (gnew, etc.)     </td>
  </tr>
</table>
<a class="anchor" name="ga69" doxytag="kvp_frame.h::kvp_value_replace_frame_nc" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> <a class="el" href="group__KVP.html#ga0">KvpFrame</a>* kvp_value_replace_frame_nc </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>value</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap><a class="el" href="group__KVP.html#ga0">KvpFrame</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>newframe</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Replace old frame value with new, return old frame     </td>
  </tr>
</table>
<a class="anchor" name="ga70" doxytag="kvp_frame.h::kvp_value_replace_glist_nc" ></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
  <tr>
    <td class="mdRow">
      <table cellpadding="0" cellspacing="0" border="0">
        <tr>
          <td class="md" nowrap valign="top"> GList* kvp_value_replace_glist_nc </td>
          <td class="md" valign="top">(&nbsp;</td>
          <td class="md" nowrap valign="top"><a class="el" href="group__KVP.html#ga1">KvpValue</a> *&nbsp;</td>
          <td class="mdname" nowrap> <em>value</em>, </td>
        </tr>
        <tr>
          <td class="md" nowrap align="right"></td>
          <td></td>
          <td class="md" nowrap>GList *&nbsp;</td>
          <td class="mdname" nowrap> <em>newlist</em></td>
        </tr>
        <tr>
          <td></td>
          <td class="md">)&nbsp;</td>
          <td class="md" colspan="2"></td>
        </tr>

      </table>
    </td>
  </tr>
</table>
<table cellspacing=5 cellpadding=0 border=0>
  <tr>
    <td>
      &nbsp;
    </td>
    <td>

<p>
Replace old glist value with new, return old glist     </td>
  </tr>
</table>
<hr size="1"><address style="align: right;"><small>Generated on Sun May 23 15:41:47 2004 for QOF by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border=0 > </a>1.3.6-20040222 </small></address>
</body>
</html>