1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
|
/* Generated by the protocol buffer compiler. DO NOT EDIT! */
/* Generated from: steammessages_clientserver_2.proto */
#ifndef PROTOBUF_C_steammessages_5fclientserver_5f2_2eproto__INCLUDED
#define PROTOBUF_C_steammessages_5fclientserver_5f2_2eproto__INCLUDED
#include "protobuf-c.h"
PROTOBUF_C__BEGIN_DECLS
#if PROTOBUF_C_VERSION_NUMBER < 1000000
# error This file was generated by a newer version of protoc-c which is incompatible with your libprotobuf-c headers. Please update your headers.
#elif 1004001 < PROTOBUF_C_MIN_COMPILER_VERSION
# error This file was generated by an older version of protoc-c which is incompatible with your libprotobuf-c headers. Please regenerate this file with a newer version of protoc-c.
#endif
#include "steammessages_base.pb-c.h"
struct CMsgClientUpdateUserGameInfo;
struct CMsgClientRichPresenceUpload;
struct CMsgClientRichPresenceRequest;
struct CMsgClientRichPresenceInfo;
struct CMsgClientRichPresenceInfo__RichPresence;
struct CMsgClientCheckFileSignature;
struct CMsgClientCheckFileSignatureResponse;
struct CMsgClientReadMachineAuth;
struct CMsgClientReadMachineAuthResponse;
struct CMsgClientUpdateMachineAuth;
struct CMsgClientUpdateMachineAuthResponse;
struct CMsgClientRequestMachineAuth;
struct CMsgClientRequestMachineAuthResponse;
struct CMsgClientRegisterKey;
struct CMsgClientPurchaseResponse;
struct CMsgClientActivateOEMLicense;
struct CMsgClientRegisterOEMMachine;
struct CMsgClientRegisterOEMMachineResponse;
struct CMsgClientPurchaseWithMachineID;
struct CMsgTradingInitiateTradeRequest;
struct CMsgTradingInitiateTradeResponse;
struct CMsgTradingCancelTradeRequest;
struct CMsgTradingStartSession;
struct CMsgClientGetCDNAuthToken;
struct CMsgClientGetDepotDecryptionKey;
struct CMsgClientGetDepotDecryptionKeyResponse;
struct CMsgClientCheckAppBetaPassword;
struct CMsgClientCheckAppBetaPasswordResponse;
struct CMsgClientCheckAppBetaPasswordResponse__BetaPassword;
struct CMsgClientGetCDNAuthTokenResponse;
struct CMsgDownloadRateStatistics;
struct CMsgDownloadRateStatistics__StatsInfo;
struct CMsgClientRequestAccountData;
struct CMsgClientRequestAccountDataResponse;
struct CMsgClientUGSGetGlobalStats;
struct CMsgClientUGSGetGlobalStatsResponse;
struct CMsgClientUGSGetGlobalStatsResponse__Day;
struct CMsgClientUGSGetGlobalStatsResponse__Day__Stat;
struct CMsgClientRedeemGuestPass;
struct CMsgClientRedeemGuestPassResponse;
struct CMsgClientGetClanActivityCounts;
struct CMsgClientGetClanActivityCountsResponse;
struct CMsgClientOGSReportString;
struct CMsgClientOGSReportBug;
struct CMsgClientSentLogs;
struct CMsgGCClient;
struct CMsgClientRequestFreeLicense;
struct CMsgClientRequestFreeLicenseResponse;
struct CMsgDRMDownloadRequestWithCrashData;
struct CMsgDRMDownloadResponse;
struct CMsgDRMFinalResult;
struct CMsgClientDPCheckSpecialSurvey;
struct CMsgClientDPCheckSpecialSurveyResponse;
struct CMsgClientDPSendSpecialSurveyResponse;
struct CMsgClientDPSendSpecialSurveyResponseReply;
struct CMsgClientRequestForgottenPasswordEmail;
struct CMsgClientRequestForgottenPasswordEmailResponse;
struct CMsgClientItemAnnouncements;
struct CMsgClientItemAnnouncements__UnseenItem;
struct CMsgClientRequestItemAnnouncements;
struct CMsgClientUserNotifications;
struct CMsgClientUserNotifications__Notification;
struct CMsgClientCommentNotifications;
struct CMsgClientRequestCommentNotifications;
struct CMsgClientOfflineMessageNotification;
struct CMsgClientRequestOfflineMessageCount;
struct CMsgClientChatGetFriendMessageHistory;
struct CMsgClientChatGetFriendMessageHistoryResponse;
struct CMsgClientChatGetFriendMessageHistoryResponse__FriendMessage;
struct CMsgClientChatGetFriendMessageHistoryForOfflineMessages;
struct CMsgClientFSGetFriendsSteamLevels;
struct CMsgClientFSGetFriendsSteamLevelsResponse;
struct CMsgClientFSGetFriendsSteamLevelsResponse__Friend;
struct CMsgClientEmailAddrInfo;
struct CMsgCREItemVoteSummary;
struct CMsgCREItemVoteSummary__PublishedFileId;
struct CMsgCREItemVoteSummaryResponse;
struct CMsgCREItemVoteSummaryResponse__ItemVoteSummary;
struct CMsgCREUpdateUserPublishedItemVote;
struct CMsgCREUpdateUserPublishedItemVoteResponse;
struct CMsgCREGetUserPublishedItemVoteDetails;
struct CMsgCREGetUserPublishedItemVoteDetails__PublishedFileId;
struct CMsgCREGetUserPublishedItemVoteDetailsResponse;
struct CMsgCREGetUserPublishedItemVoteDetailsResponse__UserItemVoteDetail;
struct CMsgFSGetFollowerCount;
struct CMsgFSGetFollowerCountResponse;
struct CMsgFSGetIsFollowing;
struct CMsgFSGetIsFollowingResponse;
struct CMsgFSEnumerateFollowingList;
struct CMsgFSEnumerateFollowingListResponse;
struct CMsgDPGetNumberOfCurrentPlayers;
struct CMsgDPGetNumberOfCurrentPlayersResponse;
struct CMsgClientFriendUserStatusPublished;
struct CMsgClientServiceMethodLegacy;
struct CMsgClientServiceMethodLegacyResponse;
struct CMsgClientUIMode;
struct CMsgClientVanityURLChangedNotification;
struct CMsgClientAuthorizeLocalDeviceRequest;
struct CMsgClientAuthorizeLocalDevice;
struct CMsgClientAuthorizeLocalDeviceNotification;
struct CMsgClientDeauthorizeDeviceRequest;
struct CMsgClientDeauthorizeDevice;
struct CMsgClientUseLocalDeviceAuthorizations;
struct CMsgClientUseLocalDeviceAuthorizations__DeviceToken;
struct CMsgClientGetAuthorizedDevices;
struct CMsgClientGetAuthorizedDevicesResponse;
struct CMsgClientGetAuthorizedDevicesResponse__AuthorizedDevice;
struct CMsgClientSharedLibraryLockStatus;
struct CMsgClientSharedLibraryLockStatus__LockedLibrary;
struct CMsgClientSharedLibraryStopPlaying;
struct CMsgClientSharedLibraryStopPlaying__StopApp;
struct CMsgClientServiceCall;
struct CMsgClientServiceModule;
struct CMsgClientServiceCallResponse;
struct CMsgAMUnlockH264;
struct CMsgAMUnlockH264Response;
struct CMsgClientPlayingSessionState;
struct CMsgClientKickPlayingSession;
struct CMsgClientVoiceCallPreAuthorize;
struct CMsgClientVoiceCallPreAuthorizeResponse;
struct CMsgBadgeCraftedNotification;
struct CMsgClientStartPeerContentServer;
struct CMsgClientStartPeerContentServerResponse;
struct CMsgClientGetPeerContentInfo;
struct CMsgClientGetPeerContentInfoResponse;
/* --- enums --- */
/* --- descriptors --- */
extern const ProtobufCMessageDescriptor cmsg_client_update_user_game_info__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_rich_presence_upload__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_rich_presence_request__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_rich_presence_info__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_rich_presence_info__rich_presence__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_check_file_signature__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_check_file_signature_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_read_machine_auth__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_read_machine_auth_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_update_machine_auth__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_update_machine_auth_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_request_machine_auth__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_request_machine_auth_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_register_key__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_purchase_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_activate_oemlicense__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_register_oemmachine__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_register_oemmachine_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_purchase_with_machine_id__descriptor;
extern const ProtobufCMessageDescriptor cmsg_trading__initiate_trade_request__descriptor;
extern const ProtobufCMessageDescriptor cmsg_trading__initiate_trade_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_trading__cancel_trade_request__descriptor;
extern const ProtobufCMessageDescriptor cmsg_trading__start_session__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_get_cdnauth_token__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_get_depot_decryption_key__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_get_depot_decryption_key_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_check_app_beta_password__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_check_app_beta_password_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_check_app_beta_password_response__beta_password__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_get_cdnauth_token_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_download_rate_statistics__descriptor;
extern const ProtobufCMessageDescriptor cmsg_download_rate_statistics__stats_info__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_request_account_data__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_request_account_data_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_ugsget_global_stats__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_ugsget_global_stats_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_ugsget_global_stats_response__day__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_ugsget_global_stats_response__day__stat__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_redeem_guest_pass__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_redeem_guest_pass_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_get_clan_activity_counts__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_get_clan_activity_counts_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_ogsreport_string__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_ogsreport_bug__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_sent_logs__descriptor;
extern const ProtobufCMessageDescriptor cmsg_gcclient__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_request_free_license__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_request_free_license_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_drmdownload_request_with_crash_data__descriptor;
extern const ProtobufCMessageDescriptor cmsg_drmdownload_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_drmfinal_result__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_dpcheck_special_survey__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_dpcheck_special_survey_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_dpsend_special_survey_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_dpsend_special_survey_response_reply__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_request_forgotten_password_email__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_request_forgotten_password_email_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_item_announcements__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_item_announcements__unseen_item__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_request_item_announcements__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_user_notifications__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_user_notifications__notification__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_comment_notifications__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_request_comment_notifications__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_offline_message_notification__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_request_offline_message_count__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_chat_get_friend_message_history__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_chat_get_friend_message_history_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_chat_get_friend_message_history_response__friend_message__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_chat_get_friend_message_history_for_offline_messages__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_fsget_friends_steam_levels__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_fsget_friends_steam_levels_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_fsget_friends_steam_levels_response__friend__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_email_addr_info__descriptor;
extern const ProtobufCMessageDescriptor cmsg_creitem_vote_summary__descriptor;
extern const ProtobufCMessageDescriptor cmsg_creitem_vote_summary__published_file_id__descriptor;
extern const ProtobufCMessageDescriptor cmsg_creitem_vote_summary_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_creitem_vote_summary_response__item_vote_summary__descriptor;
extern const ProtobufCMessageDescriptor cmsg_creupdate_user_published_item_vote__descriptor;
extern const ProtobufCMessageDescriptor cmsg_creupdate_user_published_item_vote_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_creget_user_published_item_vote_details__descriptor;
extern const ProtobufCMessageDescriptor cmsg_creget_user_published_item_vote_details__published_file_id__descriptor;
extern const ProtobufCMessageDescriptor cmsg_creget_user_published_item_vote_details_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_creget_user_published_item_vote_details_response__user_item_vote_detail__descriptor;
extern const ProtobufCMessageDescriptor cmsg_fsget_follower_count__descriptor;
extern const ProtobufCMessageDescriptor cmsg_fsget_follower_count_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_fsget_is_following__descriptor;
extern const ProtobufCMessageDescriptor cmsg_fsget_is_following_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_fsenumerate_following_list__descriptor;
extern const ProtobufCMessageDescriptor cmsg_fsenumerate_following_list_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_dpget_number_of_current_players__descriptor;
extern const ProtobufCMessageDescriptor cmsg_dpget_number_of_current_players_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_friend_user_status_published__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_service_method_legacy__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_service_method_legacy_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_uimode__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_vanity_urlchanged_notification__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_authorize_local_device_request__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_authorize_local_device__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_authorize_local_device_notification__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_deauthorize_device_request__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_deauthorize_device__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_use_local_device_authorizations__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_use_local_device_authorizations__device_token__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_get_authorized_devices__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_get_authorized_devices_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_get_authorized_devices_response__authorized_device__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_shared_library_lock_status__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_shared_library_lock_status__locked_library__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_shared_library_stop_playing__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_shared_library_stop_playing__stop_app__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_service_call__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_service_module__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_service_call_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_amunlock_h264__descriptor;
extern const ProtobufCMessageDescriptor cmsg_amunlock_h264_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_playing_session_state__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_kick_playing_session__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_voice_call_pre_authorize__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_voice_call_pre_authorize_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_badge_crafted_notification__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_start_peer_content_server__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_start_peer_content_server_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_get_peer_content_info__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_get_peer_content_info_response__descriptor;
/* --- messages --- */
extern "C" void message_init_generic(const ProtobufCMessageDescriptor * desc, ProtobufCMessage * message);
struct CMsgClientUpdateUserGameInfo : public ProtobufCppMessage
{
CMsgClientUpdateUserGameInfo() :
ProtobufCppMessage(cmsg_client_update_user_game_info__descriptor)
{}
protobuf_c_boolean has_steamid_idgs;
uint64_t steamid_idgs;
protobuf_c_boolean has_gameid;
uint64_t gameid;
protobuf_c_boolean has_game_ip;
uint32_t game_ip;
protobuf_c_boolean has_game_port;
uint32_t game_port;
protobuf_c_boolean has_token;
ProtobufCBinaryData token;
};
struct CMsgClientRichPresenceUpload : public ProtobufCppMessage
{
CMsgClientRichPresenceUpload() :
ProtobufCppMessage(cmsg_client_rich_presence_upload__descriptor)
{}
protobuf_c_boolean has_rich_presence_kv;
ProtobufCBinaryData rich_presence_kv;
size_t n_steamid_broadcast;
uint64_t *steamid_broadcast;
};
struct CMsgClientRichPresenceRequest : public ProtobufCppMessage
{
CMsgClientRichPresenceRequest() :
ProtobufCppMessage(cmsg_client_rich_presence_request__descriptor)
{}
size_t n_steamid_request;
uint64_t *steamid_request;
};
struct CMsgClientRichPresenceInfo__RichPresence : public ProtobufCppMessage
{
CMsgClientRichPresenceInfo__RichPresence() :
ProtobufCppMessage(cmsg_client_rich_presence_info__rich_presence__descriptor)
{}
protobuf_c_boolean has_steamid_user;
uint64_t steamid_user;
protobuf_c_boolean has_rich_presence_kv;
ProtobufCBinaryData rich_presence_kv;
};
struct CMsgClientRichPresenceInfo : public ProtobufCppMessage
{
CMsgClientRichPresenceInfo() :
ProtobufCppMessage(cmsg_client_rich_presence_info__descriptor)
{}
size_t n_rich_presence;
CMsgClientRichPresenceInfo__RichPresence **rich_presence;
};
struct CMsgClientCheckFileSignature : public ProtobufCppMessage
{
CMsgClientCheckFileSignature() :
ProtobufCppMessage(cmsg_client_check_file_signature__descriptor)
{}
protobuf_c_boolean has_app_id;
uint32_t app_id;
};
struct CMsgClientCheckFileSignatureResponse : public ProtobufCppMessage
{
CMsgClientCheckFileSignatureResponse() :
ProtobufCppMessage(cmsg_client_check_file_signature_response__descriptor)
{}
protobuf_c_boolean has_app_id;
uint32_t app_id;
protobuf_c_boolean has_pid;
uint32_t pid;
protobuf_c_boolean has_eresult;
uint32_t eresult;
char *filename;
protobuf_c_boolean has_esignatureresult;
uint32_t esignatureresult;
protobuf_c_boolean has_sha_file;
ProtobufCBinaryData sha_file;
protobuf_c_boolean has_signatureheader;
ProtobufCBinaryData signatureheader;
protobuf_c_boolean has_filesize;
uint32_t filesize;
protobuf_c_boolean has_getlasterror;
uint32_t getlasterror;
protobuf_c_boolean has_evalvesignaturecheckdetail;
uint32_t evalvesignaturecheckdetail;
};
struct CMsgClientReadMachineAuth : public ProtobufCppMessage
{
CMsgClientReadMachineAuth() :
ProtobufCppMessage(cmsg_client_read_machine_auth__descriptor)
{}
char *filename;
protobuf_c_boolean has_offset;
uint32_t offset;
protobuf_c_boolean has_cubtoread;
uint32_t cubtoread;
};
struct CMsgClientReadMachineAuthResponse : public ProtobufCppMessage
{
CMsgClientReadMachineAuthResponse() :
ProtobufCppMessage(cmsg_client_read_machine_auth_response__descriptor)
{}
char *filename;
protobuf_c_boolean has_eresult;
uint32_t eresult;
protobuf_c_boolean has_filesize;
uint32_t filesize;
protobuf_c_boolean has_sha_file;
ProtobufCBinaryData sha_file;
protobuf_c_boolean has_getlasterror;
uint32_t getlasterror;
protobuf_c_boolean has_offset;
uint32_t offset;
protobuf_c_boolean has_cubread;
uint32_t cubread;
protobuf_c_boolean has_bytes_read;
ProtobufCBinaryData bytes_read;
char *filename_sentry;
};
struct CMsgClientUpdateMachineAuth : public ProtobufCppMessage
{
CMsgClientUpdateMachineAuth() :
ProtobufCppMessage(cmsg_client_update_machine_auth__descriptor)
{}
char *filename;
protobuf_c_boolean has_offset;
uint32_t offset;
protobuf_c_boolean has_cubtowrite;
uint32_t cubtowrite;
protobuf_c_boolean has_bytes;
ProtobufCBinaryData bytes;
protobuf_c_boolean has_otp_type;
uint32_t otp_type;
char *otp_identifier;
protobuf_c_boolean has_otp_sharedsecret;
ProtobufCBinaryData otp_sharedsecret;
protobuf_c_boolean has_otp_timedrift;
uint32_t otp_timedrift;
};
struct CMsgClientUpdateMachineAuthResponse : public ProtobufCppMessage
{
CMsgClientUpdateMachineAuthResponse() :
ProtobufCppMessage(cmsg_client_update_machine_auth_response__descriptor)
{}
char *filename;
protobuf_c_boolean has_eresult;
uint32_t eresult;
protobuf_c_boolean has_filesize;
uint32_t filesize;
protobuf_c_boolean has_sha_file;
ProtobufCBinaryData sha_file;
protobuf_c_boolean has_getlasterror;
uint32_t getlasterror;
protobuf_c_boolean has_offset;
uint32_t offset;
protobuf_c_boolean has_cubwrote;
uint32_t cubwrote;
protobuf_c_boolean has_otp_type;
int32_t otp_type;
protobuf_c_boolean has_otp_value;
uint32_t otp_value;
char *otp_identifier;
};
struct CMsgClientRequestMachineAuth : public ProtobufCppMessage
{
CMsgClientRequestMachineAuth() :
ProtobufCppMessage(cmsg_client_request_machine_auth__descriptor)
{}
char *filename;
protobuf_c_boolean has_eresult_sentryfile;
uint32_t eresult_sentryfile;
protobuf_c_boolean has_filesize;
uint32_t filesize;
protobuf_c_boolean has_sha_sentryfile;
ProtobufCBinaryData sha_sentryfile;
protobuf_c_boolean has_lock_account_action;
int32_t lock_account_action;
protobuf_c_boolean has_otp_type;
uint32_t otp_type;
char *otp_identifier;
protobuf_c_boolean has_otp_sharedsecret;
ProtobufCBinaryData otp_sharedsecret;
protobuf_c_boolean has_otp_value;
uint32_t otp_value;
char *machine_name;
char *machine_name_userchosen;
};
struct CMsgClientRequestMachineAuthResponse : public ProtobufCppMessage
{
CMsgClientRequestMachineAuthResponse() :
ProtobufCppMessage(cmsg_client_request_machine_auth_response__descriptor)
{}
protobuf_c_boolean has_eresult;
uint32_t eresult;
};
struct CMsgClientRegisterKey : public ProtobufCppMessage
{
CMsgClientRegisterKey() :
ProtobufCppMessage(cmsg_client_register_key__descriptor)
{}
char *key;
};
struct CMsgClientPurchaseResponse : public ProtobufCppMessage
{
CMsgClientPurchaseResponse() :
ProtobufCppMessage(cmsg_client_purchase_response__descriptor)
{}
protobuf_c_boolean has_eresult;
int32_t eresult;
protobuf_c_boolean has_purchase_result_details;
int32_t purchase_result_details;
protobuf_c_boolean has_purchase_receipt_info;
ProtobufCBinaryData purchase_receipt_info;
};
struct CMsgClientActivateOEMLicense : public ProtobufCppMessage
{
CMsgClientActivateOEMLicense() :
ProtobufCppMessage(cmsg_client_activate_oemlicense__descriptor)
{}
char *bios_manufacturer;
char *bios_serialnumber;
protobuf_c_boolean has_license_file;
ProtobufCBinaryData license_file;
char *mainboard_manufacturer;
char *mainboard_product;
char *mainboard_serialnumber;
};
struct CMsgClientRegisterOEMMachine : public ProtobufCppMessage
{
CMsgClientRegisterOEMMachine() :
ProtobufCppMessage(cmsg_client_register_oemmachine__descriptor)
{}
protobuf_c_boolean has_oem_register_file;
ProtobufCBinaryData oem_register_file;
};
struct CMsgClientRegisterOEMMachineResponse : public ProtobufCppMessage
{
CMsgClientRegisterOEMMachineResponse() :
ProtobufCppMessage(cmsg_client_register_oemmachine_response__descriptor)
{}
protobuf_c_boolean has_eresult;
uint32_t eresult;
};
struct CMsgClientPurchaseWithMachineID : public ProtobufCppMessage
{
CMsgClientPurchaseWithMachineID() :
ProtobufCppMessage(cmsg_client_purchase_with_machine_id__descriptor)
{}
protobuf_c_boolean has_package_id;
uint32_t package_id;
protobuf_c_boolean has_machine_info;
ProtobufCBinaryData machine_info;
};
struct CMsgTradingInitiateTradeRequest : public ProtobufCppMessage
{
CMsgTradingInitiateTradeRequest() :
ProtobufCppMessage(cmsg_trading__initiate_trade_request__descriptor)
{}
protobuf_c_boolean has_trade_request_id;
uint32_t trade_request_id;
protobuf_c_boolean has_other_steamid;
uint64_t other_steamid;
char *other_name;
};
struct CMsgTradingInitiateTradeResponse : public ProtobufCppMessage
{
CMsgTradingInitiateTradeResponse() :
ProtobufCppMessage(cmsg_trading__initiate_trade_response__descriptor)
{}
protobuf_c_boolean has_response;
uint32_t response;
protobuf_c_boolean has_trade_request_id;
uint32_t trade_request_id;
protobuf_c_boolean has_other_steamid;
uint64_t other_steamid;
protobuf_c_boolean has_steamguard_required_days;
uint32_t steamguard_required_days;
protobuf_c_boolean has_new_device_cooldown_days;
uint32_t new_device_cooldown_days;
protobuf_c_boolean has_default_password_reset_probation_days;
uint32_t default_password_reset_probation_days;
protobuf_c_boolean has_password_reset_probation_days;
uint32_t password_reset_probation_days;
protobuf_c_boolean has_default_email_change_probation_days;
uint32_t default_email_change_probation_days;
protobuf_c_boolean has_email_change_probation_days;
uint32_t email_change_probation_days;
};
struct CMsgTradingCancelTradeRequest : public ProtobufCppMessage
{
CMsgTradingCancelTradeRequest() :
ProtobufCppMessage(cmsg_trading__cancel_trade_request__descriptor)
{}
protobuf_c_boolean has_other_steamid;
uint64_t other_steamid;
};
struct CMsgTradingStartSession : public ProtobufCppMessage
{
CMsgTradingStartSession() :
ProtobufCppMessage(cmsg_trading__start_session__descriptor)
{}
protobuf_c_boolean has_other_steamid;
uint64_t other_steamid;
};
struct CMsgClientGetCDNAuthToken : public ProtobufCppMessage
{
CMsgClientGetCDNAuthToken() :
ProtobufCppMessage(cmsg_client_get_cdnauth_token__descriptor)
{}
protobuf_c_boolean has_depot_id;
uint32_t depot_id;
char *host_name;
protobuf_c_boolean has_app_id;
uint32_t app_id;
};
struct CMsgClientGetDepotDecryptionKey : public ProtobufCppMessage
{
CMsgClientGetDepotDecryptionKey() :
ProtobufCppMessage(cmsg_client_get_depot_decryption_key__descriptor)
{}
protobuf_c_boolean has_depot_id;
uint32_t depot_id;
protobuf_c_boolean has_app_id;
uint32_t app_id;
};
struct CMsgClientGetDepotDecryptionKeyResponse : public ProtobufCppMessage
{
CMsgClientGetDepotDecryptionKeyResponse() :
ProtobufCppMessage(cmsg_client_get_depot_decryption_key_response__descriptor)
{}
protobuf_c_boolean has_eresult;
int32_t eresult;
protobuf_c_boolean has_depot_id;
uint32_t depot_id;
protobuf_c_boolean has_depot_encryption_key;
ProtobufCBinaryData depot_encryption_key;
};
struct CMsgClientCheckAppBetaPassword : public ProtobufCppMessage
{
CMsgClientCheckAppBetaPassword() :
ProtobufCppMessage(cmsg_client_check_app_beta_password__descriptor)
{}
protobuf_c_boolean has_app_id;
uint32_t app_id;
char *betapassword;
protobuf_c_boolean has_language;
int32_t language;
};
struct CMsgClientCheckAppBetaPasswordResponse__BetaPassword : public ProtobufCppMessage
{
CMsgClientCheckAppBetaPasswordResponse__BetaPassword() :
ProtobufCppMessage(cmsg_client_check_app_beta_password_response__beta_password__descriptor)
{}
char *betaname;
char *betapassword;
char *betadescription;
};
struct CMsgClientCheckAppBetaPasswordResponse : public ProtobufCppMessage
{
CMsgClientCheckAppBetaPasswordResponse() :
ProtobufCppMessage(cmsg_client_check_app_beta_password_response__descriptor)
{}
protobuf_c_boolean has_eresult;
int32_t eresult;
size_t n_betapasswords;
CMsgClientCheckAppBetaPasswordResponse__BetaPassword **betapasswords;
};
struct CMsgClientGetCDNAuthTokenResponse : public ProtobufCppMessage
{
CMsgClientGetCDNAuthTokenResponse() :
ProtobufCppMessage(cmsg_client_get_cdnauth_token_response__descriptor)
{}
protobuf_c_boolean has_eresult;
uint32_t eresult;
char *token;
protobuf_c_boolean has_expiration_time;
uint32_t expiration_time;
};
struct CMsgDownloadRateStatistics__StatsInfo : public ProtobufCppMessage
{
CMsgDownloadRateStatistics__StatsInfo() :
ProtobufCppMessage(cmsg_download_rate_statistics__stats_info__descriptor)
{}
protobuf_c_boolean has_source_type;
uint32_t source_type;
protobuf_c_boolean has_source_id;
uint32_t source_id;
protobuf_c_boolean has_seconds;
uint32_t seconds;
protobuf_c_boolean has_bytes;
uint64_t bytes;
char *host_name;
protobuf_c_boolean has_microseconds;
uint64_t microseconds;
protobuf_c_boolean has_used_ipv6;
protobuf_c_boolean used_ipv6;
protobuf_c_boolean has_proxied;
protobuf_c_boolean proxied;
};
struct CMsgDownloadRateStatistics : public ProtobufCppMessage
{
CMsgDownloadRateStatistics() :
ProtobufCppMessage(cmsg_download_rate_statistics__descriptor)
{}
protobuf_c_boolean has_cell_id;
uint32_t cell_id;
size_t n_stats;
CMsgDownloadRateStatistics__StatsInfo **stats;
protobuf_c_boolean has_throttling_kbps;
uint32_t throttling_kbps;
protobuf_c_boolean has_steam_realm;
uint32_t steam_realm;
};
struct CMsgClientRequestAccountData : public ProtobufCppMessage
{
CMsgClientRequestAccountData() :
ProtobufCppMessage(cmsg_client_request_account_data__descriptor)
{}
char *account_or_email;
protobuf_c_boolean has_action;
uint32_t action;
};
struct CMsgClientRequestAccountDataResponse : public ProtobufCppMessage
{
CMsgClientRequestAccountDataResponse() :
ProtobufCppMessage(cmsg_client_request_account_data_response__descriptor)
{}
protobuf_c_boolean has_action;
uint32_t action;
protobuf_c_boolean has_eresult;
uint32_t eresult;
char *account_name;
protobuf_c_boolean has_ct_matches;
uint32_t ct_matches;
char *account_name_suggestion1;
char *account_name_suggestion2;
char *account_name_suggestion3;
};
struct CMsgClientUGSGetGlobalStats : public ProtobufCppMessage
{
CMsgClientUGSGetGlobalStats() :
ProtobufCppMessage(cmsg_client_ugsget_global_stats__descriptor)
{}
protobuf_c_boolean has_gameid;
uint64_t gameid;
protobuf_c_boolean has_history_days_requested;
uint32_t history_days_requested;
protobuf_c_boolean has_time_last_requested;
uint32_t time_last_requested;
protobuf_c_boolean has_first_day_cached;
uint32_t first_day_cached;
protobuf_c_boolean has_days_cached;
uint32_t days_cached;
};
struct CMsgClientUGSGetGlobalStatsResponse__Day__Stat : public ProtobufCppMessage
{
CMsgClientUGSGetGlobalStatsResponse__Day__Stat() :
ProtobufCppMessage(cmsg_client_ugsget_global_stats_response__day__stat__descriptor)
{}
protobuf_c_boolean has_stat_id;
int32_t stat_id;
protobuf_c_boolean has_data;
int64_t data;
};
struct CMsgClientUGSGetGlobalStatsResponse__Day : public ProtobufCppMessage
{
CMsgClientUGSGetGlobalStatsResponse__Day() :
ProtobufCppMessage(cmsg_client_ugsget_global_stats_response__day__descriptor)
{}
protobuf_c_boolean has_day_id;
uint32_t day_id;
size_t n_stats;
CMsgClientUGSGetGlobalStatsResponse__Day__Stat **stats;
};
struct CMsgClientUGSGetGlobalStatsResponse : public ProtobufCppMessage
{
CMsgClientUGSGetGlobalStatsResponse() :
ProtobufCppMessage(cmsg_client_ugsget_global_stats_response__descriptor)
{}
protobuf_c_boolean has_eresult;
int32_t eresult;
protobuf_c_boolean has_timestamp;
uint32_t timestamp;
protobuf_c_boolean has_day_current;
int32_t day_current;
size_t n_days;
CMsgClientUGSGetGlobalStatsResponse__Day **days;
};
struct CMsgClientRedeemGuestPass : public ProtobufCppMessage
{
CMsgClientRedeemGuestPass() :
ProtobufCppMessage(cmsg_client_redeem_guest_pass__descriptor)
{}
protobuf_c_boolean has_guest_pass_id;
uint64_t guest_pass_id;
};
struct CMsgClientRedeemGuestPassResponse : public ProtobufCppMessage
{
CMsgClientRedeemGuestPassResponse() :
ProtobufCppMessage(cmsg_client_redeem_guest_pass_response__descriptor)
{}
protobuf_c_boolean has_eresult;
uint32_t eresult;
protobuf_c_boolean has_package_id;
uint32_t package_id;
protobuf_c_boolean has_must_own_appid;
uint32_t must_own_appid;
};
struct CMsgClientGetClanActivityCounts : public ProtobufCppMessage
{
CMsgClientGetClanActivityCounts() :
ProtobufCppMessage(cmsg_client_get_clan_activity_counts__descriptor)
{}
size_t n_steamid_clans;
uint64_t *steamid_clans;
};
struct CMsgClientGetClanActivityCountsResponse : public ProtobufCppMessage
{
CMsgClientGetClanActivityCountsResponse() :
ProtobufCppMessage(cmsg_client_get_clan_activity_counts_response__descriptor)
{}
protobuf_c_boolean has_eresult;
uint32_t eresult;
};
struct CMsgClientOGSReportString : public ProtobufCppMessage
{
CMsgClientOGSReportString() :
ProtobufCppMessage(cmsg_client_ogsreport_string__descriptor)
{}
protobuf_c_boolean has_accumulated;
protobuf_c_boolean accumulated;
protobuf_c_boolean has_sessionid;
uint64_t sessionid;
protobuf_c_boolean has_severity;
int32_t severity;
char *formatter;
protobuf_c_boolean has_varargs;
ProtobufCBinaryData varargs;
};
struct CMsgClientOGSReportBug : public ProtobufCppMessage
{
CMsgClientOGSReportBug() :
ProtobufCppMessage(cmsg_client_ogsreport_bug__descriptor)
{}
protobuf_c_boolean has_sessionid;
uint64_t sessionid;
char *bugtext;
protobuf_c_boolean has_screenshot;
ProtobufCBinaryData screenshot;
};
struct CMsgClientSentLogs : public ProtobufCppMessage
{
CMsgClientSentLogs() :
ProtobufCppMessage(cmsg_client_sent_logs__descriptor)
{}
};
struct CMsgGCClient : public ProtobufCppMessage
{
CMsgGCClient() :
ProtobufCppMessage(cmsg_gcclient__descriptor)
{}
protobuf_c_boolean has_appid;
uint32_t appid;
protobuf_c_boolean has_msgtype;
uint32_t msgtype;
protobuf_c_boolean has_payload;
ProtobufCBinaryData payload;
protobuf_c_boolean has_steamid;
uint64_t steamid;
char *gcname;
protobuf_c_boolean has_ip;
uint32_t ip;
};
struct CMsgClientRequestFreeLicense : public ProtobufCppMessage
{
CMsgClientRequestFreeLicense() :
ProtobufCppMessage(cmsg_client_request_free_license__descriptor)
{}
size_t n_appids;
uint32_t *appids;
};
struct CMsgClientRequestFreeLicenseResponse : public ProtobufCppMessage
{
CMsgClientRequestFreeLicenseResponse() :
ProtobufCppMessage(cmsg_client_request_free_license_response__descriptor)
{}
protobuf_c_boolean has_eresult;
uint32_t eresult;
size_t n_granted_packageids;
uint32_t *granted_packageids;
size_t n_granted_appids;
uint32_t *granted_appids;
};
struct CMsgDRMDownloadRequestWithCrashData : public ProtobufCppMessage
{
CMsgDRMDownloadRequestWithCrashData() :
ProtobufCppMessage(cmsg_drmdownload_request_with_crash_data__descriptor)
{}
protobuf_c_boolean has_download_flags;
uint32_t download_flags;
protobuf_c_boolean has_download_types_known;
uint32_t download_types_known;
protobuf_c_boolean has_guid_drm;
ProtobufCBinaryData guid_drm;
protobuf_c_boolean has_guid_split;
ProtobufCBinaryData guid_split;
protobuf_c_boolean has_guid_merge;
ProtobufCBinaryData guid_merge;
char *module_name;
char *module_path;
protobuf_c_boolean has_crash_data;
ProtobufCBinaryData crash_data;
};
struct CMsgDRMDownloadResponse : public ProtobufCppMessage
{
CMsgDRMDownloadResponse() :
ProtobufCppMessage(cmsg_drmdownload_response__descriptor)
{}
protobuf_c_boolean has_eresult;
uint32_t eresult;
protobuf_c_boolean has_app_id;
uint32_t app_id;
protobuf_c_boolean has_blob_download_type;
uint32_t blob_download_type;
protobuf_c_boolean has_merge_guid;
ProtobufCBinaryData merge_guid;
protobuf_c_boolean has_download_file_dfs_ip;
uint32_t download_file_dfs_ip;
protobuf_c_boolean has_download_file_dfs_port;
uint32_t download_file_dfs_port;
char *download_file_url;
char *module_path;
};
struct CMsgDRMFinalResult : public ProtobufCppMessage
{
CMsgDRMFinalResult() :
ProtobufCppMessage(cmsg_drmfinal_result__descriptor)
{}
protobuf_c_boolean has_eresult;
uint32_t eresult;
protobuf_c_boolean has_app_id;
uint32_t app_id;
protobuf_c_boolean has_blob_download_type;
uint32_t blob_download_type;
protobuf_c_boolean has_error_detail;
uint32_t error_detail;
protobuf_c_boolean has_merge_guid;
ProtobufCBinaryData merge_guid;
protobuf_c_boolean has_download_file_dfs_ip;
uint32_t download_file_dfs_ip;
protobuf_c_boolean has_download_file_dfs_port;
uint32_t download_file_dfs_port;
char *download_file_url;
};
struct CMsgClientDPCheckSpecialSurvey : public ProtobufCppMessage
{
CMsgClientDPCheckSpecialSurvey() :
ProtobufCppMessage(cmsg_client_dpcheck_special_survey__descriptor)
{}
protobuf_c_boolean has_survey_id;
uint32_t survey_id;
};
struct CMsgClientDPCheckSpecialSurveyResponse : public ProtobufCppMessage
{
CMsgClientDPCheckSpecialSurveyResponse() :
ProtobufCppMessage(cmsg_client_dpcheck_special_survey_response__descriptor)
{}
protobuf_c_boolean has_eresult;
uint32_t eresult;
protobuf_c_boolean has_state;
uint32_t state;
char *name;
char *custom_url;
protobuf_c_boolean has_include_software;
protobuf_c_boolean include_software;
protobuf_c_boolean has_token;
ProtobufCBinaryData token;
};
struct CMsgClientDPSendSpecialSurveyResponse : public ProtobufCppMessage
{
CMsgClientDPSendSpecialSurveyResponse() :
ProtobufCppMessage(cmsg_client_dpsend_special_survey_response__descriptor)
{}
protobuf_c_boolean has_survey_id;
uint32_t survey_id;
protobuf_c_boolean has_data;
ProtobufCBinaryData data;
};
struct CMsgClientDPSendSpecialSurveyResponseReply : public ProtobufCppMessage
{
CMsgClientDPSendSpecialSurveyResponseReply() :
ProtobufCppMessage(cmsg_client_dpsend_special_survey_response_reply__descriptor)
{}
protobuf_c_boolean has_eresult;
uint32_t eresult;
protobuf_c_boolean has_token;
ProtobufCBinaryData token;
};
struct CMsgClientRequestForgottenPasswordEmail : public ProtobufCppMessage
{
CMsgClientRequestForgottenPasswordEmail() :
ProtobufCppMessage(cmsg_client_request_forgotten_password_email__descriptor)
{}
char *account_name;
char *password_tried;
};
struct CMsgClientRequestForgottenPasswordEmailResponse : public ProtobufCppMessage
{
CMsgClientRequestForgottenPasswordEmailResponse() :
ProtobufCppMessage(cmsg_client_request_forgotten_password_email_response__descriptor)
{}
protobuf_c_boolean has_eresult;
uint32_t eresult;
protobuf_c_boolean has_use_secret_question;
protobuf_c_boolean use_secret_question;
};
struct CMsgClientItemAnnouncements__UnseenItem : public ProtobufCppMessage
{
CMsgClientItemAnnouncements__UnseenItem() :
ProtobufCppMessage(cmsg_client_item_announcements__unseen_item__descriptor)
{}
protobuf_c_boolean has_appid;
uint32_t appid;
protobuf_c_boolean has_context_id;
uint64_t context_id;
protobuf_c_boolean has_asset_id;
uint64_t asset_id;
protobuf_c_boolean has_amount;
uint64_t amount;
protobuf_c_boolean has_rtime32_gained;
uint32_t rtime32_gained;
protobuf_c_boolean has_source_appid;
uint32_t source_appid;
};
struct CMsgClientItemAnnouncements : public ProtobufCppMessage
{
CMsgClientItemAnnouncements() :
ProtobufCppMessage(cmsg_client_item_announcements__descriptor)
{}
protobuf_c_boolean has_count_new_items;
uint32_t count_new_items;
size_t n_unseen_items;
CMsgClientItemAnnouncements__UnseenItem **unseen_items;
};
struct CMsgClientRequestItemAnnouncements : public ProtobufCppMessage
{
CMsgClientRequestItemAnnouncements() :
ProtobufCppMessage(cmsg_client_request_item_announcements__descriptor)
{}
};
struct CMsgClientUserNotifications__Notification : public ProtobufCppMessage
{
CMsgClientUserNotifications__Notification() :
ProtobufCppMessage(cmsg_client_user_notifications__notification__descriptor)
{}
protobuf_c_boolean has_user_notification_type;
uint32_t user_notification_type;
protobuf_c_boolean has_count;
uint32_t count;
};
struct CMsgClientUserNotifications : public ProtobufCppMessage
{
CMsgClientUserNotifications() :
ProtobufCppMessage(cmsg_client_user_notifications__descriptor)
{}
size_t n_notifications;
CMsgClientUserNotifications__Notification **notifications;
};
struct CMsgClientCommentNotifications : public ProtobufCppMessage
{
CMsgClientCommentNotifications() :
ProtobufCppMessage(cmsg_client_comment_notifications__descriptor)
{}
protobuf_c_boolean has_count_new_comments;
uint32_t count_new_comments;
protobuf_c_boolean has_count_new_comments_owner;
uint32_t count_new_comments_owner;
protobuf_c_boolean has_count_new_comments_subscriptions;
uint32_t count_new_comments_subscriptions;
};
struct CMsgClientRequestCommentNotifications : public ProtobufCppMessage
{
CMsgClientRequestCommentNotifications() :
ProtobufCppMessage(cmsg_client_request_comment_notifications__descriptor)
{}
};
struct CMsgClientOfflineMessageNotification : public ProtobufCppMessage
{
CMsgClientOfflineMessageNotification() :
ProtobufCppMessage(cmsg_client_offline_message_notification__descriptor)
{}
protobuf_c_boolean has_offline_messages;
uint32_t offline_messages;
size_t n_friends_with_offline_messages;
uint32_t *friends_with_offline_messages;
};
struct CMsgClientRequestOfflineMessageCount : public ProtobufCppMessage
{
CMsgClientRequestOfflineMessageCount() :
ProtobufCppMessage(cmsg_client_request_offline_message_count__descriptor)
{}
};
struct CMsgClientChatGetFriendMessageHistory : public ProtobufCppMessage
{
CMsgClientChatGetFriendMessageHistory() :
ProtobufCppMessage(cmsg_client_chat_get_friend_message_history__descriptor)
{}
protobuf_c_boolean has_steamid;
uint64_t steamid;
};
struct CMsgClientChatGetFriendMessageHistoryResponse__FriendMessage : public ProtobufCppMessage
{
CMsgClientChatGetFriendMessageHistoryResponse__FriendMessage() :
ProtobufCppMessage(cmsg_client_chat_get_friend_message_history_response__friend_message__descriptor)
{}
protobuf_c_boolean has_accountid;
uint32_t accountid;
protobuf_c_boolean has_timestamp;
uint32_t timestamp;
char *message;
protobuf_c_boolean has_unread;
protobuf_c_boolean unread;
};
struct CMsgClientChatGetFriendMessageHistoryResponse : public ProtobufCppMessage
{
CMsgClientChatGetFriendMessageHistoryResponse() :
ProtobufCppMessage(cmsg_client_chat_get_friend_message_history_response__descriptor)
{}
protobuf_c_boolean has_steamid;
uint64_t steamid;
protobuf_c_boolean has_success;
uint32_t success;
size_t n_messages;
CMsgClientChatGetFriendMessageHistoryResponse__FriendMessage **messages;
};
struct CMsgClientChatGetFriendMessageHistoryForOfflineMessages : public ProtobufCppMessage
{
CMsgClientChatGetFriendMessageHistoryForOfflineMessages() :
ProtobufCppMessage(cmsg_client_chat_get_friend_message_history_for_offline_messages__descriptor)
{}
};
struct CMsgClientFSGetFriendsSteamLevels : public ProtobufCppMessage
{
CMsgClientFSGetFriendsSteamLevels() :
ProtobufCppMessage(cmsg_client_fsget_friends_steam_levels__descriptor)
{}
size_t n_accountids;
uint32_t *accountids;
};
struct CMsgClientFSGetFriendsSteamLevelsResponse__Friend : public ProtobufCppMessage
{
CMsgClientFSGetFriendsSteamLevelsResponse__Friend() :
ProtobufCppMessage(cmsg_client_fsget_friends_steam_levels_response__friend__descriptor)
{}
protobuf_c_boolean has_accountid;
uint32_t accountid;
protobuf_c_boolean has_level;
uint32_t level;
};
struct CMsgClientFSGetFriendsSteamLevelsResponse : public ProtobufCppMessage
{
CMsgClientFSGetFriendsSteamLevelsResponse() :
ProtobufCppMessage(cmsg_client_fsget_friends_steam_levels_response__descriptor)
{}
size_t n_friends;
CMsgClientFSGetFriendsSteamLevelsResponse__Friend **friends;
};
struct CMsgClientEmailAddrInfo : public ProtobufCppMessage
{
CMsgClientEmailAddrInfo() :
ProtobufCppMessage(cmsg_client_email_addr_info__descriptor)
{}
char *email_address;
protobuf_c_boolean has_email_is_validated;
protobuf_c_boolean email_is_validated;
protobuf_c_boolean has_email_validation_changed;
protobuf_c_boolean email_validation_changed;
protobuf_c_boolean has_credential_change_requires_code;
protobuf_c_boolean credential_change_requires_code;
protobuf_c_boolean has_password_or_secretqa_change_requires_code;
protobuf_c_boolean password_or_secretqa_change_requires_code;
};
struct CMsgCREItemVoteSummary__PublishedFileId : public ProtobufCppMessage
{
CMsgCREItemVoteSummary__PublishedFileId() :
ProtobufCppMessage(cmsg_creitem_vote_summary__published_file_id__descriptor)
{}
protobuf_c_boolean has_published_file_id;
uint64_t published_file_id;
};
struct CMsgCREItemVoteSummary : public ProtobufCppMessage
{
CMsgCREItemVoteSummary() :
ProtobufCppMessage(cmsg_creitem_vote_summary__descriptor)
{}
size_t n_published_file_ids;
CMsgCREItemVoteSummary__PublishedFileId **published_file_ids;
};
struct CMsgCREItemVoteSummaryResponse__ItemVoteSummary : public ProtobufCppMessage
{
CMsgCREItemVoteSummaryResponse__ItemVoteSummary() :
ProtobufCppMessage(cmsg_creitem_vote_summary_response__item_vote_summary__descriptor)
{}
protobuf_c_boolean has_published_file_id;
uint64_t published_file_id;
protobuf_c_boolean has_votes_for;
int32_t votes_for;
protobuf_c_boolean has_votes_against;
int32_t votes_against;
protobuf_c_boolean has_reports;
int32_t reports;
protobuf_c_boolean has_score;
float score;
};
struct CMsgCREItemVoteSummaryResponse : public ProtobufCppMessage
{
CMsgCREItemVoteSummaryResponse() :
ProtobufCppMessage(cmsg_creitem_vote_summary_response__descriptor)
{}
protobuf_c_boolean has_eresult;
int32_t eresult;
size_t n_item_vote_summaries;
CMsgCREItemVoteSummaryResponse__ItemVoteSummary **item_vote_summaries;
};
struct CMsgCREUpdateUserPublishedItemVote : public ProtobufCppMessage
{
CMsgCREUpdateUserPublishedItemVote() :
ProtobufCppMessage(cmsg_creupdate_user_published_item_vote__descriptor)
{}
protobuf_c_boolean has_published_file_id;
uint64_t published_file_id;
protobuf_c_boolean has_vote_up;
protobuf_c_boolean vote_up;
};
struct CMsgCREUpdateUserPublishedItemVoteResponse : public ProtobufCppMessage
{
CMsgCREUpdateUserPublishedItemVoteResponse() :
ProtobufCppMessage(cmsg_creupdate_user_published_item_vote_response__descriptor)
{}
protobuf_c_boolean has_eresult;
int32_t eresult;
};
struct CMsgCREGetUserPublishedItemVoteDetails__PublishedFileId : public ProtobufCppMessage
{
CMsgCREGetUserPublishedItemVoteDetails__PublishedFileId() :
ProtobufCppMessage(cmsg_creget_user_published_item_vote_details__published_file_id__descriptor)
{}
protobuf_c_boolean has_published_file_id;
uint64_t published_file_id;
};
struct CMsgCREGetUserPublishedItemVoteDetails : public ProtobufCppMessage
{
CMsgCREGetUserPublishedItemVoteDetails() :
ProtobufCppMessage(cmsg_creget_user_published_item_vote_details__descriptor)
{}
size_t n_published_file_ids;
CMsgCREGetUserPublishedItemVoteDetails__PublishedFileId **published_file_ids;
};
struct CMsgCREGetUserPublishedItemVoteDetailsResponse__UserItemVoteDetail : public ProtobufCppMessage
{
CMsgCREGetUserPublishedItemVoteDetailsResponse__UserItemVoteDetail() :
ProtobufCppMessage(cmsg_creget_user_published_item_vote_details_response__user_item_vote_detail__descriptor)
{}
protobuf_c_boolean has_published_file_id;
uint64_t published_file_id;
protobuf_c_boolean has_vote;
int32_t vote;
};
struct CMsgCREGetUserPublishedItemVoteDetailsResponse : public ProtobufCppMessage
{
CMsgCREGetUserPublishedItemVoteDetailsResponse() :
ProtobufCppMessage(cmsg_creget_user_published_item_vote_details_response__descriptor)
{}
protobuf_c_boolean has_eresult;
int32_t eresult;
size_t n_user_item_vote_details;
CMsgCREGetUserPublishedItemVoteDetailsResponse__UserItemVoteDetail **user_item_vote_details;
};
struct CMsgFSGetFollowerCount : public ProtobufCppMessage
{
CMsgFSGetFollowerCount() :
ProtobufCppMessage(cmsg_fsget_follower_count__descriptor)
{}
protobuf_c_boolean has_steam_id;
uint64_t steam_id;
};
struct CMsgFSGetFollowerCountResponse : public ProtobufCppMessage
{
CMsgFSGetFollowerCountResponse() :
ProtobufCppMessage(cmsg_fsget_follower_count_response__descriptor)
{}
protobuf_c_boolean has_eresult;
int32_t eresult;
protobuf_c_boolean has_count;
int32_t count;
};
struct CMsgFSGetIsFollowing : public ProtobufCppMessage
{
CMsgFSGetIsFollowing() :
ProtobufCppMessage(cmsg_fsget_is_following__descriptor)
{}
protobuf_c_boolean has_steam_id;
uint64_t steam_id;
};
struct CMsgFSGetIsFollowingResponse : public ProtobufCppMessage
{
CMsgFSGetIsFollowingResponse() :
ProtobufCppMessage(cmsg_fsget_is_following_response__descriptor)
{}
protobuf_c_boolean has_eresult;
int32_t eresult;
protobuf_c_boolean has_is_following;
protobuf_c_boolean is_following;
};
struct CMsgFSEnumerateFollowingList : public ProtobufCppMessage
{
CMsgFSEnumerateFollowingList() :
ProtobufCppMessage(cmsg_fsenumerate_following_list__descriptor)
{}
protobuf_c_boolean has_start_index;
uint32_t start_index;
};
struct CMsgFSEnumerateFollowingListResponse : public ProtobufCppMessage
{
CMsgFSEnumerateFollowingListResponse() :
ProtobufCppMessage(cmsg_fsenumerate_following_list_response__descriptor)
{}
protobuf_c_boolean has_eresult;
int32_t eresult;
protobuf_c_boolean has_total_results;
int32_t total_results;
size_t n_steam_ids;
uint64_t *steam_ids;
};
struct CMsgDPGetNumberOfCurrentPlayers : public ProtobufCppMessage
{
CMsgDPGetNumberOfCurrentPlayers() :
ProtobufCppMessage(cmsg_dpget_number_of_current_players__descriptor)
{}
protobuf_c_boolean has_appid;
uint32_t appid;
};
struct CMsgDPGetNumberOfCurrentPlayersResponse : public ProtobufCppMessage
{
CMsgDPGetNumberOfCurrentPlayersResponse() :
ProtobufCppMessage(cmsg_dpget_number_of_current_players_response__descriptor)
{}
protobuf_c_boolean has_eresult;
int32_t eresult;
protobuf_c_boolean has_player_count;
int32_t player_count;
};
struct CMsgClientFriendUserStatusPublished : public ProtobufCppMessage
{
CMsgClientFriendUserStatusPublished() :
ProtobufCppMessage(cmsg_client_friend_user_status_published__descriptor)
{}
protobuf_c_boolean has_friend_steamid;
uint64_t friend_steamid;
protobuf_c_boolean has_appid;
uint32_t appid;
char *status_text;
};
struct CMsgClientServiceMethodLegacy : public ProtobufCppMessage
{
CMsgClientServiceMethodLegacy() :
ProtobufCppMessage(cmsg_client_service_method_legacy__descriptor)
{}
char *method_name;
protobuf_c_boolean has_serialized_method;
ProtobufCBinaryData serialized_method;
protobuf_c_boolean has_is_notification;
protobuf_c_boolean is_notification;
};
struct CMsgClientServiceMethodLegacyResponse : public ProtobufCppMessage
{
CMsgClientServiceMethodLegacyResponse() :
ProtobufCppMessage(cmsg_client_service_method_legacy_response__descriptor)
{}
char *method_name;
protobuf_c_boolean has_serialized_method_response;
ProtobufCBinaryData serialized_method_response;
};
struct CMsgClientUIMode : public ProtobufCppMessage
{
CMsgClientUIMode() :
ProtobufCppMessage(cmsg_client_uimode__descriptor)
{}
protobuf_c_boolean has_uimode;
uint32_t uimode;
protobuf_c_boolean has_chat_mode;
uint32_t chat_mode;
};
struct CMsgClientVanityURLChangedNotification : public ProtobufCppMessage
{
CMsgClientVanityURLChangedNotification() :
ProtobufCppMessage(cmsg_client_vanity_urlchanged_notification__descriptor)
{}
char *vanity_url;
};
struct CMsgClientAuthorizeLocalDeviceRequest : public ProtobufCppMessage
{
CMsgClientAuthorizeLocalDeviceRequest() :
ProtobufCppMessage(cmsg_client_authorize_local_device_request__descriptor)
{}
char *device_description;
protobuf_c_boolean has_owner_account_id;
uint32_t owner_account_id;
protobuf_c_boolean has_local_device_token;
uint64_t local_device_token;
};
struct CMsgClientAuthorizeLocalDevice : public ProtobufCppMessage
{
CMsgClientAuthorizeLocalDevice() :
ProtobufCppMessage(cmsg_client_authorize_local_device__descriptor)
{}
protobuf_c_boolean has_eresult;
int32_t eresult;
protobuf_c_boolean has_owner_account_id;
uint32_t owner_account_id;
protobuf_c_boolean has_authed_device_token;
uint64_t authed_device_token;
};
struct CMsgClientAuthorizeLocalDeviceNotification : public ProtobufCppMessage
{
CMsgClientAuthorizeLocalDeviceNotification() :
ProtobufCppMessage(cmsg_client_authorize_local_device_notification__descriptor)
{}
protobuf_c_boolean has_eresult;
int32_t eresult;
protobuf_c_boolean has_owner_account_id;
uint32_t owner_account_id;
protobuf_c_boolean has_local_device_token;
uint64_t local_device_token;
};
struct CMsgClientDeauthorizeDeviceRequest : public ProtobufCppMessage
{
CMsgClientDeauthorizeDeviceRequest() :
ProtobufCppMessage(cmsg_client_deauthorize_device_request__descriptor)
{}
protobuf_c_boolean has_deauthorization_account_id;
uint32_t deauthorization_account_id;
protobuf_c_boolean has_deauthorization_device_token;
uint64_t deauthorization_device_token;
};
struct CMsgClientDeauthorizeDevice : public ProtobufCppMessage
{
CMsgClientDeauthorizeDevice() :
ProtobufCppMessage(cmsg_client_deauthorize_device__descriptor)
{}
protobuf_c_boolean has_eresult;
int32_t eresult;
protobuf_c_boolean has_deauthorization_account_id;
uint32_t deauthorization_account_id;
};
struct CMsgClientUseLocalDeviceAuthorizations__DeviceToken : public ProtobufCppMessage
{
CMsgClientUseLocalDeviceAuthorizations__DeviceToken() :
ProtobufCppMessage(cmsg_client_use_local_device_authorizations__device_token__descriptor)
{}
protobuf_c_boolean has_owner_account_id;
uint32_t owner_account_id;
protobuf_c_boolean has_token_id;
uint64_t token_id;
};
struct CMsgClientUseLocalDeviceAuthorizations : public ProtobufCppMessage
{
CMsgClientUseLocalDeviceAuthorizations() :
ProtobufCppMessage(cmsg_client_use_local_device_authorizations__descriptor)
{}
size_t n_authorization_account_id;
uint32_t *authorization_account_id;
size_t n_device_tokens;
CMsgClientUseLocalDeviceAuthorizations__DeviceToken **device_tokens;
};
struct CMsgClientGetAuthorizedDevices : public ProtobufCppMessage
{
CMsgClientGetAuthorizedDevices() :
ProtobufCppMessage(cmsg_client_get_authorized_devices__descriptor)
{}
};
struct CMsgClientGetAuthorizedDevicesResponse__AuthorizedDevice : public ProtobufCppMessage
{
CMsgClientGetAuthorizedDevicesResponse__AuthorizedDevice() :
ProtobufCppMessage(cmsg_client_get_authorized_devices_response__authorized_device__descriptor)
{}
protobuf_c_boolean has_auth_device_token;
uint64_t auth_device_token;
char *device_name;
protobuf_c_boolean has_last_access_time;
uint32_t last_access_time;
protobuf_c_boolean has_borrower_id;
uint32_t borrower_id;
protobuf_c_boolean has_is_pending;
protobuf_c_boolean is_pending;
protobuf_c_boolean has_app_played;
uint32_t app_played;
};
struct CMsgClientGetAuthorizedDevicesResponse : public ProtobufCppMessage
{
CMsgClientGetAuthorizedDevicesResponse() :
ProtobufCppMessage(cmsg_client_get_authorized_devices_response__descriptor)
{}
protobuf_c_boolean has_eresult;
int32_t eresult;
size_t n_authorized_device;
CMsgClientGetAuthorizedDevicesResponse__AuthorizedDevice **authorized_device;
};
struct CMsgClientSharedLibraryLockStatus__LockedLibrary : public ProtobufCppMessage
{
CMsgClientSharedLibraryLockStatus__LockedLibrary() :
ProtobufCppMessage(cmsg_client_shared_library_lock_status__locked_library__descriptor)
{}
protobuf_c_boolean has_owner_id;
uint32_t owner_id;
protobuf_c_boolean has_locked_by;
uint32_t locked_by;
};
struct CMsgClientSharedLibraryLockStatus : public ProtobufCppMessage
{
CMsgClientSharedLibraryLockStatus() :
ProtobufCppMessage(cmsg_client_shared_library_lock_status__descriptor)
{}
size_t n_locked_library;
CMsgClientSharedLibraryLockStatus__LockedLibrary **locked_library;
protobuf_c_boolean has_own_library_locked_by;
uint32_t own_library_locked_by;
};
struct CMsgClientSharedLibraryStopPlaying__StopApp : public ProtobufCppMessage
{
CMsgClientSharedLibraryStopPlaying__StopApp() :
ProtobufCppMessage(cmsg_client_shared_library_stop_playing__stop_app__descriptor)
{}
protobuf_c_boolean has_app_id;
uint32_t app_id;
protobuf_c_boolean has_owner_id;
uint32_t owner_id;
};
struct CMsgClientSharedLibraryStopPlaying : public ProtobufCppMessage
{
CMsgClientSharedLibraryStopPlaying() :
ProtobufCppMessage(cmsg_client_shared_library_stop_playing__descriptor)
{}
protobuf_c_boolean has_seconds_left;
int32_t seconds_left;
size_t n_stop_apps;
CMsgClientSharedLibraryStopPlaying__StopApp **stop_apps;
};
struct CMsgClientServiceCall : public ProtobufCppMessage
{
CMsgClientServiceCall() :
ProtobufCppMessage(cmsg_client_service_call__descriptor)
{}
protobuf_c_boolean has_sysid_routing;
ProtobufCBinaryData sysid_routing;
protobuf_c_boolean has_call_handle;
uint32_t call_handle;
protobuf_c_boolean has_module_crc;
uint32_t module_crc;
protobuf_c_boolean has_module_hash;
ProtobufCBinaryData module_hash;
protobuf_c_boolean has_function_id;
uint32_t function_id;
protobuf_c_boolean has_cub_output_max;
uint32_t cub_output_max;
protobuf_c_boolean has_flags;
uint32_t flags;
protobuf_c_boolean has_callparameter;
ProtobufCBinaryData callparameter;
protobuf_c_boolean has_ping_only;
protobuf_c_boolean ping_only;
protobuf_c_boolean has_max_outstanding_calls;
uint32_t max_outstanding_calls;
protobuf_c_boolean has_app_id;
uint32_t app_id;
};
struct CMsgClientServiceModule : public ProtobufCppMessage
{
CMsgClientServiceModule() :
ProtobufCppMessage(cmsg_client_service_module__descriptor)
{}
protobuf_c_boolean has_module_crc;
uint32_t module_crc;
protobuf_c_boolean has_module_hash;
ProtobufCBinaryData module_hash;
protobuf_c_boolean has_module_content;
ProtobufCBinaryData module_content;
};
struct CMsgClientServiceCallResponse : public ProtobufCppMessage
{
CMsgClientServiceCallResponse() :
ProtobufCppMessage(cmsg_client_service_call_response__descriptor)
{}
protobuf_c_boolean has_sysid_routing;
ProtobufCBinaryData sysid_routing;
protobuf_c_boolean has_call_handle;
uint32_t call_handle;
protobuf_c_boolean has_module_crc;
uint32_t module_crc;
protobuf_c_boolean has_module_hash;
ProtobufCBinaryData module_hash;
protobuf_c_boolean has_ecallresult;
uint32_t ecallresult;
protobuf_c_boolean has_result_content;
ProtobufCBinaryData result_content;
protobuf_c_boolean has_os_version_info;
ProtobufCBinaryData os_version_info;
protobuf_c_boolean has_system_info;
ProtobufCBinaryData system_info;
protobuf_c_boolean has_load_address;
uint64_t load_address;
protobuf_c_boolean has_exception_record;
ProtobufCBinaryData exception_record;
protobuf_c_boolean has_portable_os_version_info;
ProtobufCBinaryData portable_os_version_info;
protobuf_c_boolean has_portable_system_info;
ProtobufCBinaryData portable_system_info;
protobuf_c_boolean has_was_converted;
protobuf_c_boolean was_converted;
protobuf_c_boolean has_internal_result;
uint32_t internal_result;
protobuf_c_boolean has_current_count;
uint32_t current_count;
protobuf_c_boolean has_last_call_handle;
uint32_t last_call_handle;
protobuf_c_boolean has_last_call_module_crc;
uint32_t last_call_module_crc;
protobuf_c_boolean has_last_call_sysid_routing;
ProtobufCBinaryData last_call_sysid_routing;
protobuf_c_boolean has_last_ecallresult;
uint32_t last_ecallresult;
protobuf_c_boolean has_last_callissue_delta;
uint32_t last_callissue_delta;
protobuf_c_boolean has_last_callcomplete_delta;
uint32_t last_callcomplete_delta;
};
struct CMsgAMUnlockH264 : public ProtobufCppMessage
{
CMsgAMUnlockH264() :
ProtobufCppMessage(cmsg_amunlock_h264__descriptor)
{}
protobuf_c_boolean has_appid;
uint32_t appid;
protobuf_c_boolean has_platform;
int32_t platform;
protobuf_c_boolean has_reason;
int32_t reason;
};
struct CMsgAMUnlockH264Response : public ProtobufCppMessage
{
CMsgAMUnlockH264Response() :
ProtobufCppMessage(cmsg_amunlock_h264_response__descriptor)
{}
protobuf_c_boolean has_eresult;
int32_t eresult;
protobuf_c_boolean has_encryption_key;
ProtobufCBinaryData encryption_key;
};
struct CMsgClientPlayingSessionState : public ProtobufCppMessage
{
CMsgClientPlayingSessionState() :
ProtobufCppMessage(cmsg_client_playing_session_state__descriptor)
{}
protobuf_c_boolean has_playing_blocked;
protobuf_c_boolean playing_blocked;
protobuf_c_boolean has_playing_app;
uint32_t playing_app;
};
struct CMsgClientKickPlayingSession : public ProtobufCppMessage
{
CMsgClientKickPlayingSession() :
ProtobufCppMessage(cmsg_client_kick_playing_session__descriptor)
{}
protobuf_c_boolean has_only_stop_game;
protobuf_c_boolean only_stop_game;
};
struct CMsgClientVoiceCallPreAuthorize : public ProtobufCppMessage
{
CMsgClientVoiceCallPreAuthorize() :
ProtobufCppMessage(cmsg_client_voice_call_pre_authorize__descriptor)
{}
protobuf_c_boolean has_caller_steamid;
uint64_t caller_steamid;
protobuf_c_boolean has_receiver_steamid;
uint64_t receiver_steamid;
protobuf_c_boolean has_caller_id;
int32_t caller_id;
protobuf_c_boolean has_hangup;
protobuf_c_boolean hangup;
};
struct CMsgClientVoiceCallPreAuthorizeResponse : public ProtobufCppMessage
{
CMsgClientVoiceCallPreAuthorizeResponse() :
ProtobufCppMessage(cmsg_client_voice_call_pre_authorize_response__descriptor)
{}
protobuf_c_boolean has_caller_steamid;
uint64_t caller_steamid;
protobuf_c_boolean has_receiver_steamid;
uint64_t receiver_steamid;
protobuf_c_boolean has_eresult;
int32_t eresult;
protobuf_c_boolean has_caller_id;
int32_t caller_id;
};
struct CMsgBadgeCraftedNotification : public ProtobufCppMessage
{
CMsgBadgeCraftedNotification() :
ProtobufCppMessage(cmsg_badge_crafted_notification__descriptor)
{}
protobuf_c_boolean has_appid;
uint32_t appid;
protobuf_c_boolean has_badge_level;
uint32_t badge_level;
};
struct CMsgClientStartPeerContentServer : public ProtobufCppMessage
{
CMsgClientStartPeerContentServer() :
ProtobufCppMessage(cmsg_client_start_peer_content_server__descriptor)
{}
protobuf_c_boolean has_steamid;
uint64_t steamid;
protobuf_c_boolean has_client_remote_id;
uint64_t client_remote_id;
protobuf_c_boolean has_app_id;
uint32_t app_id;
protobuf_c_boolean has_current_build_id;
uint32_t current_build_id;
};
struct CMsgClientStartPeerContentServerResponse : public ProtobufCppMessage
{
CMsgClientStartPeerContentServerResponse() :
ProtobufCppMessage(cmsg_client_start_peer_content_server_response__descriptor)
{}
protobuf_c_boolean has_result;
uint32_t result;
protobuf_c_boolean has_server_port;
uint32_t server_port;
};
struct CMsgClientGetPeerContentInfo : public ProtobufCppMessage
{
CMsgClientGetPeerContentInfo() :
ProtobufCppMessage(cmsg_client_get_peer_content_info__descriptor)
{}
protobuf_c_boolean has_steamid;
uint64_t steamid;
protobuf_c_boolean has_client_remote_id;
uint64_t client_remote_id;
};
struct CMsgClientGetPeerContentInfoResponse : public ProtobufCppMessage
{
CMsgClientGetPeerContentInfoResponse() :
ProtobufCppMessage(cmsg_client_get_peer_content_info_response__descriptor)
{}
protobuf_c_boolean has_result;
uint32_t result;
size_t n_apps;
uint32_t *apps;
};
size_t cmsg_client_update_user_game_info__get_packed_size
(const CMsgClientUpdateUserGameInfo *message);
size_t cmsg_client_update_user_game_info__pack
(const CMsgClientUpdateUserGameInfo *message,
uint8_t *out);
size_t cmsg_client_update_user_game_info__pack_to_buffer
(const CMsgClientUpdateUserGameInfo *message,
ProtobufCBuffer *buffer);
CMsgClientUpdateUserGameInfo *
cmsg_client_update_user_game_info__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_update_user_game_info__free_unpacked
(CMsgClientUpdateUserGameInfo *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_rich_presence_upload__get_packed_size
(const CMsgClientRichPresenceUpload *message);
size_t cmsg_client_rich_presence_upload__pack
(const CMsgClientRichPresenceUpload *message,
uint8_t *out);
size_t cmsg_client_rich_presence_upload__pack_to_buffer
(const CMsgClientRichPresenceUpload *message,
ProtobufCBuffer *buffer);
CMsgClientRichPresenceUpload *
cmsg_client_rich_presence_upload__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_rich_presence_upload__free_unpacked
(CMsgClientRichPresenceUpload *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_rich_presence_request__get_packed_size
(const CMsgClientRichPresenceRequest *message);
size_t cmsg_client_rich_presence_request__pack
(const CMsgClientRichPresenceRequest *message,
uint8_t *out);
size_t cmsg_client_rich_presence_request__pack_to_buffer
(const CMsgClientRichPresenceRequest *message,
ProtobufCBuffer *buffer);
CMsgClientRichPresenceRequest *
cmsg_client_rich_presence_request__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_rich_presence_request__free_unpacked
(CMsgClientRichPresenceRequest *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_rich_presence_info__get_packed_size
(const CMsgClientRichPresenceInfo *message);
size_t cmsg_client_rich_presence_info__pack
(const CMsgClientRichPresenceInfo *message,
uint8_t *out);
size_t cmsg_client_rich_presence_info__pack_to_buffer
(const CMsgClientRichPresenceInfo *message,
ProtobufCBuffer *buffer);
CMsgClientRichPresenceInfo *
cmsg_client_rich_presence_info__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_rich_presence_info__free_unpacked
(CMsgClientRichPresenceInfo *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_check_file_signature__get_packed_size
(const CMsgClientCheckFileSignature *message);
size_t cmsg_client_check_file_signature__pack
(const CMsgClientCheckFileSignature *message,
uint8_t *out);
size_t cmsg_client_check_file_signature__pack_to_buffer
(const CMsgClientCheckFileSignature *message,
ProtobufCBuffer *buffer);
CMsgClientCheckFileSignature *
cmsg_client_check_file_signature__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_check_file_signature__free_unpacked
(CMsgClientCheckFileSignature *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_check_file_signature_response__get_packed_size
(const CMsgClientCheckFileSignatureResponse *message);
size_t cmsg_client_check_file_signature_response__pack
(const CMsgClientCheckFileSignatureResponse *message,
uint8_t *out);
size_t cmsg_client_check_file_signature_response__pack_to_buffer
(const CMsgClientCheckFileSignatureResponse *message,
ProtobufCBuffer *buffer);
CMsgClientCheckFileSignatureResponse *
cmsg_client_check_file_signature_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_check_file_signature_response__free_unpacked
(CMsgClientCheckFileSignatureResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_read_machine_auth__get_packed_size
(const CMsgClientReadMachineAuth *message);
size_t cmsg_client_read_machine_auth__pack
(const CMsgClientReadMachineAuth *message,
uint8_t *out);
size_t cmsg_client_read_machine_auth__pack_to_buffer
(const CMsgClientReadMachineAuth *message,
ProtobufCBuffer *buffer);
CMsgClientReadMachineAuth *
cmsg_client_read_machine_auth__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_read_machine_auth__free_unpacked
(CMsgClientReadMachineAuth *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_read_machine_auth_response__get_packed_size
(const CMsgClientReadMachineAuthResponse *message);
size_t cmsg_client_read_machine_auth_response__pack
(const CMsgClientReadMachineAuthResponse *message,
uint8_t *out);
size_t cmsg_client_read_machine_auth_response__pack_to_buffer
(const CMsgClientReadMachineAuthResponse *message,
ProtobufCBuffer *buffer);
CMsgClientReadMachineAuthResponse *
cmsg_client_read_machine_auth_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_read_machine_auth_response__free_unpacked
(CMsgClientReadMachineAuthResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_update_machine_auth__get_packed_size
(const CMsgClientUpdateMachineAuth *message);
size_t cmsg_client_update_machine_auth__pack
(const CMsgClientUpdateMachineAuth *message,
uint8_t *out);
size_t cmsg_client_update_machine_auth__pack_to_buffer
(const CMsgClientUpdateMachineAuth *message,
ProtobufCBuffer *buffer);
CMsgClientUpdateMachineAuth *
cmsg_client_update_machine_auth__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_update_machine_auth__free_unpacked
(CMsgClientUpdateMachineAuth *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_update_machine_auth_response__get_packed_size
(const CMsgClientUpdateMachineAuthResponse *message);
size_t cmsg_client_update_machine_auth_response__pack
(const CMsgClientUpdateMachineAuthResponse *message,
uint8_t *out);
size_t cmsg_client_update_machine_auth_response__pack_to_buffer
(const CMsgClientUpdateMachineAuthResponse *message,
ProtobufCBuffer *buffer);
CMsgClientUpdateMachineAuthResponse *
cmsg_client_update_machine_auth_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_update_machine_auth_response__free_unpacked
(CMsgClientUpdateMachineAuthResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_request_machine_auth__get_packed_size
(const CMsgClientRequestMachineAuth *message);
size_t cmsg_client_request_machine_auth__pack
(const CMsgClientRequestMachineAuth *message,
uint8_t *out);
size_t cmsg_client_request_machine_auth__pack_to_buffer
(const CMsgClientRequestMachineAuth *message,
ProtobufCBuffer *buffer);
CMsgClientRequestMachineAuth *
cmsg_client_request_machine_auth__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_request_machine_auth__free_unpacked
(CMsgClientRequestMachineAuth *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_request_machine_auth_response__get_packed_size
(const CMsgClientRequestMachineAuthResponse *message);
size_t cmsg_client_request_machine_auth_response__pack
(const CMsgClientRequestMachineAuthResponse *message,
uint8_t *out);
size_t cmsg_client_request_machine_auth_response__pack_to_buffer
(const CMsgClientRequestMachineAuthResponse *message,
ProtobufCBuffer *buffer);
CMsgClientRequestMachineAuthResponse *
cmsg_client_request_machine_auth_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_request_machine_auth_response__free_unpacked
(CMsgClientRequestMachineAuthResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_register_key__get_packed_size
(const CMsgClientRegisterKey *message);
size_t cmsg_client_register_key__pack
(const CMsgClientRegisterKey *message,
uint8_t *out);
size_t cmsg_client_register_key__pack_to_buffer
(const CMsgClientRegisterKey *message,
ProtobufCBuffer *buffer);
CMsgClientRegisterKey *
cmsg_client_register_key__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_register_key__free_unpacked
(CMsgClientRegisterKey *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_purchase_response__get_packed_size
(const CMsgClientPurchaseResponse *message);
size_t cmsg_client_purchase_response__pack
(const CMsgClientPurchaseResponse *message,
uint8_t *out);
size_t cmsg_client_purchase_response__pack_to_buffer
(const CMsgClientPurchaseResponse *message,
ProtobufCBuffer *buffer);
CMsgClientPurchaseResponse *
cmsg_client_purchase_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_purchase_response__free_unpacked
(CMsgClientPurchaseResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_activate_oemlicense__get_packed_size
(const CMsgClientActivateOEMLicense *message);
size_t cmsg_client_activate_oemlicense__pack
(const CMsgClientActivateOEMLicense *message,
uint8_t *out);
size_t cmsg_client_activate_oemlicense__pack_to_buffer
(const CMsgClientActivateOEMLicense *message,
ProtobufCBuffer *buffer);
CMsgClientActivateOEMLicense *
cmsg_client_activate_oemlicense__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_activate_oemlicense__free_unpacked
(CMsgClientActivateOEMLicense *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_register_oemmachine__get_packed_size
(const CMsgClientRegisterOEMMachine *message);
size_t cmsg_client_register_oemmachine__pack
(const CMsgClientRegisterOEMMachine *message,
uint8_t *out);
size_t cmsg_client_register_oemmachine__pack_to_buffer
(const CMsgClientRegisterOEMMachine *message,
ProtobufCBuffer *buffer);
CMsgClientRegisterOEMMachine *
cmsg_client_register_oemmachine__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_register_oemmachine__free_unpacked
(CMsgClientRegisterOEMMachine *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_register_oemmachine_response__get_packed_size
(const CMsgClientRegisterOEMMachineResponse *message);
size_t cmsg_client_register_oemmachine_response__pack
(const CMsgClientRegisterOEMMachineResponse *message,
uint8_t *out);
size_t cmsg_client_register_oemmachine_response__pack_to_buffer
(const CMsgClientRegisterOEMMachineResponse *message,
ProtobufCBuffer *buffer);
CMsgClientRegisterOEMMachineResponse *
cmsg_client_register_oemmachine_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_register_oemmachine_response__free_unpacked
(CMsgClientRegisterOEMMachineResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_purchase_with_machine_id__get_packed_size
(const CMsgClientPurchaseWithMachineID *message);
size_t cmsg_client_purchase_with_machine_id__pack
(const CMsgClientPurchaseWithMachineID *message,
uint8_t *out);
size_t cmsg_client_purchase_with_machine_id__pack_to_buffer
(const CMsgClientPurchaseWithMachineID *message,
ProtobufCBuffer *buffer);
CMsgClientPurchaseWithMachineID *
cmsg_client_purchase_with_machine_id__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_purchase_with_machine_id__free_unpacked
(CMsgClientPurchaseWithMachineID *message,
ProtobufCAllocator *allocator);
size_t cmsg_trading__initiate_trade_request__get_packed_size
(const CMsgTradingInitiateTradeRequest *message);
size_t cmsg_trading__initiate_trade_request__pack
(const CMsgTradingInitiateTradeRequest *message,
uint8_t *out);
size_t cmsg_trading__initiate_trade_request__pack_to_buffer
(const CMsgTradingInitiateTradeRequest *message,
ProtobufCBuffer *buffer);
CMsgTradingInitiateTradeRequest *
cmsg_trading__initiate_trade_request__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_trading__initiate_trade_request__free_unpacked
(CMsgTradingInitiateTradeRequest *message,
ProtobufCAllocator *allocator);
size_t cmsg_trading__initiate_trade_response__get_packed_size
(const CMsgTradingInitiateTradeResponse *message);
size_t cmsg_trading__initiate_trade_response__pack
(const CMsgTradingInitiateTradeResponse *message,
uint8_t *out);
size_t cmsg_trading__initiate_trade_response__pack_to_buffer
(const CMsgTradingInitiateTradeResponse *message,
ProtobufCBuffer *buffer);
CMsgTradingInitiateTradeResponse *
cmsg_trading__initiate_trade_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_trading__initiate_trade_response__free_unpacked
(CMsgTradingInitiateTradeResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_trading__cancel_trade_request__get_packed_size
(const CMsgTradingCancelTradeRequest *message);
size_t cmsg_trading__cancel_trade_request__pack
(const CMsgTradingCancelTradeRequest *message,
uint8_t *out);
size_t cmsg_trading__cancel_trade_request__pack_to_buffer
(const CMsgTradingCancelTradeRequest *message,
ProtobufCBuffer *buffer);
CMsgTradingCancelTradeRequest *
cmsg_trading__cancel_trade_request__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_trading__cancel_trade_request__free_unpacked
(CMsgTradingCancelTradeRequest *message,
ProtobufCAllocator *allocator);
size_t cmsg_trading__start_session__get_packed_size
(const CMsgTradingStartSession *message);
size_t cmsg_trading__start_session__pack
(const CMsgTradingStartSession *message,
uint8_t *out);
size_t cmsg_trading__start_session__pack_to_buffer
(const CMsgTradingStartSession *message,
ProtobufCBuffer *buffer);
CMsgTradingStartSession *
cmsg_trading__start_session__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_trading__start_session__free_unpacked
(CMsgTradingStartSession *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_get_cdnauth_token__get_packed_size
(const CMsgClientGetCDNAuthToken *message);
size_t cmsg_client_get_cdnauth_token__pack
(const CMsgClientGetCDNAuthToken *message,
uint8_t *out);
size_t cmsg_client_get_cdnauth_token__pack_to_buffer
(const CMsgClientGetCDNAuthToken *message,
ProtobufCBuffer *buffer);
CMsgClientGetCDNAuthToken *
cmsg_client_get_cdnauth_token__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_get_cdnauth_token__free_unpacked
(CMsgClientGetCDNAuthToken *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_get_depot_decryption_key__get_packed_size
(const CMsgClientGetDepotDecryptionKey *message);
size_t cmsg_client_get_depot_decryption_key__pack
(const CMsgClientGetDepotDecryptionKey *message,
uint8_t *out);
size_t cmsg_client_get_depot_decryption_key__pack_to_buffer
(const CMsgClientGetDepotDecryptionKey *message,
ProtobufCBuffer *buffer);
CMsgClientGetDepotDecryptionKey *
cmsg_client_get_depot_decryption_key__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_get_depot_decryption_key__free_unpacked
(CMsgClientGetDepotDecryptionKey *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_get_depot_decryption_key_response__get_packed_size
(const CMsgClientGetDepotDecryptionKeyResponse *message);
size_t cmsg_client_get_depot_decryption_key_response__pack
(const CMsgClientGetDepotDecryptionKeyResponse *message,
uint8_t *out);
size_t cmsg_client_get_depot_decryption_key_response__pack_to_buffer
(const CMsgClientGetDepotDecryptionKeyResponse *message,
ProtobufCBuffer *buffer);
CMsgClientGetDepotDecryptionKeyResponse *
cmsg_client_get_depot_decryption_key_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_get_depot_decryption_key_response__free_unpacked
(CMsgClientGetDepotDecryptionKeyResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_check_app_beta_password__get_packed_size
(const CMsgClientCheckAppBetaPassword *message);
size_t cmsg_client_check_app_beta_password__pack
(const CMsgClientCheckAppBetaPassword *message,
uint8_t *out);
size_t cmsg_client_check_app_beta_password__pack_to_buffer
(const CMsgClientCheckAppBetaPassword *message,
ProtobufCBuffer *buffer);
CMsgClientCheckAppBetaPassword *
cmsg_client_check_app_beta_password__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_check_app_beta_password__free_unpacked
(CMsgClientCheckAppBetaPassword *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_check_app_beta_password_response__get_packed_size
(const CMsgClientCheckAppBetaPasswordResponse *message);
size_t cmsg_client_check_app_beta_password_response__pack
(const CMsgClientCheckAppBetaPasswordResponse *message,
uint8_t *out);
size_t cmsg_client_check_app_beta_password_response__pack_to_buffer
(const CMsgClientCheckAppBetaPasswordResponse *message,
ProtobufCBuffer *buffer);
CMsgClientCheckAppBetaPasswordResponse *
cmsg_client_check_app_beta_password_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_check_app_beta_password_response__free_unpacked
(CMsgClientCheckAppBetaPasswordResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_get_cdnauth_token_response__get_packed_size
(const CMsgClientGetCDNAuthTokenResponse *message);
size_t cmsg_client_get_cdnauth_token_response__pack
(const CMsgClientGetCDNAuthTokenResponse *message,
uint8_t *out);
size_t cmsg_client_get_cdnauth_token_response__pack_to_buffer
(const CMsgClientGetCDNAuthTokenResponse *message,
ProtobufCBuffer *buffer);
CMsgClientGetCDNAuthTokenResponse *
cmsg_client_get_cdnauth_token_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_get_cdnauth_token_response__free_unpacked
(CMsgClientGetCDNAuthTokenResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_download_rate_statistics__get_packed_size
(const CMsgDownloadRateStatistics *message);
size_t cmsg_download_rate_statistics__pack
(const CMsgDownloadRateStatistics *message,
uint8_t *out);
size_t cmsg_download_rate_statistics__pack_to_buffer
(const CMsgDownloadRateStatistics *message,
ProtobufCBuffer *buffer);
CMsgDownloadRateStatistics *
cmsg_download_rate_statistics__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_download_rate_statistics__free_unpacked
(CMsgDownloadRateStatistics *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_request_account_data__get_packed_size
(const CMsgClientRequestAccountData *message);
size_t cmsg_client_request_account_data__pack
(const CMsgClientRequestAccountData *message,
uint8_t *out);
size_t cmsg_client_request_account_data__pack_to_buffer
(const CMsgClientRequestAccountData *message,
ProtobufCBuffer *buffer);
CMsgClientRequestAccountData *
cmsg_client_request_account_data__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_request_account_data__free_unpacked
(CMsgClientRequestAccountData *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_request_account_data_response__get_packed_size
(const CMsgClientRequestAccountDataResponse *message);
size_t cmsg_client_request_account_data_response__pack
(const CMsgClientRequestAccountDataResponse *message,
uint8_t *out);
size_t cmsg_client_request_account_data_response__pack_to_buffer
(const CMsgClientRequestAccountDataResponse *message,
ProtobufCBuffer *buffer);
CMsgClientRequestAccountDataResponse *
cmsg_client_request_account_data_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_request_account_data_response__free_unpacked
(CMsgClientRequestAccountDataResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_ugsget_global_stats__get_packed_size
(const CMsgClientUGSGetGlobalStats *message);
size_t cmsg_client_ugsget_global_stats__pack
(const CMsgClientUGSGetGlobalStats *message,
uint8_t *out);
size_t cmsg_client_ugsget_global_stats__pack_to_buffer
(const CMsgClientUGSGetGlobalStats *message,
ProtobufCBuffer *buffer);
CMsgClientUGSGetGlobalStats *
cmsg_client_ugsget_global_stats__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_ugsget_global_stats__free_unpacked
(CMsgClientUGSGetGlobalStats *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_ugsget_global_stats_response__get_packed_size
(const CMsgClientUGSGetGlobalStatsResponse *message);
size_t cmsg_client_ugsget_global_stats_response__pack
(const CMsgClientUGSGetGlobalStatsResponse *message,
uint8_t *out);
size_t cmsg_client_ugsget_global_stats_response__pack_to_buffer
(const CMsgClientUGSGetGlobalStatsResponse *message,
ProtobufCBuffer *buffer);
CMsgClientUGSGetGlobalStatsResponse *
cmsg_client_ugsget_global_stats_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_ugsget_global_stats_response__free_unpacked
(CMsgClientUGSGetGlobalStatsResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_redeem_guest_pass__get_packed_size
(const CMsgClientRedeemGuestPass *message);
size_t cmsg_client_redeem_guest_pass__pack
(const CMsgClientRedeemGuestPass *message,
uint8_t *out);
size_t cmsg_client_redeem_guest_pass__pack_to_buffer
(const CMsgClientRedeemGuestPass *message,
ProtobufCBuffer *buffer);
CMsgClientRedeemGuestPass *
cmsg_client_redeem_guest_pass__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_redeem_guest_pass__free_unpacked
(CMsgClientRedeemGuestPass *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_redeem_guest_pass_response__get_packed_size
(const CMsgClientRedeemGuestPassResponse *message);
size_t cmsg_client_redeem_guest_pass_response__pack
(const CMsgClientRedeemGuestPassResponse *message,
uint8_t *out);
size_t cmsg_client_redeem_guest_pass_response__pack_to_buffer
(const CMsgClientRedeemGuestPassResponse *message,
ProtobufCBuffer *buffer);
CMsgClientRedeemGuestPassResponse *
cmsg_client_redeem_guest_pass_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_redeem_guest_pass_response__free_unpacked
(CMsgClientRedeemGuestPassResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_get_clan_activity_counts__get_packed_size
(const CMsgClientGetClanActivityCounts *message);
size_t cmsg_client_get_clan_activity_counts__pack
(const CMsgClientGetClanActivityCounts *message,
uint8_t *out);
size_t cmsg_client_get_clan_activity_counts__pack_to_buffer
(const CMsgClientGetClanActivityCounts *message,
ProtobufCBuffer *buffer);
CMsgClientGetClanActivityCounts *
cmsg_client_get_clan_activity_counts__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_get_clan_activity_counts__free_unpacked
(CMsgClientGetClanActivityCounts *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_get_clan_activity_counts_response__get_packed_size
(const CMsgClientGetClanActivityCountsResponse *message);
size_t cmsg_client_get_clan_activity_counts_response__pack
(const CMsgClientGetClanActivityCountsResponse *message,
uint8_t *out);
size_t cmsg_client_get_clan_activity_counts_response__pack_to_buffer
(const CMsgClientGetClanActivityCountsResponse *message,
ProtobufCBuffer *buffer);
CMsgClientGetClanActivityCountsResponse *
cmsg_client_get_clan_activity_counts_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_get_clan_activity_counts_response__free_unpacked
(CMsgClientGetClanActivityCountsResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_ogsreport_string__get_packed_size
(const CMsgClientOGSReportString *message);
size_t cmsg_client_ogsreport_string__pack
(const CMsgClientOGSReportString *message,
uint8_t *out);
size_t cmsg_client_ogsreport_string__pack_to_buffer
(const CMsgClientOGSReportString *message,
ProtobufCBuffer *buffer);
CMsgClientOGSReportString *
cmsg_client_ogsreport_string__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_ogsreport_string__free_unpacked
(CMsgClientOGSReportString *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_ogsreport_bug__get_packed_size
(const CMsgClientOGSReportBug *message);
size_t cmsg_client_ogsreport_bug__pack
(const CMsgClientOGSReportBug *message,
uint8_t *out);
size_t cmsg_client_ogsreport_bug__pack_to_buffer
(const CMsgClientOGSReportBug *message,
ProtobufCBuffer *buffer);
CMsgClientOGSReportBug *
cmsg_client_ogsreport_bug__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_ogsreport_bug__free_unpacked
(CMsgClientOGSReportBug *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_sent_logs__get_packed_size
(const CMsgClientSentLogs *message);
size_t cmsg_client_sent_logs__pack
(const CMsgClientSentLogs *message,
uint8_t *out);
size_t cmsg_client_sent_logs__pack_to_buffer
(const CMsgClientSentLogs *message,
ProtobufCBuffer *buffer);
CMsgClientSentLogs *
cmsg_client_sent_logs__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_sent_logs__free_unpacked
(CMsgClientSentLogs *message,
ProtobufCAllocator *allocator);
size_t cmsg_gcclient__get_packed_size
(const CMsgGCClient *message);
size_t cmsg_gcclient__pack
(const CMsgGCClient *message,
uint8_t *out);
size_t cmsg_gcclient__pack_to_buffer
(const CMsgGCClient *message,
ProtobufCBuffer *buffer);
CMsgGCClient *
cmsg_gcclient__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_gcclient__free_unpacked
(CMsgGCClient *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_request_free_license__get_packed_size
(const CMsgClientRequestFreeLicense *message);
size_t cmsg_client_request_free_license__pack
(const CMsgClientRequestFreeLicense *message,
uint8_t *out);
size_t cmsg_client_request_free_license__pack_to_buffer
(const CMsgClientRequestFreeLicense *message,
ProtobufCBuffer *buffer);
CMsgClientRequestFreeLicense *
cmsg_client_request_free_license__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_request_free_license__free_unpacked
(CMsgClientRequestFreeLicense *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_request_free_license_response__get_packed_size
(const CMsgClientRequestFreeLicenseResponse *message);
size_t cmsg_client_request_free_license_response__pack
(const CMsgClientRequestFreeLicenseResponse *message,
uint8_t *out);
size_t cmsg_client_request_free_license_response__pack_to_buffer
(const CMsgClientRequestFreeLicenseResponse *message,
ProtobufCBuffer *buffer);
CMsgClientRequestFreeLicenseResponse *
cmsg_client_request_free_license_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_request_free_license_response__free_unpacked
(CMsgClientRequestFreeLicenseResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_drmdownload_request_with_crash_data__get_packed_size
(const CMsgDRMDownloadRequestWithCrashData *message);
size_t cmsg_drmdownload_request_with_crash_data__pack
(const CMsgDRMDownloadRequestWithCrashData *message,
uint8_t *out);
size_t cmsg_drmdownload_request_with_crash_data__pack_to_buffer
(const CMsgDRMDownloadRequestWithCrashData *message,
ProtobufCBuffer *buffer);
CMsgDRMDownloadRequestWithCrashData *
cmsg_drmdownload_request_with_crash_data__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_drmdownload_request_with_crash_data__free_unpacked
(CMsgDRMDownloadRequestWithCrashData *message,
ProtobufCAllocator *allocator);
size_t cmsg_drmdownload_response__get_packed_size
(const CMsgDRMDownloadResponse *message);
size_t cmsg_drmdownload_response__pack
(const CMsgDRMDownloadResponse *message,
uint8_t *out);
size_t cmsg_drmdownload_response__pack_to_buffer
(const CMsgDRMDownloadResponse *message,
ProtobufCBuffer *buffer);
CMsgDRMDownloadResponse *
cmsg_drmdownload_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_drmdownload_response__free_unpacked
(CMsgDRMDownloadResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_drmfinal_result__get_packed_size
(const CMsgDRMFinalResult *message);
size_t cmsg_drmfinal_result__pack
(const CMsgDRMFinalResult *message,
uint8_t *out);
size_t cmsg_drmfinal_result__pack_to_buffer
(const CMsgDRMFinalResult *message,
ProtobufCBuffer *buffer);
CMsgDRMFinalResult *
cmsg_drmfinal_result__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_drmfinal_result__free_unpacked
(CMsgDRMFinalResult *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_dpcheck_special_survey__get_packed_size
(const CMsgClientDPCheckSpecialSurvey *message);
size_t cmsg_client_dpcheck_special_survey__pack
(const CMsgClientDPCheckSpecialSurvey *message,
uint8_t *out);
size_t cmsg_client_dpcheck_special_survey__pack_to_buffer
(const CMsgClientDPCheckSpecialSurvey *message,
ProtobufCBuffer *buffer);
CMsgClientDPCheckSpecialSurvey *
cmsg_client_dpcheck_special_survey__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_dpcheck_special_survey__free_unpacked
(CMsgClientDPCheckSpecialSurvey *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_dpcheck_special_survey_response__get_packed_size
(const CMsgClientDPCheckSpecialSurveyResponse *message);
size_t cmsg_client_dpcheck_special_survey_response__pack
(const CMsgClientDPCheckSpecialSurveyResponse *message,
uint8_t *out);
size_t cmsg_client_dpcheck_special_survey_response__pack_to_buffer
(const CMsgClientDPCheckSpecialSurveyResponse *message,
ProtobufCBuffer *buffer);
CMsgClientDPCheckSpecialSurveyResponse *
cmsg_client_dpcheck_special_survey_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_dpcheck_special_survey_response__free_unpacked
(CMsgClientDPCheckSpecialSurveyResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_dpsend_special_survey_response__get_packed_size
(const CMsgClientDPSendSpecialSurveyResponse *message);
size_t cmsg_client_dpsend_special_survey_response__pack
(const CMsgClientDPSendSpecialSurveyResponse *message,
uint8_t *out);
size_t cmsg_client_dpsend_special_survey_response__pack_to_buffer
(const CMsgClientDPSendSpecialSurveyResponse *message,
ProtobufCBuffer *buffer);
CMsgClientDPSendSpecialSurveyResponse *
cmsg_client_dpsend_special_survey_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_dpsend_special_survey_response__free_unpacked
(CMsgClientDPSendSpecialSurveyResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_dpsend_special_survey_response_reply__get_packed_size
(const CMsgClientDPSendSpecialSurveyResponseReply *message);
size_t cmsg_client_dpsend_special_survey_response_reply__pack
(const CMsgClientDPSendSpecialSurveyResponseReply *message,
uint8_t *out);
size_t cmsg_client_dpsend_special_survey_response_reply__pack_to_buffer
(const CMsgClientDPSendSpecialSurveyResponseReply *message,
ProtobufCBuffer *buffer);
CMsgClientDPSendSpecialSurveyResponseReply *
cmsg_client_dpsend_special_survey_response_reply__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_dpsend_special_survey_response_reply__free_unpacked
(CMsgClientDPSendSpecialSurveyResponseReply *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_request_forgotten_password_email__get_packed_size
(const CMsgClientRequestForgottenPasswordEmail *message);
size_t cmsg_client_request_forgotten_password_email__pack
(const CMsgClientRequestForgottenPasswordEmail *message,
uint8_t *out);
size_t cmsg_client_request_forgotten_password_email__pack_to_buffer
(const CMsgClientRequestForgottenPasswordEmail *message,
ProtobufCBuffer *buffer);
CMsgClientRequestForgottenPasswordEmail *
cmsg_client_request_forgotten_password_email__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_request_forgotten_password_email__free_unpacked
(CMsgClientRequestForgottenPasswordEmail *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_request_forgotten_password_email_response__get_packed_size
(const CMsgClientRequestForgottenPasswordEmailResponse *message);
size_t cmsg_client_request_forgotten_password_email_response__pack
(const CMsgClientRequestForgottenPasswordEmailResponse *message,
uint8_t *out);
size_t cmsg_client_request_forgotten_password_email_response__pack_to_buffer
(const CMsgClientRequestForgottenPasswordEmailResponse *message,
ProtobufCBuffer *buffer);
CMsgClientRequestForgottenPasswordEmailResponse *
cmsg_client_request_forgotten_password_email_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_request_forgotten_password_email_response__free_unpacked
(CMsgClientRequestForgottenPasswordEmailResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_item_announcements__get_packed_size
(const CMsgClientItemAnnouncements *message);
size_t cmsg_client_item_announcements__pack
(const CMsgClientItemAnnouncements *message,
uint8_t *out);
size_t cmsg_client_item_announcements__pack_to_buffer
(const CMsgClientItemAnnouncements *message,
ProtobufCBuffer *buffer);
CMsgClientItemAnnouncements *
cmsg_client_item_announcements__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_item_announcements__free_unpacked
(CMsgClientItemAnnouncements *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_request_item_announcements__get_packed_size
(const CMsgClientRequestItemAnnouncements *message);
size_t cmsg_client_request_item_announcements__pack
(const CMsgClientRequestItemAnnouncements *message,
uint8_t *out);
size_t cmsg_client_request_item_announcements__pack_to_buffer
(const CMsgClientRequestItemAnnouncements *message,
ProtobufCBuffer *buffer);
CMsgClientRequestItemAnnouncements *
cmsg_client_request_item_announcements__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_request_item_announcements__free_unpacked
(CMsgClientRequestItemAnnouncements *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_user_notifications__get_packed_size
(const CMsgClientUserNotifications *message);
size_t cmsg_client_user_notifications__pack
(const CMsgClientUserNotifications *message,
uint8_t *out);
size_t cmsg_client_user_notifications__pack_to_buffer
(const CMsgClientUserNotifications *message,
ProtobufCBuffer *buffer);
CMsgClientUserNotifications *
cmsg_client_user_notifications__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_user_notifications__free_unpacked
(CMsgClientUserNotifications *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_comment_notifications__get_packed_size
(const CMsgClientCommentNotifications *message);
size_t cmsg_client_comment_notifications__pack
(const CMsgClientCommentNotifications *message,
uint8_t *out);
size_t cmsg_client_comment_notifications__pack_to_buffer
(const CMsgClientCommentNotifications *message,
ProtobufCBuffer *buffer);
CMsgClientCommentNotifications *
cmsg_client_comment_notifications__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_comment_notifications__free_unpacked
(CMsgClientCommentNotifications *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_request_comment_notifications__get_packed_size
(const CMsgClientRequestCommentNotifications *message);
size_t cmsg_client_request_comment_notifications__pack
(const CMsgClientRequestCommentNotifications *message,
uint8_t *out);
size_t cmsg_client_request_comment_notifications__pack_to_buffer
(const CMsgClientRequestCommentNotifications *message,
ProtobufCBuffer *buffer);
CMsgClientRequestCommentNotifications *
cmsg_client_request_comment_notifications__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_request_comment_notifications__free_unpacked
(CMsgClientRequestCommentNotifications *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_offline_message_notification__get_packed_size
(const CMsgClientOfflineMessageNotification *message);
size_t cmsg_client_offline_message_notification__pack
(const CMsgClientOfflineMessageNotification *message,
uint8_t *out);
size_t cmsg_client_offline_message_notification__pack_to_buffer
(const CMsgClientOfflineMessageNotification *message,
ProtobufCBuffer *buffer);
CMsgClientOfflineMessageNotification *
cmsg_client_offline_message_notification__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_offline_message_notification__free_unpacked
(CMsgClientOfflineMessageNotification *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_request_offline_message_count__get_packed_size
(const CMsgClientRequestOfflineMessageCount *message);
size_t cmsg_client_request_offline_message_count__pack
(const CMsgClientRequestOfflineMessageCount *message,
uint8_t *out);
size_t cmsg_client_request_offline_message_count__pack_to_buffer
(const CMsgClientRequestOfflineMessageCount *message,
ProtobufCBuffer *buffer);
CMsgClientRequestOfflineMessageCount *
cmsg_client_request_offline_message_count__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_request_offline_message_count__free_unpacked
(CMsgClientRequestOfflineMessageCount *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_chat_get_friend_message_history__get_packed_size
(const CMsgClientChatGetFriendMessageHistory *message);
size_t cmsg_client_chat_get_friend_message_history__pack
(const CMsgClientChatGetFriendMessageHistory *message,
uint8_t *out);
size_t cmsg_client_chat_get_friend_message_history__pack_to_buffer
(const CMsgClientChatGetFriendMessageHistory *message,
ProtobufCBuffer *buffer);
CMsgClientChatGetFriendMessageHistory *
cmsg_client_chat_get_friend_message_history__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_chat_get_friend_message_history__free_unpacked
(CMsgClientChatGetFriendMessageHistory *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_chat_get_friend_message_history_response__get_packed_size
(const CMsgClientChatGetFriendMessageHistoryResponse *message);
size_t cmsg_client_chat_get_friend_message_history_response__pack
(const CMsgClientChatGetFriendMessageHistoryResponse *message,
uint8_t *out);
size_t cmsg_client_chat_get_friend_message_history_response__pack_to_buffer
(const CMsgClientChatGetFriendMessageHistoryResponse *message,
ProtobufCBuffer *buffer);
CMsgClientChatGetFriendMessageHistoryResponse *
cmsg_client_chat_get_friend_message_history_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_chat_get_friend_message_history_response__free_unpacked
(CMsgClientChatGetFriendMessageHistoryResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_chat_get_friend_message_history_for_offline_messages__get_packed_size
(const CMsgClientChatGetFriendMessageHistoryForOfflineMessages *message);
size_t cmsg_client_chat_get_friend_message_history_for_offline_messages__pack
(const CMsgClientChatGetFriendMessageHistoryForOfflineMessages *message,
uint8_t *out);
size_t cmsg_client_chat_get_friend_message_history_for_offline_messages__pack_to_buffer
(const CMsgClientChatGetFriendMessageHistoryForOfflineMessages *message,
ProtobufCBuffer *buffer);
CMsgClientChatGetFriendMessageHistoryForOfflineMessages *
cmsg_client_chat_get_friend_message_history_for_offline_messages__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_chat_get_friend_message_history_for_offline_messages__free_unpacked
(CMsgClientChatGetFriendMessageHistoryForOfflineMessages *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_fsget_friends_steam_levels__get_packed_size
(const CMsgClientFSGetFriendsSteamLevels *message);
size_t cmsg_client_fsget_friends_steam_levels__pack
(const CMsgClientFSGetFriendsSteamLevels *message,
uint8_t *out);
size_t cmsg_client_fsget_friends_steam_levels__pack_to_buffer
(const CMsgClientFSGetFriendsSteamLevels *message,
ProtobufCBuffer *buffer);
CMsgClientFSGetFriendsSteamLevels *
cmsg_client_fsget_friends_steam_levels__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_fsget_friends_steam_levels__free_unpacked
(CMsgClientFSGetFriendsSteamLevels *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_fsget_friends_steam_levels_response__get_packed_size
(const CMsgClientFSGetFriendsSteamLevelsResponse *message);
size_t cmsg_client_fsget_friends_steam_levels_response__pack
(const CMsgClientFSGetFriendsSteamLevelsResponse *message,
uint8_t *out);
size_t cmsg_client_fsget_friends_steam_levels_response__pack_to_buffer
(const CMsgClientFSGetFriendsSteamLevelsResponse *message,
ProtobufCBuffer *buffer);
CMsgClientFSGetFriendsSteamLevelsResponse *
cmsg_client_fsget_friends_steam_levels_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_fsget_friends_steam_levels_response__free_unpacked
(CMsgClientFSGetFriendsSteamLevelsResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_email_addr_info__get_packed_size
(const CMsgClientEmailAddrInfo *message);
size_t cmsg_client_email_addr_info__pack
(const CMsgClientEmailAddrInfo *message,
uint8_t *out);
size_t cmsg_client_email_addr_info__pack_to_buffer
(const CMsgClientEmailAddrInfo *message,
ProtobufCBuffer *buffer);
CMsgClientEmailAddrInfo *
cmsg_client_email_addr_info__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_email_addr_info__free_unpacked
(CMsgClientEmailAddrInfo *message,
ProtobufCAllocator *allocator);
size_t cmsg_creitem_vote_summary__get_packed_size
(const CMsgCREItemVoteSummary *message);
size_t cmsg_creitem_vote_summary__pack
(const CMsgCREItemVoteSummary *message,
uint8_t *out);
size_t cmsg_creitem_vote_summary__pack_to_buffer
(const CMsgCREItemVoteSummary *message,
ProtobufCBuffer *buffer);
CMsgCREItemVoteSummary *
cmsg_creitem_vote_summary__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_creitem_vote_summary__free_unpacked
(CMsgCREItemVoteSummary *message,
ProtobufCAllocator *allocator);
size_t cmsg_creitem_vote_summary_response__get_packed_size
(const CMsgCREItemVoteSummaryResponse *message);
size_t cmsg_creitem_vote_summary_response__pack
(const CMsgCREItemVoteSummaryResponse *message,
uint8_t *out);
size_t cmsg_creitem_vote_summary_response__pack_to_buffer
(const CMsgCREItemVoteSummaryResponse *message,
ProtobufCBuffer *buffer);
CMsgCREItemVoteSummaryResponse *
cmsg_creitem_vote_summary_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_creitem_vote_summary_response__free_unpacked
(CMsgCREItemVoteSummaryResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_creupdate_user_published_item_vote__get_packed_size
(const CMsgCREUpdateUserPublishedItemVote *message);
size_t cmsg_creupdate_user_published_item_vote__pack
(const CMsgCREUpdateUserPublishedItemVote *message,
uint8_t *out);
size_t cmsg_creupdate_user_published_item_vote__pack_to_buffer
(const CMsgCREUpdateUserPublishedItemVote *message,
ProtobufCBuffer *buffer);
CMsgCREUpdateUserPublishedItemVote *
cmsg_creupdate_user_published_item_vote__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_creupdate_user_published_item_vote__free_unpacked
(CMsgCREUpdateUserPublishedItemVote *message,
ProtobufCAllocator *allocator);
size_t cmsg_creupdate_user_published_item_vote_response__get_packed_size
(const CMsgCREUpdateUserPublishedItemVoteResponse *message);
size_t cmsg_creupdate_user_published_item_vote_response__pack
(const CMsgCREUpdateUserPublishedItemVoteResponse *message,
uint8_t *out);
size_t cmsg_creupdate_user_published_item_vote_response__pack_to_buffer
(const CMsgCREUpdateUserPublishedItemVoteResponse *message,
ProtobufCBuffer *buffer);
CMsgCREUpdateUserPublishedItemVoteResponse *
cmsg_creupdate_user_published_item_vote_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_creupdate_user_published_item_vote_response__free_unpacked
(CMsgCREUpdateUserPublishedItemVoteResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_creget_user_published_item_vote_details__get_packed_size
(const CMsgCREGetUserPublishedItemVoteDetails *message);
size_t cmsg_creget_user_published_item_vote_details__pack
(const CMsgCREGetUserPublishedItemVoteDetails *message,
uint8_t *out);
size_t cmsg_creget_user_published_item_vote_details__pack_to_buffer
(const CMsgCREGetUserPublishedItemVoteDetails *message,
ProtobufCBuffer *buffer);
CMsgCREGetUserPublishedItemVoteDetails *
cmsg_creget_user_published_item_vote_details__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_creget_user_published_item_vote_details__free_unpacked
(CMsgCREGetUserPublishedItemVoteDetails *message,
ProtobufCAllocator *allocator);
size_t cmsg_creget_user_published_item_vote_details_response__get_packed_size
(const CMsgCREGetUserPublishedItemVoteDetailsResponse *message);
size_t cmsg_creget_user_published_item_vote_details_response__pack
(const CMsgCREGetUserPublishedItemVoteDetailsResponse *message,
uint8_t *out);
size_t cmsg_creget_user_published_item_vote_details_response__pack_to_buffer
(const CMsgCREGetUserPublishedItemVoteDetailsResponse *message,
ProtobufCBuffer *buffer);
CMsgCREGetUserPublishedItemVoteDetailsResponse *
cmsg_creget_user_published_item_vote_details_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_creget_user_published_item_vote_details_response__free_unpacked
(CMsgCREGetUserPublishedItemVoteDetailsResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_fsget_follower_count__get_packed_size
(const CMsgFSGetFollowerCount *message);
size_t cmsg_fsget_follower_count__pack
(const CMsgFSGetFollowerCount *message,
uint8_t *out);
size_t cmsg_fsget_follower_count__pack_to_buffer
(const CMsgFSGetFollowerCount *message,
ProtobufCBuffer *buffer);
CMsgFSGetFollowerCount *
cmsg_fsget_follower_count__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_fsget_follower_count__free_unpacked
(CMsgFSGetFollowerCount *message,
ProtobufCAllocator *allocator);
size_t cmsg_fsget_follower_count_response__get_packed_size
(const CMsgFSGetFollowerCountResponse *message);
size_t cmsg_fsget_follower_count_response__pack
(const CMsgFSGetFollowerCountResponse *message,
uint8_t *out);
size_t cmsg_fsget_follower_count_response__pack_to_buffer
(const CMsgFSGetFollowerCountResponse *message,
ProtobufCBuffer *buffer);
CMsgFSGetFollowerCountResponse *
cmsg_fsget_follower_count_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_fsget_follower_count_response__free_unpacked
(CMsgFSGetFollowerCountResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_fsget_is_following__get_packed_size
(const CMsgFSGetIsFollowing *message);
size_t cmsg_fsget_is_following__pack
(const CMsgFSGetIsFollowing *message,
uint8_t *out);
size_t cmsg_fsget_is_following__pack_to_buffer
(const CMsgFSGetIsFollowing *message,
ProtobufCBuffer *buffer);
CMsgFSGetIsFollowing *
cmsg_fsget_is_following__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_fsget_is_following__free_unpacked
(CMsgFSGetIsFollowing *message,
ProtobufCAllocator *allocator);
size_t cmsg_fsget_is_following_response__get_packed_size
(const CMsgFSGetIsFollowingResponse *message);
size_t cmsg_fsget_is_following_response__pack
(const CMsgFSGetIsFollowingResponse *message,
uint8_t *out);
size_t cmsg_fsget_is_following_response__pack_to_buffer
(const CMsgFSGetIsFollowingResponse *message,
ProtobufCBuffer *buffer);
CMsgFSGetIsFollowingResponse *
cmsg_fsget_is_following_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_fsget_is_following_response__free_unpacked
(CMsgFSGetIsFollowingResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_fsenumerate_following_list__get_packed_size
(const CMsgFSEnumerateFollowingList *message);
size_t cmsg_fsenumerate_following_list__pack
(const CMsgFSEnumerateFollowingList *message,
uint8_t *out);
size_t cmsg_fsenumerate_following_list__pack_to_buffer
(const CMsgFSEnumerateFollowingList *message,
ProtobufCBuffer *buffer);
CMsgFSEnumerateFollowingList *
cmsg_fsenumerate_following_list__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_fsenumerate_following_list__free_unpacked
(CMsgFSEnumerateFollowingList *message,
ProtobufCAllocator *allocator);
size_t cmsg_fsenumerate_following_list_response__get_packed_size
(const CMsgFSEnumerateFollowingListResponse *message);
size_t cmsg_fsenumerate_following_list_response__pack
(const CMsgFSEnumerateFollowingListResponse *message,
uint8_t *out);
size_t cmsg_fsenumerate_following_list_response__pack_to_buffer
(const CMsgFSEnumerateFollowingListResponse *message,
ProtobufCBuffer *buffer);
CMsgFSEnumerateFollowingListResponse *
cmsg_fsenumerate_following_list_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_fsenumerate_following_list_response__free_unpacked
(CMsgFSEnumerateFollowingListResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_dpget_number_of_current_players__get_packed_size
(const CMsgDPGetNumberOfCurrentPlayers *message);
size_t cmsg_dpget_number_of_current_players__pack
(const CMsgDPGetNumberOfCurrentPlayers *message,
uint8_t *out);
size_t cmsg_dpget_number_of_current_players__pack_to_buffer
(const CMsgDPGetNumberOfCurrentPlayers *message,
ProtobufCBuffer *buffer);
CMsgDPGetNumberOfCurrentPlayers *
cmsg_dpget_number_of_current_players__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_dpget_number_of_current_players__free_unpacked
(CMsgDPGetNumberOfCurrentPlayers *message,
ProtobufCAllocator *allocator);
size_t cmsg_dpget_number_of_current_players_response__get_packed_size
(const CMsgDPGetNumberOfCurrentPlayersResponse *message);
size_t cmsg_dpget_number_of_current_players_response__pack
(const CMsgDPGetNumberOfCurrentPlayersResponse *message,
uint8_t *out);
size_t cmsg_dpget_number_of_current_players_response__pack_to_buffer
(const CMsgDPGetNumberOfCurrentPlayersResponse *message,
ProtobufCBuffer *buffer);
CMsgDPGetNumberOfCurrentPlayersResponse *
cmsg_dpget_number_of_current_players_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_dpget_number_of_current_players_response__free_unpacked
(CMsgDPGetNumberOfCurrentPlayersResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_friend_user_status_published__get_packed_size
(const CMsgClientFriendUserStatusPublished *message);
size_t cmsg_client_friend_user_status_published__pack
(const CMsgClientFriendUserStatusPublished *message,
uint8_t *out);
size_t cmsg_client_friend_user_status_published__pack_to_buffer
(const CMsgClientFriendUserStatusPublished *message,
ProtobufCBuffer *buffer);
CMsgClientFriendUserStatusPublished *
cmsg_client_friend_user_status_published__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_friend_user_status_published__free_unpacked
(CMsgClientFriendUserStatusPublished *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_service_method_legacy__get_packed_size
(const CMsgClientServiceMethodLegacy *message);
size_t cmsg_client_service_method_legacy__pack
(const CMsgClientServiceMethodLegacy *message,
uint8_t *out);
size_t cmsg_client_service_method_legacy__pack_to_buffer
(const CMsgClientServiceMethodLegacy *message,
ProtobufCBuffer *buffer);
CMsgClientServiceMethodLegacy *
cmsg_client_service_method_legacy__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_service_method_legacy__free_unpacked
(CMsgClientServiceMethodLegacy *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_service_method_legacy_response__get_packed_size
(const CMsgClientServiceMethodLegacyResponse *message);
size_t cmsg_client_service_method_legacy_response__pack
(const CMsgClientServiceMethodLegacyResponse *message,
uint8_t *out);
size_t cmsg_client_service_method_legacy_response__pack_to_buffer
(const CMsgClientServiceMethodLegacyResponse *message,
ProtobufCBuffer *buffer);
CMsgClientServiceMethodLegacyResponse *
cmsg_client_service_method_legacy_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_service_method_legacy_response__free_unpacked
(CMsgClientServiceMethodLegacyResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_uimode__get_packed_size
(const CMsgClientUIMode *message);
size_t cmsg_client_uimode__pack
(const CMsgClientUIMode *message,
uint8_t *out);
size_t cmsg_client_uimode__pack_to_buffer
(const CMsgClientUIMode *message,
ProtobufCBuffer *buffer);
CMsgClientUIMode *
cmsg_client_uimode__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_uimode__free_unpacked
(CMsgClientUIMode *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_vanity_urlchanged_notification__get_packed_size
(const CMsgClientVanityURLChangedNotification *message);
size_t cmsg_client_vanity_urlchanged_notification__pack
(const CMsgClientVanityURLChangedNotification *message,
uint8_t *out);
size_t cmsg_client_vanity_urlchanged_notification__pack_to_buffer
(const CMsgClientVanityURLChangedNotification *message,
ProtobufCBuffer *buffer);
CMsgClientVanityURLChangedNotification *
cmsg_client_vanity_urlchanged_notification__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_vanity_urlchanged_notification__free_unpacked
(CMsgClientVanityURLChangedNotification *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_authorize_local_device_request__get_packed_size
(const CMsgClientAuthorizeLocalDeviceRequest *message);
size_t cmsg_client_authorize_local_device_request__pack
(const CMsgClientAuthorizeLocalDeviceRequest *message,
uint8_t *out);
size_t cmsg_client_authorize_local_device_request__pack_to_buffer
(const CMsgClientAuthorizeLocalDeviceRequest *message,
ProtobufCBuffer *buffer);
CMsgClientAuthorizeLocalDeviceRequest *
cmsg_client_authorize_local_device_request__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_authorize_local_device_request__free_unpacked
(CMsgClientAuthorizeLocalDeviceRequest *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_authorize_local_device__get_packed_size
(const CMsgClientAuthorizeLocalDevice *message);
size_t cmsg_client_authorize_local_device__pack
(const CMsgClientAuthorizeLocalDevice *message,
uint8_t *out);
size_t cmsg_client_authorize_local_device__pack_to_buffer
(const CMsgClientAuthorizeLocalDevice *message,
ProtobufCBuffer *buffer);
CMsgClientAuthorizeLocalDevice *
cmsg_client_authorize_local_device__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_authorize_local_device__free_unpacked
(CMsgClientAuthorizeLocalDevice *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_authorize_local_device_notification__get_packed_size
(const CMsgClientAuthorizeLocalDeviceNotification *message);
size_t cmsg_client_authorize_local_device_notification__pack
(const CMsgClientAuthorizeLocalDeviceNotification *message,
uint8_t *out);
size_t cmsg_client_authorize_local_device_notification__pack_to_buffer
(const CMsgClientAuthorizeLocalDeviceNotification *message,
ProtobufCBuffer *buffer);
CMsgClientAuthorizeLocalDeviceNotification *
cmsg_client_authorize_local_device_notification__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_authorize_local_device_notification__free_unpacked
(CMsgClientAuthorizeLocalDeviceNotification *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_deauthorize_device_request__get_packed_size
(const CMsgClientDeauthorizeDeviceRequest *message);
size_t cmsg_client_deauthorize_device_request__pack
(const CMsgClientDeauthorizeDeviceRequest *message,
uint8_t *out);
size_t cmsg_client_deauthorize_device_request__pack_to_buffer
(const CMsgClientDeauthorizeDeviceRequest *message,
ProtobufCBuffer *buffer);
CMsgClientDeauthorizeDeviceRequest *
cmsg_client_deauthorize_device_request__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_deauthorize_device_request__free_unpacked
(CMsgClientDeauthorizeDeviceRequest *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_deauthorize_device__get_packed_size
(const CMsgClientDeauthorizeDevice *message);
size_t cmsg_client_deauthorize_device__pack
(const CMsgClientDeauthorizeDevice *message,
uint8_t *out);
size_t cmsg_client_deauthorize_device__pack_to_buffer
(const CMsgClientDeauthorizeDevice *message,
ProtobufCBuffer *buffer);
CMsgClientDeauthorizeDevice *
cmsg_client_deauthorize_device__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_deauthorize_device__free_unpacked
(CMsgClientDeauthorizeDevice *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_use_local_device_authorizations__get_packed_size
(const CMsgClientUseLocalDeviceAuthorizations *message);
size_t cmsg_client_use_local_device_authorizations__pack
(const CMsgClientUseLocalDeviceAuthorizations *message,
uint8_t *out);
size_t cmsg_client_use_local_device_authorizations__pack_to_buffer
(const CMsgClientUseLocalDeviceAuthorizations *message,
ProtobufCBuffer *buffer);
CMsgClientUseLocalDeviceAuthorizations *
cmsg_client_use_local_device_authorizations__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_use_local_device_authorizations__free_unpacked
(CMsgClientUseLocalDeviceAuthorizations *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_get_authorized_devices__get_packed_size
(const CMsgClientGetAuthorizedDevices *message);
size_t cmsg_client_get_authorized_devices__pack
(const CMsgClientGetAuthorizedDevices *message,
uint8_t *out);
size_t cmsg_client_get_authorized_devices__pack_to_buffer
(const CMsgClientGetAuthorizedDevices *message,
ProtobufCBuffer *buffer);
CMsgClientGetAuthorizedDevices *
cmsg_client_get_authorized_devices__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_get_authorized_devices__free_unpacked
(CMsgClientGetAuthorizedDevices *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_get_authorized_devices_response__get_packed_size
(const CMsgClientGetAuthorizedDevicesResponse *message);
size_t cmsg_client_get_authorized_devices_response__pack
(const CMsgClientGetAuthorizedDevicesResponse *message,
uint8_t *out);
size_t cmsg_client_get_authorized_devices_response__pack_to_buffer
(const CMsgClientGetAuthorizedDevicesResponse *message,
ProtobufCBuffer *buffer);
CMsgClientGetAuthorizedDevicesResponse *
cmsg_client_get_authorized_devices_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_get_authorized_devices_response__free_unpacked
(CMsgClientGetAuthorizedDevicesResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_shared_library_lock_status__get_packed_size
(const CMsgClientSharedLibraryLockStatus *message);
size_t cmsg_client_shared_library_lock_status__pack
(const CMsgClientSharedLibraryLockStatus *message,
uint8_t *out);
size_t cmsg_client_shared_library_lock_status__pack_to_buffer
(const CMsgClientSharedLibraryLockStatus *message,
ProtobufCBuffer *buffer);
CMsgClientSharedLibraryLockStatus *
cmsg_client_shared_library_lock_status__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_shared_library_lock_status__free_unpacked
(CMsgClientSharedLibraryLockStatus *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_shared_library_stop_playing__get_packed_size
(const CMsgClientSharedLibraryStopPlaying *message);
size_t cmsg_client_shared_library_stop_playing__pack
(const CMsgClientSharedLibraryStopPlaying *message,
uint8_t *out);
size_t cmsg_client_shared_library_stop_playing__pack_to_buffer
(const CMsgClientSharedLibraryStopPlaying *message,
ProtobufCBuffer *buffer);
CMsgClientSharedLibraryStopPlaying *
cmsg_client_shared_library_stop_playing__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_shared_library_stop_playing__free_unpacked
(CMsgClientSharedLibraryStopPlaying *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_service_call__get_packed_size
(const CMsgClientServiceCall *message);
size_t cmsg_client_service_call__pack
(const CMsgClientServiceCall *message,
uint8_t *out);
size_t cmsg_client_service_call__pack_to_buffer
(const CMsgClientServiceCall *message,
ProtobufCBuffer *buffer);
CMsgClientServiceCall *
cmsg_client_service_call__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_service_call__free_unpacked
(CMsgClientServiceCall *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_service_module__get_packed_size
(const CMsgClientServiceModule *message);
size_t cmsg_client_service_module__pack
(const CMsgClientServiceModule *message,
uint8_t *out);
size_t cmsg_client_service_module__pack_to_buffer
(const CMsgClientServiceModule *message,
ProtobufCBuffer *buffer);
CMsgClientServiceModule *
cmsg_client_service_module__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_service_module__free_unpacked
(CMsgClientServiceModule *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_service_call_response__get_packed_size
(const CMsgClientServiceCallResponse *message);
size_t cmsg_client_service_call_response__pack
(const CMsgClientServiceCallResponse *message,
uint8_t *out);
size_t cmsg_client_service_call_response__pack_to_buffer
(const CMsgClientServiceCallResponse *message,
ProtobufCBuffer *buffer);
CMsgClientServiceCallResponse *
cmsg_client_service_call_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_service_call_response__free_unpacked
(CMsgClientServiceCallResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_amunlock_h264__get_packed_size
(const CMsgAMUnlockH264 *message);
size_t cmsg_amunlock_h264__pack
(const CMsgAMUnlockH264 *message,
uint8_t *out);
size_t cmsg_amunlock_h264__pack_to_buffer
(const CMsgAMUnlockH264 *message,
ProtobufCBuffer *buffer);
CMsgAMUnlockH264 *
cmsg_amunlock_h264__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_amunlock_h264__free_unpacked
(CMsgAMUnlockH264 *message,
ProtobufCAllocator *allocator);
size_t cmsg_amunlock_h264_response__get_packed_size
(const CMsgAMUnlockH264Response *message);
size_t cmsg_amunlock_h264_response__pack
(const CMsgAMUnlockH264Response *message,
uint8_t *out);
size_t cmsg_amunlock_h264_response__pack_to_buffer
(const CMsgAMUnlockH264Response *message,
ProtobufCBuffer *buffer);
CMsgAMUnlockH264Response *
cmsg_amunlock_h264_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_amunlock_h264_response__free_unpacked
(CMsgAMUnlockH264Response *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_playing_session_state__get_packed_size
(const CMsgClientPlayingSessionState *message);
size_t cmsg_client_playing_session_state__pack
(const CMsgClientPlayingSessionState *message,
uint8_t *out);
size_t cmsg_client_playing_session_state__pack_to_buffer
(const CMsgClientPlayingSessionState *message,
ProtobufCBuffer *buffer);
CMsgClientPlayingSessionState *
cmsg_client_playing_session_state__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_playing_session_state__free_unpacked
(CMsgClientPlayingSessionState *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_kick_playing_session__get_packed_size
(const CMsgClientKickPlayingSession *message);
size_t cmsg_client_kick_playing_session__pack
(const CMsgClientKickPlayingSession *message,
uint8_t *out);
size_t cmsg_client_kick_playing_session__pack_to_buffer
(const CMsgClientKickPlayingSession *message,
ProtobufCBuffer *buffer);
CMsgClientKickPlayingSession *
cmsg_client_kick_playing_session__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_kick_playing_session__free_unpacked
(CMsgClientKickPlayingSession *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_voice_call_pre_authorize__get_packed_size
(const CMsgClientVoiceCallPreAuthorize *message);
size_t cmsg_client_voice_call_pre_authorize__pack
(const CMsgClientVoiceCallPreAuthorize *message,
uint8_t *out);
size_t cmsg_client_voice_call_pre_authorize__pack_to_buffer
(const CMsgClientVoiceCallPreAuthorize *message,
ProtobufCBuffer *buffer);
CMsgClientVoiceCallPreAuthorize *
cmsg_client_voice_call_pre_authorize__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_voice_call_pre_authorize__free_unpacked
(CMsgClientVoiceCallPreAuthorize *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_voice_call_pre_authorize_response__get_packed_size
(const CMsgClientVoiceCallPreAuthorizeResponse *message);
size_t cmsg_client_voice_call_pre_authorize_response__pack
(const CMsgClientVoiceCallPreAuthorizeResponse *message,
uint8_t *out);
size_t cmsg_client_voice_call_pre_authorize_response__pack_to_buffer
(const CMsgClientVoiceCallPreAuthorizeResponse *message,
ProtobufCBuffer *buffer);
CMsgClientVoiceCallPreAuthorizeResponse *
cmsg_client_voice_call_pre_authorize_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_voice_call_pre_authorize_response__free_unpacked
(CMsgClientVoiceCallPreAuthorizeResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_badge_crafted_notification__get_packed_size
(const CMsgBadgeCraftedNotification *message);
size_t cmsg_badge_crafted_notification__pack
(const CMsgBadgeCraftedNotification *message,
uint8_t *out);
size_t cmsg_badge_crafted_notification__pack_to_buffer
(const CMsgBadgeCraftedNotification *message,
ProtobufCBuffer *buffer);
CMsgBadgeCraftedNotification *
cmsg_badge_crafted_notification__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_badge_crafted_notification__free_unpacked
(CMsgBadgeCraftedNotification *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_start_peer_content_server__get_packed_size
(const CMsgClientStartPeerContentServer *message);
size_t cmsg_client_start_peer_content_server__pack
(const CMsgClientStartPeerContentServer *message,
uint8_t *out);
size_t cmsg_client_start_peer_content_server__pack_to_buffer
(const CMsgClientStartPeerContentServer *message,
ProtobufCBuffer *buffer);
CMsgClientStartPeerContentServer *
cmsg_client_start_peer_content_server__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_start_peer_content_server__free_unpacked
(CMsgClientStartPeerContentServer *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_start_peer_content_server_response__get_packed_size
(const CMsgClientStartPeerContentServerResponse *message);
size_t cmsg_client_start_peer_content_server_response__pack
(const CMsgClientStartPeerContentServerResponse *message,
uint8_t *out);
size_t cmsg_client_start_peer_content_server_response__pack_to_buffer
(const CMsgClientStartPeerContentServerResponse *message,
ProtobufCBuffer *buffer);
CMsgClientStartPeerContentServerResponse *
cmsg_client_start_peer_content_server_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_start_peer_content_server_response__free_unpacked
(CMsgClientStartPeerContentServerResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_get_peer_content_info__get_packed_size
(const CMsgClientGetPeerContentInfo *message);
size_t cmsg_client_get_peer_content_info__pack
(const CMsgClientGetPeerContentInfo *message,
uint8_t *out);
size_t cmsg_client_get_peer_content_info__pack_to_buffer
(const CMsgClientGetPeerContentInfo *message,
ProtobufCBuffer *buffer);
CMsgClientGetPeerContentInfo *
cmsg_client_get_peer_content_info__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_get_peer_content_info__free_unpacked
(CMsgClientGetPeerContentInfo *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_get_peer_content_info_response__get_packed_size
(const CMsgClientGetPeerContentInfoResponse *message);
size_t cmsg_client_get_peer_content_info_response__pack
(const CMsgClientGetPeerContentInfoResponse *message,
uint8_t *out);
size_t cmsg_client_get_peer_content_info_response__pack_to_buffer
(const CMsgClientGetPeerContentInfoResponse *message,
ProtobufCBuffer *buffer);
CMsgClientGetPeerContentInfoResponse *
cmsg_client_get_peer_content_info_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_get_peer_content_info_response__free_unpacked
(CMsgClientGetPeerContentInfoResponse *message,
ProtobufCAllocator *allocator);
/* --- per-message closures --- */
typedef void (*CMsgClientUpdateUserGameInfo_Closure)
(const CMsgClientUpdateUserGameInfo *message,
void *closure_data);
typedef void (*CMsgClientRichPresenceUpload_Closure)
(const CMsgClientRichPresenceUpload *message,
void *closure_data);
typedef void (*CMsgClientRichPresenceRequest_Closure)
(const CMsgClientRichPresenceRequest *message,
void *closure_data);
typedef void (*CMsgClientRichPresenceInfo__RichPresence_Closure)
(const CMsgClientRichPresenceInfo__RichPresence *message,
void *closure_data);
typedef void (*CMsgClientRichPresenceInfo_Closure)
(const CMsgClientRichPresenceInfo *message,
void *closure_data);
typedef void (*CMsgClientCheckFileSignature_Closure)
(const CMsgClientCheckFileSignature *message,
void *closure_data);
typedef void (*CMsgClientCheckFileSignatureResponse_Closure)
(const CMsgClientCheckFileSignatureResponse *message,
void *closure_data);
typedef void (*CMsgClientReadMachineAuth_Closure)
(const CMsgClientReadMachineAuth *message,
void *closure_data);
typedef void (*CMsgClientReadMachineAuthResponse_Closure)
(const CMsgClientReadMachineAuthResponse *message,
void *closure_data);
typedef void (*CMsgClientUpdateMachineAuth_Closure)
(const CMsgClientUpdateMachineAuth *message,
void *closure_data);
typedef void (*CMsgClientUpdateMachineAuthResponse_Closure)
(const CMsgClientUpdateMachineAuthResponse *message,
void *closure_data);
typedef void (*CMsgClientRequestMachineAuth_Closure)
(const CMsgClientRequestMachineAuth *message,
void *closure_data);
typedef void (*CMsgClientRequestMachineAuthResponse_Closure)
(const CMsgClientRequestMachineAuthResponse *message,
void *closure_data);
typedef void (*CMsgClientRegisterKey_Closure)
(const CMsgClientRegisterKey *message,
void *closure_data);
typedef void (*CMsgClientPurchaseResponse_Closure)
(const CMsgClientPurchaseResponse *message,
void *closure_data);
typedef void (*CMsgClientActivateOEMLicense_Closure)
(const CMsgClientActivateOEMLicense *message,
void *closure_data);
typedef void (*CMsgClientRegisterOEMMachine_Closure)
(const CMsgClientRegisterOEMMachine *message,
void *closure_data);
typedef void (*CMsgClientRegisterOEMMachineResponse_Closure)
(const CMsgClientRegisterOEMMachineResponse *message,
void *closure_data);
typedef void (*CMsgClientPurchaseWithMachineID_Closure)
(const CMsgClientPurchaseWithMachineID *message,
void *closure_data);
typedef void (*CMsgTradingInitiateTradeRequest_Closure)
(const CMsgTradingInitiateTradeRequest *message,
void *closure_data);
typedef void (*CMsgTradingInitiateTradeResponse_Closure)
(const CMsgTradingInitiateTradeResponse *message,
void *closure_data);
typedef void (*CMsgTradingCancelTradeRequest_Closure)
(const CMsgTradingCancelTradeRequest *message,
void *closure_data);
typedef void (*CMsgTradingStartSession_Closure)
(const CMsgTradingStartSession *message,
void *closure_data);
typedef void (*CMsgClientGetCDNAuthToken_Closure)
(const CMsgClientGetCDNAuthToken *message,
void *closure_data);
typedef void (*CMsgClientGetDepotDecryptionKey_Closure)
(const CMsgClientGetDepotDecryptionKey *message,
void *closure_data);
typedef void (*CMsgClientGetDepotDecryptionKeyResponse_Closure)
(const CMsgClientGetDepotDecryptionKeyResponse *message,
void *closure_data);
typedef void (*CMsgClientCheckAppBetaPassword_Closure)
(const CMsgClientCheckAppBetaPassword *message,
void *closure_data);
typedef void (*CMsgClientCheckAppBetaPasswordResponse__BetaPassword_Closure)
(const CMsgClientCheckAppBetaPasswordResponse__BetaPassword *message,
void *closure_data);
typedef void (*CMsgClientCheckAppBetaPasswordResponse_Closure)
(const CMsgClientCheckAppBetaPasswordResponse *message,
void *closure_data);
typedef void (*CMsgClientGetCDNAuthTokenResponse_Closure)
(const CMsgClientGetCDNAuthTokenResponse *message,
void *closure_data);
typedef void (*CMsgDownloadRateStatistics__StatsInfo_Closure)
(const CMsgDownloadRateStatistics__StatsInfo *message,
void *closure_data);
typedef void (*CMsgDownloadRateStatistics_Closure)
(const CMsgDownloadRateStatistics *message,
void *closure_data);
typedef void (*CMsgClientRequestAccountData_Closure)
(const CMsgClientRequestAccountData *message,
void *closure_data);
typedef void (*CMsgClientRequestAccountDataResponse_Closure)
(const CMsgClientRequestAccountDataResponse *message,
void *closure_data);
typedef void (*CMsgClientUGSGetGlobalStats_Closure)
(const CMsgClientUGSGetGlobalStats *message,
void *closure_data);
typedef void (*CMsgClientUGSGetGlobalStatsResponse__Day__Stat_Closure)
(const CMsgClientUGSGetGlobalStatsResponse__Day__Stat *message,
void *closure_data);
typedef void (*CMsgClientUGSGetGlobalStatsResponse__Day_Closure)
(const CMsgClientUGSGetGlobalStatsResponse__Day *message,
void *closure_data);
typedef void (*CMsgClientUGSGetGlobalStatsResponse_Closure)
(const CMsgClientUGSGetGlobalStatsResponse *message,
void *closure_data);
typedef void (*CMsgClientRedeemGuestPass_Closure)
(const CMsgClientRedeemGuestPass *message,
void *closure_data);
typedef void (*CMsgClientRedeemGuestPassResponse_Closure)
(const CMsgClientRedeemGuestPassResponse *message,
void *closure_data);
typedef void (*CMsgClientGetClanActivityCounts_Closure)
(const CMsgClientGetClanActivityCounts *message,
void *closure_data);
typedef void (*CMsgClientGetClanActivityCountsResponse_Closure)
(const CMsgClientGetClanActivityCountsResponse *message,
void *closure_data);
typedef void (*CMsgClientOGSReportString_Closure)
(const CMsgClientOGSReportString *message,
void *closure_data);
typedef void (*CMsgClientOGSReportBug_Closure)
(const CMsgClientOGSReportBug *message,
void *closure_data);
typedef void (*CMsgClientSentLogs_Closure)
(const CMsgClientSentLogs *message,
void *closure_data);
typedef void (*CMsgGCClient_Closure)
(const CMsgGCClient *message,
void *closure_data);
typedef void (*CMsgClientRequestFreeLicense_Closure)
(const CMsgClientRequestFreeLicense *message,
void *closure_data);
typedef void (*CMsgClientRequestFreeLicenseResponse_Closure)
(const CMsgClientRequestFreeLicenseResponse *message,
void *closure_data);
typedef void (*CMsgDRMDownloadRequestWithCrashData_Closure)
(const CMsgDRMDownloadRequestWithCrashData *message,
void *closure_data);
typedef void (*CMsgDRMDownloadResponse_Closure)
(const CMsgDRMDownloadResponse *message,
void *closure_data);
typedef void (*CMsgDRMFinalResult_Closure)
(const CMsgDRMFinalResult *message,
void *closure_data);
typedef void (*CMsgClientDPCheckSpecialSurvey_Closure)
(const CMsgClientDPCheckSpecialSurvey *message,
void *closure_data);
typedef void (*CMsgClientDPCheckSpecialSurveyResponse_Closure)
(const CMsgClientDPCheckSpecialSurveyResponse *message,
void *closure_data);
typedef void (*CMsgClientDPSendSpecialSurveyResponse_Closure)
(const CMsgClientDPSendSpecialSurveyResponse *message,
void *closure_data);
typedef void (*CMsgClientDPSendSpecialSurveyResponseReply_Closure)
(const CMsgClientDPSendSpecialSurveyResponseReply *message,
void *closure_data);
typedef void (*CMsgClientRequestForgottenPasswordEmail_Closure)
(const CMsgClientRequestForgottenPasswordEmail *message,
void *closure_data);
typedef void (*CMsgClientRequestForgottenPasswordEmailResponse_Closure)
(const CMsgClientRequestForgottenPasswordEmailResponse *message,
void *closure_data);
typedef void (*CMsgClientItemAnnouncements__UnseenItem_Closure)
(const CMsgClientItemAnnouncements__UnseenItem *message,
void *closure_data);
typedef void (*CMsgClientItemAnnouncements_Closure)
(const CMsgClientItemAnnouncements *message,
void *closure_data);
typedef void (*CMsgClientRequestItemAnnouncements_Closure)
(const CMsgClientRequestItemAnnouncements *message,
void *closure_data);
typedef void (*CMsgClientUserNotifications__Notification_Closure)
(const CMsgClientUserNotifications__Notification *message,
void *closure_data);
typedef void (*CMsgClientUserNotifications_Closure)
(const CMsgClientUserNotifications *message,
void *closure_data);
typedef void (*CMsgClientCommentNotifications_Closure)
(const CMsgClientCommentNotifications *message,
void *closure_data);
typedef void (*CMsgClientRequestCommentNotifications_Closure)
(const CMsgClientRequestCommentNotifications *message,
void *closure_data);
typedef void (*CMsgClientOfflineMessageNotification_Closure)
(const CMsgClientOfflineMessageNotification *message,
void *closure_data);
typedef void (*CMsgClientRequestOfflineMessageCount_Closure)
(const CMsgClientRequestOfflineMessageCount *message,
void *closure_data);
typedef void (*CMsgClientChatGetFriendMessageHistory_Closure)
(const CMsgClientChatGetFriendMessageHistory *message,
void *closure_data);
typedef void (*CMsgClientChatGetFriendMessageHistoryResponse__FriendMessage_Closure)
(const CMsgClientChatGetFriendMessageHistoryResponse__FriendMessage *message,
void *closure_data);
typedef void (*CMsgClientChatGetFriendMessageHistoryResponse_Closure)
(const CMsgClientChatGetFriendMessageHistoryResponse *message,
void *closure_data);
typedef void (*CMsgClientChatGetFriendMessageHistoryForOfflineMessages_Closure)
(const CMsgClientChatGetFriendMessageHistoryForOfflineMessages *message,
void *closure_data);
typedef void (*CMsgClientFSGetFriendsSteamLevels_Closure)
(const CMsgClientFSGetFriendsSteamLevels *message,
void *closure_data);
typedef void (*CMsgClientFSGetFriendsSteamLevelsResponse__Friend_Closure)
(const CMsgClientFSGetFriendsSteamLevelsResponse__Friend *message,
void *closure_data);
typedef void (*CMsgClientFSGetFriendsSteamLevelsResponse_Closure)
(const CMsgClientFSGetFriendsSteamLevelsResponse *message,
void *closure_data);
typedef void (*CMsgClientEmailAddrInfo_Closure)
(const CMsgClientEmailAddrInfo *message,
void *closure_data);
typedef void (*CMsgCREItemVoteSummary__PublishedFileId_Closure)
(const CMsgCREItemVoteSummary__PublishedFileId *message,
void *closure_data);
typedef void (*CMsgCREItemVoteSummary_Closure)
(const CMsgCREItemVoteSummary *message,
void *closure_data);
typedef void (*CMsgCREItemVoteSummaryResponse__ItemVoteSummary_Closure)
(const CMsgCREItemVoteSummaryResponse__ItemVoteSummary *message,
void *closure_data);
typedef void (*CMsgCREItemVoteSummaryResponse_Closure)
(const CMsgCREItemVoteSummaryResponse *message,
void *closure_data);
typedef void (*CMsgCREUpdateUserPublishedItemVote_Closure)
(const CMsgCREUpdateUserPublishedItemVote *message,
void *closure_data);
typedef void (*CMsgCREUpdateUserPublishedItemVoteResponse_Closure)
(const CMsgCREUpdateUserPublishedItemVoteResponse *message,
void *closure_data);
typedef void (*CMsgCREGetUserPublishedItemVoteDetails__PublishedFileId_Closure)
(const CMsgCREGetUserPublishedItemVoteDetails__PublishedFileId *message,
void *closure_data);
typedef void (*CMsgCREGetUserPublishedItemVoteDetails_Closure)
(const CMsgCREGetUserPublishedItemVoteDetails *message,
void *closure_data);
typedef void (*CMsgCREGetUserPublishedItemVoteDetailsResponse__UserItemVoteDetail_Closure)
(const CMsgCREGetUserPublishedItemVoteDetailsResponse__UserItemVoteDetail *message,
void *closure_data);
typedef void (*CMsgCREGetUserPublishedItemVoteDetailsResponse_Closure)
(const CMsgCREGetUserPublishedItemVoteDetailsResponse *message,
void *closure_data);
typedef void (*CMsgFSGetFollowerCount_Closure)
(const CMsgFSGetFollowerCount *message,
void *closure_data);
typedef void (*CMsgFSGetFollowerCountResponse_Closure)
(const CMsgFSGetFollowerCountResponse *message,
void *closure_data);
typedef void (*CMsgFSGetIsFollowing_Closure)
(const CMsgFSGetIsFollowing *message,
void *closure_data);
typedef void (*CMsgFSGetIsFollowingResponse_Closure)
(const CMsgFSGetIsFollowingResponse *message,
void *closure_data);
typedef void (*CMsgFSEnumerateFollowingList_Closure)
(const CMsgFSEnumerateFollowingList *message,
void *closure_data);
typedef void (*CMsgFSEnumerateFollowingListResponse_Closure)
(const CMsgFSEnumerateFollowingListResponse *message,
void *closure_data);
typedef void (*CMsgDPGetNumberOfCurrentPlayers_Closure)
(const CMsgDPGetNumberOfCurrentPlayers *message,
void *closure_data);
typedef void (*CMsgDPGetNumberOfCurrentPlayersResponse_Closure)
(const CMsgDPGetNumberOfCurrentPlayersResponse *message,
void *closure_data);
typedef void (*CMsgClientFriendUserStatusPublished_Closure)
(const CMsgClientFriendUserStatusPublished *message,
void *closure_data);
typedef void (*CMsgClientServiceMethodLegacy_Closure)
(const CMsgClientServiceMethodLegacy *message,
void *closure_data);
typedef void (*CMsgClientServiceMethodLegacyResponse_Closure)
(const CMsgClientServiceMethodLegacyResponse *message,
void *closure_data);
typedef void (*CMsgClientUIMode_Closure)
(const CMsgClientUIMode *message,
void *closure_data);
typedef void (*CMsgClientVanityURLChangedNotification_Closure)
(const CMsgClientVanityURLChangedNotification *message,
void *closure_data);
typedef void (*CMsgClientAuthorizeLocalDeviceRequest_Closure)
(const CMsgClientAuthorizeLocalDeviceRequest *message,
void *closure_data);
typedef void (*CMsgClientAuthorizeLocalDevice_Closure)
(const CMsgClientAuthorizeLocalDevice *message,
void *closure_data);
typedef void (*CMsgClientAuthorizeLocalDeviceNotification_Closure)
(const CMsgClientAuthorizeLocalDeviceNotification *message,
void *closure_data);
typedef void (*CMsgClientDeauthorizeDeviceRequest_Closure)
(const CMsgClientDeauthorizeDeviceRequest *message,
void *closure_data);
typedef void (*CMsgClientDeauthorizeDevice_Closure)
(const CMsgClientDeauthorizeDevice *message,
void *closure_data);
typedef void (*CMsgClientUseLocalDeviceAuthorizations__DeviceToken_Closure)
(const CMsgClientUseLocalDeviceAuthorizations__DeviceToken *message,
void *closure_data);
typedef void (*CMsgClientUseLocalDeviceAuthorizations_Closure)
(const CMsgClientUseLocalDeviceAuthorizations *message,
void *closure_data);
typedef void (*CMsgClientGetAuthorizedDevices_Closure)
(const CMsgClientGetAuthorizedDevices *message,
void *closure_data);
typedef void (*CMsgClientGetAuthorizedDevicesResponse__AuthorizedDevice_Closure)
(const CMsgClientGetAuthorizedDevicesResponse__AuthorizedDevice *message,
void *closure_data);
typedef void (*CMsgClientGetAuthorizedDevicesResponse_Closure)
(const CMsgClientGetAuthorizedDevicesResponse *message,
void *closure_data);
typedef void (*CMsgClientSharedLibraryLockStatus__LockedLibrary_Closure)
(const CMsgClientSharedLibraryLockStatus__LockedLibrary *message,
void *closure_data);
typedef void (*CMsgClientSharedLibraryLockStatus_Closure)
(const CMsgClientSharedLibraryLockStatus *message,
void *closure_data);
typedef void (*CMsgClientSharedLibraryStopPlaying__StopApp_Closure)
(const CMsgClientSharedLibraryStopPlaying__StopApp *message,
void *closure_data);
typedef void (*CMsgClientSharedLibraryStopPlaying_Closure)
(const CMsgClientSharedLibraryStopPlaying *message,
void *closure_data);
typedef void (*CMsgClientServiceCall_Closure)
(const CMsgClientServiceCall *message,
void *closure_data);
typedef void (*CMsgClientServiceModule_Closure)
(const CMsgClientServiceModule *message,
void *closure_data);
typedef void (*CMsgClientServiceCallResponse_Closure)
(const CMsgClientServiceCallResponse *message,
void *closure_data);
typedef void (*CMsgAMUnlockH264_Closure)
(const CMsgAMUnlockH264 *message,
void *closure_data);
typedef void (*CMsgAMUnlockH264Response_Closure)
(const CMsgAMUnlockH264Response *message,
void *closure_data);
typedef void (*CMsgClientPlayingSessionState_Closure)
(const CMsgClientPlayingSessionState *message,
void *closure_data);
typedef void (*CMsgClientKickPlayingSession_Closure)
(const CMsgClientKickPlayingSession *message,
void *closure_data);
typedef void (*CMsgClientVoiceCallPreAuthorize_Closure)
(const CMsgClientVoiceCallPreAuthorize *message,
void *closure_data);
typedef void (*CMsgClientVoiceCallPreAuthorizeResponse_Closure)
(const CMsgClientVoiceCallPreAuthorizeResponse *message,
void *closure_data);
typedef void (*CMsgBadgeCraftedNotification_Closure)
(const CMsgBadgeCraftedNotification *message,
void *closure_data);
typedef void (*CMsgClientStartPeerContentServer_Closure)
(const CMsgClientStartPeerContentServer *message,
void *closure_data);
typedef void (*CMsgClientStartPeerContentServerResponse_Closure)
(const CMsgClientStartPeerContentServerResponse *message,
void *closure_data);
typedef void (*CMsgClientGetPeerContentInfo_Closure)
(const CMsgClientGetPeerContentInfo *message,
void *closure_data);
typedef void (*CMsgClientGetPeerContentInfoResponse_Closure)
(const CMsgClientGetPeerContentInfoResponse *message,
void *closure_data);
/* --- services --- */
PROTOBUF_C__END_DECLS
#endif /* PROTOBUF_C_steammessages_5fclientserver_5f2_2eproto__INCLUDED */
|