summaryrefslogtreecommitdiff
path: root/protocols/Steam/src/protobuf-c/steammessages_auth.steamclient.pb-c.h
blob: a914c93fd5e4fcfb75073ce8e156db0150cb99ae (plain)
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
/* Generated by the protocol buffer compiler.  DO NOT EDIT! */
/* Generated from: steammessages_auth.steamclient.proto */

#ifndef PROTOBUF_C_steammessages_5fauth_2esteamclient_2eproto__INCLUDED
#define PROTOBUF_C_steammessages_5fauth_2esteamclient_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"
#include "steammessages_unified_base.steamclient.pb-c.h"
#include "enums.pb-c.h"

struct CAuthenticationGetPasswordRSAPublicKeyRequest;
struct CAuthenticationGetPasswordRSAPublicKeyResponse;
struct CAuthenticationDeviceDetails;
struct CAuthenticationBeginAuthSessionViaQRRequest;
struct CAuthenticationAllowedConfirmation;
struct CAuthenticationBeginAuthSessionViaQRResponse;
struct CAuthenticationBeginAuthSessionViaCredentialsRequest;
struct CAuthenticationBeginAuthSessionViaCredentialsResponse;
struct CAuthenticationPollAuthSessionStatusRequest;
struct CAuthenticationPollAuthSessionStatusResponse;
struct CAuthenticationGetAuthSessionInfoRequest;
struct CAuthenticationGetAuthSessionInfoResponse;
struct CAuthenticationUpdateAuthSessionWithMobileConfirmationRequest;
struct CAuthenticationUpdateAuthSessionWithMobileConfirmationResponse;
struct CAuthenticationUpdateAuthSessionWithSteamGuardCodeRequest;
struct CAuthenticationUpdateAuthSessionWithSteamGuardCodeResponse;
struct CAuthenticationAccessTokenGenerateForAppRequest;
struct CAuthenticationAccessTokenGenerateForAppResponse;
struct CAuthenticationRefreshTokenEnumerateRequest;
struct CAuthenticationRefreshTokenEnumerateResponse;
struct CAuthenticationRefreshTokenEnumerateResponse__TokenUsageEvent;
struct CAuthenticationRefreshTokenEnumerateResponse__RefreshTokenDescription;
struct CAuthenticationGetAuthSessionsForAccountRequest;
struct CAuthenticationGetAuthSessionsForAccountResponse;
struct CAuthenticationMigrateMobileSessionRequest;
struct CAuthenticationMigrateMobileSessionResponse;
struct CAuthenticationRefreshTokenRevokeRequest;
struct CAuthenticationRefreshTokenRevokeResponse;
struct CAuthenticationSupportQueryRefreshTokensByAccountRequest;
struct CSupportRefreshTokenDescription;
struct CSupportRefreshTokenDescription__TokenUsageEvent;
struct CAuthenticationSupportQueryRefreshTokensByAccountResponse;
struct CAuthenticationSupportQueryRefreshTokenByIDRequest;
struct CAuthenticationSupportQueryRefreshTokenByIDResponse;
struct CAuthenticationSupportRevokeTokenRequest;
struct CAuthenticationSupportRevokeTokenResponse;
struct CAuthenticationSupportGetTokenHistoryRequest;
struct CSupportRefreshTokenAudit;
struct CAuthenticationSupportGetTokenHistoryResponse;
struct CCloudGamingCreateNonceRequest;
struct CCloudGamingCreateNonceResponse;
struct CCloudGamingGetTimeRemainingRequest;
struct CCloudGamingTimeRemaining;
struct CCloudGamingGetTimeRemainingResponse;


/* --- enums --- */

typedef enum _EAuthTokenPlatformType {
  EAUTH_TOKEN_PLATFORM_TYPE__k_EAuthTokenPlatformType_Unknown = 0,
  EAUTH_TOKEN_PLATFORM_TYPE__k_EAuthTokenPlatformType_SteamClient = 1,
  EAUTH_TOKEN_PLATFORM_TYPE__k_EAuthTokenPlatformType_WebBrowser = 2,
  EAUTH_TOKEN_PLATFORM_TYPE__k_EAuthTokenPlatformType_MobileApp = 3
    PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(EAUTH_TOKEN_PLATFORM_TYPE)
} EAuthTokenPlatformType;
typedef enum _EAuthSessionGuardType {
  EAUTH_SESSION_GUARD_TYPE__k_EAuthSessionGuardType_Unknown = 0,
  EAUTH_SESSION_GUARD_TYPE__k_EAuthSessionGuardType_None = 1,
  EAUTH_SESSION_GUARD_TYPE__k_EAuthSessionGuardType_EmailCode = 2,
  EAUTH_SESSION_GUARD_TYPE__k_EAuthSessionGuardType_DeviceCode = 3,
  EAUTH_SESSION_GUARD_TYPE__k_EAuthSessionGuardType_DeviceConfirmation = 4,
  EAUTH_SESSION_GUARD_TYPE__k_EAuthSessionGuardType_EmailConfirmation = 5,
  EAUTH_SESSION_GUARD_TYPE__k_EAuthSessionGuardType_MachineToken = 6,
  EAUTH_SESSION_GUARD_TYPE__k_EAuthSessionGuardType_LegacyMachineAuth = 7
    PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(EAUTH_SESSION_GUARD_TYPE)
} EAuthSessionGuardType;
typedef enum _EAuthSessionSecurityHistory {
  EAUTH_SESSION_SECURITY_HISTORY__k_EAuthSessionSecurityHistory_Invalid = 0,
  EAUTH_SESSION_SECURITY_HISTORY__k_EAuthSessionSecurityHistory_UsedPreviously = 1,
  EAUTH_SESSION_SECURITY_HISTORY__k_EAuthSessionSecurityHistory_NoPriorHistory = 2
    PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(EAUTH_SESSION_SECURITY_HISTORY)
} EAuthSessionSecurityHistory;
typedef enum _EAuthTokenRevokeAction {
  EAUTH_TOKEN_REVOKE_ACTION__k_EAuthTokenRevokeLogout = 0,
  EAUTH_TOKEN_REVOKE_ACTION__k_EAuthTokenRevokePermanent = 1,
  EAUTH_TOKEN_REVOKE_ACTION__k_EAuthTokenRevokeReplaced = 2,
  EAUTH_TOKEN_REVOKE_ACTION__k_EAuthTokenRevokeSupport = 3,
  EAUTH_TOKEN_REVOKE_ACTION__k_EAuthTokenRevokeConsume = 4
    PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(EAUTH_TOKEN_REVOKE_ACTION)
} EAuthTokenRevokeAction;
typedef enum _EAuthTokenState {
  EAUTH_TOKEN_STATE__k_EAuthTokenState_Invalid = 0,
  EAUTH_TOKEN_STATE__k_EAuthTokenState_New = 1,
  EAUTH_TOKEN_STATE__k_EAuthTokenState_Confirmed = 2,
  EAUTH_TOKEN_STATE__k_EAuthTokenState_Issued = 3,
  EAUTH_TOKEN_STATE__k_EAuthTokenState_Denied = 4,
  EAUTH_TOKEN_STATE__k_EAuthTokenState_LoggedOut = 5,
  EAUTH_TOKEN_STATE__k_EAuthTokenState_Consumed = 6,
  EAUTH_TOKEN_STATE__k_EAuthTokenState_Revoked = 99
    PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(EAUTH_TOKEN_STATE)
} EAuthTokenState;

/* --- descriptors --- */

extern const ProtobufCEnumDescriptor    eauth_token_platform_type__descriptor;
extern const ProtobufCEnumDescriptor    eauth_session_guard_type__descriptor;
extern const ProtobufCEnumDescriptor    eauth_session_security_history__descriptor;
extern const ProtobufCEnumDescriptor    eauth_token_revoke_action__descriptor;
extern const ProtobufCEnumDescriptor    eauth_token_state__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__get_password_rsapublic_key__request__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__get_password_rsapublic_key__response__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__device_details__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__begin_auth_session_via_qr__request__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__allowed_confirmation__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__begin_auth_session_via_qr__response__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__begin_auth_session_via_credentials__request__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__begin_auth_session_via_credentials__response__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__poll_auth_session_status__request__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__poll_auth_session_status__response__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__get_auth_session_info__request__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__get_auth_session_info__response__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__update_auth_session_with_mobile_confirmation__request__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__update_auth_session_with_mobile_confirmation__response__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__update_auth_session_with_steam_guard_code__request__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__update_auth_session_with_steam_guard_code__response__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__access_token__generate_for_app__request__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__access_token__generate_for_app__response__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__refresh_token__enumerate__request__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__refresh_token__enumerate__response__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__refresh_token__enumerate__response__token_usage_event__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__refresh_token__enumerate__response__refresh_token_description__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__get_auth_sessions_for_account__request__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__get_auth_sessions_for_account__response__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__migrate_mobile_session__request__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__migrate_mobile_session__response__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__refresh_token__revoke__request__descriptor;
extern const ProtobufCMessageDescriptor cauthentication__refresh_token__revoke__response__descriptor;
extern const ProtobufCMessageDescriptor cauthentication_support__query_refresh_tokens_by_account__request__descriptor;
extern const ProtobufCMessageDescriptor csupport_refresh_token_description__descriptor;
extern const ProtobufCMessageDescriptor csupport_refresh_token_description__token_usage_event__descriptor;
extern const ProtobufCMessageDescriptor cauthentication_support__query_refresh_tokens_by_account__response__descriptor;
extern const ProtobufCMessageDescriptor cauthentication_support__query_refresh_token_by_id__request__descriptor;
extern const ProtobufCMessageDescriptor cauthentication_support__query_refresh_token_by_id__response__descriptor;
extern const ProtobufCMessageDescriptor cauthentication_support__revoke_token__request__descriptor;
extern const ProtobufCMessageDescriptor cauthentication_support__revoke_token__response__descriptor;
extern const ProtobufCMessageDescriptor cauthentication_support__get_token_history__request__descriptor;
extern const ProtobufCMessageDescriptor csupport_refresh_token_audit__descriptor;
extern const ProtobufCMessageDescriptor cauthentication_support__get_token_history__response__descriptor;
extern const ProtobufCMessageDescriptor ccloud_gaming__create_nonce__request__descriptor;
extern const ProtobufCMessageDescriptor ccloud_gaming__create_nonce__response__descriptor;
extern const ProtobufCMessageDescriptor ccloud_gaming__get_time_remaining__request__descriptor;
extern const ProtobufCMessageDescriptor ccloud_gaming__time_remaining__descriptor;
extern const ProtobufCMessageDescriptor ccloud_gaming__get_time_remaining__response__descriptor;
extern const ProtobufCServiceDescriptor authentication__descriptor;
extern const ProtobufCServiceDescriptor authentication_support__descriptor;
extern const ProtobufCServiceDescriptor cloud_gaming__descriptor;

/* --- messages --- */

struct CAuthenticationGetPasswordRSAPublicKeyRequest : public ProtobufCppMessage
{
  CAuthenticationGetPasswordRSAPublicKeyRequest() :
     ProtobufCppMessage(cauthentication__get_password_rsapublic_key__request__descriptor)
  {}

  char *account_name;
};

struct CAuthenticationGetPasswordRSAPublicKeyResponse : public ProtobufCppMessage
{
  CAuthenticationGetPasswordRSAPublicKeyResponse() :
     ProtobufCppMessage(cauthentication__get_password_rsapublic_key__response__descriptor)
  {}

  char *publickey_mod;
  char *publickey_exp;
  protobuf_c_boolean has_timestamp;
  uint64_t timestamp;
};

struct CAuthenticationDeviceDetails : public ProtobufCppMessage
{
  CAuthenticationDeviceDetails() :
     ProtobufCppMessage(cauthentication__device_details__descriptor)
  {}

  char *device_friendly_name;
  protobuf_c_boolean has_platform_type;
  EAuthTokenPlatformType platform_type;
  protobuf_c_boolean has_os_type;
  int32_t os_type;
  protobuf_c_boolean has_gaming_device_type;
  uint32_t gaming_device_type;
};

struct CAuthenticationBeginAuthSessionViaQRRequest : public ProtobufCppMessage
{
  CAuthenticationBeginAuthSessionViaQRRequest() :
     ProtobufCppMessage(cauthentication__begin_auth_session_via_qr__request__descriptor)
  {}

  char *device_friendly_name;
  protobuf_c_boolean has_platform_type;
  EAuthTokenPlatformType platform_type;
  CAuthenticationDeviceDetails *device_details;
  char *website_id;
};

struct CAuthenticationAllowedConfirmation : public ProtobufCppMessage
{
  CAuthenticationAllowedConfirmation() :
     ProtobufCppMessage(cauthentication__allowed_confirmation__descriptor)
  {}

  protobuf_c_boolean has_confirmation_type;
  EAuthSessionGuardType confirmation_type;
  char *associated_message;
};

struct CAuthenticationBeginAuthSessionViaQRResponse : public ProtobufCppMessage
{
  CAuthenticationBeginAuthSessionViaQRResponse() :
     ProtobufCppMessage(cauthentication__begin_auth_session_via_qr__response__descriptor)
  {}

  protobuf_c_boolean has_client_id;
  uint64_t client_id;
  char *challenge_url;
  protobuf_c_boolean has_request_id;
  ProtobufCBinaryData request_id;
  protobuf_c_boolean has_interval;
  float interval;
  size_t n_allowed_confirmations;
  CAuthenticationAllowedConfirmation **allowed_confirmations;
  protobuf_c_boolean has_version;
  int32_t version;
};

struct CAuthenticationBeginAuthSessionViaCredentialsRequest : public ProtobufCppMessage
{
  CAuthenticationBeginAuthSessionViaCredentialsRequest() :
     ProtobufCppMessage(cauthentication__begin_auth_session_via_credentials__request__descriptor)
  {}

  char *device_friendly_name;
  char *account_name;
  char *encrypted_password;
  protobuf_c_boolean has_encryption_timestamp;
  uint64_t encryption_timestamp;
  protobuf_c_boolean has_remember_login;
  protobuf_c_boolean remember_login;
  protobuf_c_boolean has_platform_type;
  EAuthTokenPlatformType platform_type;
  protobuf_c_boolean has_persistence;
  ESessionPersistence persistence;
  char *website_id;
  CAuthenticationDeviceDetails *device_details;
  char *guard_data;
  protobuf_c_boolean has_language;
  uint32_t language;
  protobuf_c_boolean has_qos_level;
  int32_t qos_level;
};

struct CAuthenticationBeginAuthSessionViaCredentialsResponse : public ProtobufCppMessage
{
  CAuthenticationBeginAuthSessionViaCredentialsResponse() :
     ProtobufCppMessage(cauthentication__begin_auth_session_via_credentials__response__descriptor)
  {}

  protobuf_c_boolean has_client_id;
  uint64_t client_id;
  protobuf_c_boolean has_request_id;
  ProtobufCBinaryData request_id;
  protobuf_c_boolean has_interval;
  float interval;
  size_t n_allowed_confirmations;
  CAuthenticationAllowedConfirmation **allowed_confirmations;
  protobuf_c_boolean has_steamid;
  uint64_t steamid;
  char *weak_token;
  char *agreement_session_url;
  char *extended_error_message;
};

struct CAuthenticationPollAuthSessionStatusRequest : public ProtobufCppMessage
{
  CAuthenticationPollAuthSessionStatusRequest() :
     ProtobufCppMessage(cauthentication__poll_auth_session_status__request__descriptor)
  {}

  protobuf_c_boolean has_client_id;
  uint64_t client_id;
  protobuf_c_boolean has_request_id;
  ProtobufCBinaryData request_id;
  protobuf_c_boolean has_token_to_revoke;
  uint64_t token_to_revoke;
};

struct CAuthenticationPollAuthSessionStatusResponse : public ProtobufCppMessage
{
  CAuthenticationPollAuthSessionStatusResponse() :
     ProtobufCppMessage(cauthentication__poll_auth_session_status__response__descriptor)
  {}

  protobuf_c_boolean has_new_client_id;
  uint64_t new_client_id;
  char *new_challenge_url;
  char *refresh_token;
  char *access_token;
  protobuf_c_boolean has_had_remote_interaction;
  protobuf_c_boolean had_remote_interaction;
  char *account_name;
  char *new_guard_data;
  char *agreement_session_url;
};

struct CAuthenticationGetAuthSessionInfoRequest : public ProtobufCppMessage
{
  CAuthenticationGetAuthSessionInfoRequest() :
     ProtobufCppMessage(cauthentication__get_auth_session_info__request__descriptor)
  {}

  protobuf_c_boolean has_client_id;
  uint64_t client_id;
};

struct CAuthenticationGetAuthSessionInfoResponse : public ProtobufCppMessage
{
  CAuthenticationGetAuthSessionInfoResponse() :
     ProtobufCppMessage(cauthentication__get_auth_session_info__response__descriptor)
  {}

  char *ip;
  char *geoloc;
  char *city;
  char *state;
  char *country;
  protobuf_c_boolean has_platform_type;
  EAuthTokenPlatformType platform_type;
  char *device_friendly_name;
  protobuf_c_boolean has_version;
  int32_t version;
  protobuf_c_boolean has_login_history;
  EAuthSessionSecurityHistory login_history;
  protobuf_c_boolean has_requestor_location_mismatch;
  protobuf_c_boolean requestor_location_mismatch;
  protobuf_c_boolean has_high_usage_login;
  protobuf_c_boolean high_usage_login;
  protobuf_c_boolean has_requested_persistence;
  ESessionPersistence requested_persistence;
};

struct CAuthenticationUpdateAuthSessionWithMobileConfirmationRequest : public ProtobufCppMessage
{
  CAuthenticationUpdateAuthSessionWithMobileConfirmationRequest() :
     ProtobufCppMessage(cauthentication__update_auth_session_with_mobile_confirmation__request__descriptor)
  {}

  protobuf_c_boolean has_version;
  int32_t version;
  protobuf_c_boolean has_client_id;
  uint64_t client_id;
  protobuf_c_boolean has_steamid;
  uint64_t steamid;
  protobuf_c_boolean has_signature;
  ProtobufCBinaryData signature;
  protobuf_c_boolean has_confirm;
  protobuf_c_boolean confirm;
  protobuf_c_boolean has_persistence;
  ESessionPersistence persistence;
};

struct CAuthenticationUpdateAuthSessionWithMobileConfirmationResponse : public ProtobufCppMessage
{
  CAuthenticationUpdateAuthSessionWithMobileConfirmationResponse() :
     ProtobufCppMessage(cauthentication__update_auth_session_with_mobile_confirmation__response__descriptor)
  {}

};

struct CAuthenticationUpdateAuthSessionWithSteamGuardCodeRequest : public ProtobufCppMessage
{
  CAuthenticationUpdateAuthSessionWithSteamGuardCodeRequest() :
     ProtobufCppMessage(cauthentication__update_auth_session_with_steam_guard_code__request__descriptor)
  {}

  protobuf_c_boolean has_client_id;
  uint64_t client_id;
  protobuf_c_boolean has_steamid;
  uint64_t steamid;
  char *code;
  protobuf_c_boolean has_code_type;
  EAuthSessionGuardType code_type;
};

struct CAuthenticationUpdateAuthSessionWithSteamGuardCodeResponse : public ProtobufCppMessage
{
  CAuthenticationUpdateAuthSessionWithSteamGuardCodeResponse() :
     ProtobufCppMessage(cauthentication__update_auth_session_with_steam_guard_code__response__descriptor)
  {}

  char *agreement_session_url;
};

struct CAuthenticationAccessTokenGenerateForAppRequest : public ProtobufCppMessage
{
  CAuthenticationAccessTokenGenerateForAppRequest() :
     ProtobufCppMessage(cauthentication__access_token__generate_for_app__request__descriptor)
  {}

  char *refresh_token;
  protobuf_c_boolean has_steamid;
  uint64_t steamid;
};

struct CAuthenticationAccessTokenGenerateForAppResponse : public ProtobufCppMessage
{
  CAuthenticationAccessTokenGenerateForAppResponse() :
     ProtobufCppMessage(cauthentication__access_token__generate_for_app__response__descriptor)
  {}

  char *access_token;
};

struct CAuthenticationRefreshTokenEnumerateRequest : public ProtobufCppMessage
{
  CAuthenticationRefreshTokenEnumerateRequest() :
     ProtobufCppMessage(cauthentication__refresh_token__enumerate__request__descriptor)
  {}

};

struct CAuthenticationRefreshTokenEnumerateResponse__TokenUsageEvent : public ProtobufCppMessage
{
  CAuthenticationRefreshTokenEnumerateResponse__TokenUsageEvent() :
     ProtobufCppMessage(cauthentication__refresh_token__enumerate__response__token_usage_event__descriptor)
  {}

  protobuf_c_boolean has_time;
  uint32_t time;
  CMsgIPAddress *ip;
  char *locale;
  char *country;
  char *state;
  char *city;
};

struct CAuthenticationRefreshTokenEnumerateResponse__RefreshTokenDescription : public ProtobufCppMessage
{
  CAuthenticationRefreshTokenEnumerateResponse__RefreshTokenDescription() :
     ProtobufCppMessage(cauthentication__refresh_token__enumerate__response__refresh_token_description__descriptor)
  {}

  protobuf_c_boolean has_token_id;
  uint64_t token_id;
  char *token_description;
  protobuf_c_boolean has_time_updated;
  uint32_t time_updated;
  protobuf_c_boolean has_platform_type;
  EAuthTokenPlatformType platform_type;
  protobuf_c_boolean has_logged_in;
  protobuf_c_boolean logged_in;
  protobuf_c_boolean has_os_platform;
  uint32_t os_platform;
  protobuf_c_boolean has_auth_type;
  uint32_t auth_type;
  protobuf_c_boolean has_gaming_device_type;
  uint32_t gaming_device_type;
  CAuthenticationRefreshTokenEnumerateResponse__TokenUsageEvent *first_seen;
  CAuthenticationRefreshTokenEnumerateResponse__TokenUsageEvent *last_seen;
  protobuf_c_boolean has_os_type;
  int32_t os_type;
};

struct CAuthenticationRefreshTokenEnumerateResponse : public ProtobufCppMessage
{
  CAuthenticationRefreshTokenEnumerateResponse() :
     ProtobufCppMessage(cauthentication__refresh_token__enumerate__response__descriptor)
  {}

  size_t n_refresh_tokens;
  CAuthenticationRefreshTokenEnumerateResponse__RefreshTokenDescription **refresh_tokens;
  protobuf_c_boolean has_requesting_token;
  uint64_t requesting_token;
};

struct CAuthenticationGetAuthSessionsForAccountRequest : public ProtobufCppMessage
{
  CAuthenticationGetAuthSessionsForAccountRequest() :
     ProtobufCppMessage(cauthentication__get_auth_sessions_for_account__request__descriptor)
  {}

};

struct CAuthenticationGetAuthSessionsForAccountResponse : public ProtobufCppMessage
{
  CAuthenticationGetAuthSessionsForAccountResponse() :
     ProtobufCppMessage(cauthentication__get_auth_sessions_for_account__response__descriptor)
  {}

  size_t n_client_ids;
  uint64_t *client_ids;
};

struct CAuthenticationMigrateMobileSessionRequest : public ProtobufCppMessage
{
  CAuthenticationMigrateMobileSessionRequest() :
     ProtobufCppMessage(cauthentication__migrate_mobile_session__request__descriptor)
  {}

  protobuf_c_boolean has_steamid;
  uint64_t steamid;
  char *token;
  char *signature;
};

struct CAuthenticationMigrateMobileSessionResponse : public ProtobufCppMessage
{
  CAuthenticationMigrateMobileSessionResponse() :
     ProtobufCppMessage(cauthentication__migrate_mobile_session__response__descriptor)
  {}

  char *refresh_token;
  char *access_token;
};

struct CAuthenticationRefreshTokenRevokeRequest : public ProtobufCppMessage
{
  CAuthenticationRefreshTokenRevokeRequest() :
     ProtobufCppMessage(cauthentication__refresh_token__revoke__request__descriptor)
  {}

  protobuf_c_boolean has_token_id;
  uint64_t token_id;
  protobuf_c_boolean has_steamid;
  uint64_t steamid;
  protobuf_c_boolean has_revoke_action;
  EAuthTokenRevokeAction revoke_action;
  protobuf_c_boolean has_signature;
  ProtobufCBinaryData signature;
};

struct CAuthenticationRefreshTokenRevokeResponse : public ProtobufCppMessage
{
  CAuthenticationRefreshTokenRevokeResponse() :
     ProtobufCppMessage(cauthentication__refresh_token__revoke__response__descriptor)
  {}

};

struct CAuthenticationSupportQueryRefreshTokensByAccountRequest : public ProtobufCppMessage
{
  CAuthenticationSupportQueryRefreshTokensByAccountRequest() :
     ProtobufCppMessage(cauthentication_support__query_refresh_tokens_by_account__request__descriptor)
  {}

  protobuf_c_boolean has_steamid;
  uint64_t steamid;
  protobuf_c_boolean has_include_revoked_tokens;
  protobuf_c_boolean include_revoked_tokens;
};

struct CSupportRefreshTokenDescription__TokenUsageEvent : public ProtobufCppMessage
{
  CSupportRefreshTokenDescription__TokenUsageEvent() :
     ProtobufCppMessage(csupport_refresh_token_description__token_usage_event__descriptor)
  {}

  protobuf_c_boolean has_time;
  uint32_t time;
  CMsgIPAddress *ip;
  char *country;
  char *state;
  char *city;
};

struct CSupportRefreshTokenDescription : public ProtobufCppMessage
{
  CSupportRefreshTokenDescription() :
     ProtobufCppMessage(csupport_refresh_token_description__descriptor)
  {}

  protobuf_c_boolean has_token_id;
  uint64_t token_id;
  char *token_description;
  protobuf_c_boolean has_time_updated;
  uint32_t time_updated;
  protobuf_c_boolean has_platform_type;
  EAuthTokenPlatformType platform_type;
  protobuf_c_boolean has_token_state;
  EAuthTokenState token_state;
  protobuf_c_boolean has_owner_steamid;
  uint64_t owner_steamid;
  protobuf_c_boolean has_os_platform;
  uint32_t os_platform;
  protobuf_c_boolean has_os_type;
  int32_t os_type;
  protobuf_c_boolean has_auth_type;
  uint32_t auth_type;
  protobuf_c_boolean has_gaming_device_type;
  uint32_t gaming_device_type;
  CSupportRefreshTokenDescription__TokenUsageEvent *first_seen;
  CSupportRefreshTokenDescription__TokenUsageEvent *last_seen;
};

struct CAuthenticationSupportQueryRefreshTokensByAccountResponse : public ProtobufCppMessage
{
  CAuthenticationSupportQueryRefreshTokensByAccountResponse() :
     ProtobufCppMessage(cauthentication_support__query_refresh_tokens_by_account__response__descriptor)
  {}

  size_t n_refresh_tokens;
  CSupportRefreshTokenDescription **refresh_tokens;
  protobuf_c_boolean has_last_token_reset;
  int32_t last_token_reset;
};

struct CAuthenticationSupportQueryRefreshTokenByIDRequest : public ProtobufCppMessage
{
  CAuthenticationSupportQueryRefreshTokenByIDRequest() :
     ProtobufCppMessage(cauthentication_support__query_refresh_token_by_id__request__descriptor)
  {}

  protobuf_c_boolean has_token_id;
  uint64_t token_id;
};

struct CAuthenticationSupportQueryRefreshTokenByIDResponse : public ProtobufCppMessage
{
  CAuthenticationSupportQueryRefreshTokenByIDResponse() :
     ProtobufCppMessage(cauthentication_support__query_refresh_token_by_id__response__descriptor)
  {}

  size_t n_refresh_tokens;
  CSupportRefreshTokenDescription **refresh_tokens;
};

struct CAuthenticationSupportRevokeTokenRequest : public ProtobufCppMessage
{
  CAuthenticationSupportRevokeTokenRequest() :
     ProtobufCppMessage(cauthentication_support__revoke_token__request__descriptor)
  {}

  protobuf_c_boolean has_token_id;
  uint64_t token_id;
  protobuf_c_boolean has_steamid;
  uint64_t steamid;
};

struct CAuthenticationSupportRevokeTokenResponse : public ProtobufCppMessage
{
  CAuthenticationSupportRevokeTokenResponse() :
     ProtobufCppMessage(cauthentication_support__revoke_token__response__descriptor)
  {}

};

struct CAuthenticationSupportGetTokenHistoryRequest : public ProtobufCppMessage
{
  CAuthenticationSupportGetTokenHistoryRequest() :
     ProtobufCppMessage(cauthentication_support__get_token_history__request__descriptor)
  {}

  protobuf_c_boolean has_token_id;
  uint64_t token_id;
};

struct CSupportRefreshTokenAudit : public ProtobufCppMessage
{
  CSupportRefreshTokenAudit() :
     ProtobufCppMessage(csupport_refresh_token_audit__descriptor)
  {}

  protobuf_c_boolean has_action;
  int32_t action;
  protobuf_c_boolean has_time;
  uint32_t time;
  CMsgIPAddress *ip;
  protobuf_c_boolean has_actor;
  uint64_t actor;
};

struct CAuthenticationSupportGetTokenHistoryResponse : public ProtobufCppMessage
{
  CAuthenticationSupportGetTokenHistoryResponse() :
     ProtobufCppMessage(cauthentication_support__get_token_history__response__descriptor)
  {}

  size_t n_history;
  CSupportRefreshTokenAudit **history;
};

struct CCloudGamingCreateNonceRequest : public ProtobufCppMessage
{
  CCloudGamingCreateNonceRequest() :
     ProtobufCppMessage(ccloud_gaming__create_nonce__request__descriptor)
  {}

  char *platform;
  protobuf_c_boolean has_appid;
  uint32_t appid;
};

struct CCloudGamingCreateNonceResponse : public ProtobufCppMessage
{
  CCloudGamingCreateNonceResponse() :
     ProtobufCppMessage(ccloud_gaming__create_nonce__response__descriptor)
  {}

  char *nonce;
  protobuf_c_boolean has_expiry;
  uint32_t expiry;
};

struct CCloudGamingGetTimeRemainingRequest : public ProtobufCppMessage
{
  CCloudGamingGetTimeRemainingRequest() :
     ProtobufCppMessage(ccloud_gaming__get_time_remaining__request__descriptor)
  {}

  char *platform;
  size_t n_appid_list;
  uint32_t *appid_list;
};

struct CCloudGamingTimeRemaining : public ProtobufCppMessage
{
  CCloudGamingTimeRemaining() :
     ProtobufCppMessage(ccloud_gaming__time_remaining__descriptor)
  {}

  protobuf_c_boolean has_appid;
  uint32_t appid;
  protobuf_c_boolean has_minutes_remaining;
  uint32_t minutes_remaining;
};

struct CCloudGamingGetTimeRemainingResponse : public ProtobufCppMessage
{
  CCloudGamingGetTimeRemainingResponse() :
     ProtobufCppMessage(ccloud_gaming__get_time_remaining__response__descriptor)
  {}

  size_t n_entries;
  CCloudGamingTimeRemaining **entries;
};

size_t cauthentication__get_password_rsapublic_key__request__get_packed_size
                     (const CAuthenticationGetPasswordRSAPublicKeyRequest   *message);
size_t cauthentication__get_password_rsapublic_key__request__pack
                     (const CAuthenticationGetPasswordRSAPublicKeyRequest   *message,
                      uint8_t             *out);
size_t cauthentication__get_password_rsapublic_key__request__pack_to_buffer
                     (const CAuthenticationGetPasswordRSAPublicKeyRequest   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationGetPasswordRSAPublicKeyRequest *
       cauthentication__get_password_rsapublic_key__request__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__get_password_rsapublic_key__request__free_unpacked
                     (CAuthenticationGetPasswordRSAPublicKeyRequest *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__get_password_rsapublic_key__response__get_packed_size
                     (const CAuthenticationGetPasswordRSAPublicKeyResponse   *message);
size_t cauthentication__get_password_rsapublic_key__response__pack
                     (const CAuthenticationGetPasswordRSAPublicKeyResponse   *message,
                      uint8_t             *out);
size_t cauthentication__get_password_rsapublic_key__response__pack_to_buffer
                     (const CAuthenticationGetPasswordRSAPublicKeyResponse   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationGetPasswordRSAPublicKeyResponse *
       cauthentication__get_password_rsapublic_key__response__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__get_password_rsapublic_key__response__free_unpacked
                     (CAuthenticationGetPasswordRSAPublicKeyResponse *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__device_details__get_packed_size
                     (const CAuthenticationDeviceDetails   *message);
size_t cauthentication__device_details__pack
                     (const CAuthenticationDeviceDetails   *message,
                      uint8_t             *out);
size_t cauthentication__device_details__pack_to_buffer
                     (const CAuthenticationDeviceDetails   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationDeviceDetails *
       cauthentication__device_details__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__device_details__free_unpacked
                     (CAuthenticationDeviceDetails *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__begin_auth_session_via_qr__request__get_packed_size
                     (const CAuthenticationBeginAuthSessionViaQRRequest   *message);
size_t cauthentication__begin_auth_session_via_qr__request__pack
                     (const CAuthenticationBeginAuthSessionViaQRRequest   *message,
                      uint8_t             *out);
size_t cauthentication__begin_auth_session_via_qr__request__pack_to_buffer
                     (const CAuthenticationBeginAuthSessionViaQRRequest   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationBeginAuthSessionViaQRRequest *
       cauthentication__begin_auth_session_via_qr__request__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__begin_auth_session_via_qr__request__free_unpacked
                     (CAuthenticationBeginAuthSessionViaQRRequest *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__allowed_confirmation__get_packed_size
                     (const CAuthenticationAllowedConfirmation   *message);
size_t cauthentication__allowed_confirmation__pack
                     (const CAuthenticationAllowedConfirmation   *message,
                      uint8_t             *out);
size_t cauthentication__allowed_confirmation__pack_to_buffer
                     (const CAuthenticationAllowedConfirmation   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationAllowedConfirmation *
       cauthentication__allowed_confirmation__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__allowed_confirmation__free_unpacked
                     (CAuthenticationAllowedConfirmation *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__begin_auth_session_via_qr__response__get_packed_size
                     (const CAuthenticationBeginAuthSessionViaQRResponse   *message);
size_t cauthentication__begin_auth_session_via_qr__response__pack
                     (const CAuthenticationBeginAuthSessionViaQRResponse   *message,
                      uint8_t             *out);
size_t cauthentication__begin_auth_session_via_qr__response__pack_to_buffer
                     (const CAuthenticationBeginAuthSessionViaQRResponse   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationBeginAuthSessionViaQRResponse *
       cauthentication__begin_auth_session_via_qr__response__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__begin_auth_session_via_qr__response__free_unpacked
                     (CAuthenticationBeginAuthSessionViaQRResponse *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__begin_auth_session_via_credentials__request__get_packed_size
                     (const CAuthenticationBeginAuthSessionViaCredentialsRequest   *message);
size_t cauthentication__begin_auth_session_via_credentials__request__pack
                     (const CAuthenticationBeginAuthSessionViaCredentialsRequest   *message,
                      uint8_t             *out);
size_t cauthentication__begin_auth_session_via_credentials__request__pack_to_buffer
                     (const CAuthenticationBeginAuthSessionViaCredentialsRequest   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationBeginAuthSessionViaCredentialsRequest *
       cauthentication__begin_auth_session_via_credentials__request__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__begin_auth_session_via_credentials__request__free_unpacked
                     (CAuthenticationBeginAuthSessionViaCredentialsRequest *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__begin_auth_session_via_credentials__response__get_packed_size
                     (const CAuthenticationBeginAuthSessionViaCredentialsResponse   *message);
size_t cauthentication__begin_auth_session_via_credentials__response__pack
                     (const CAuthenticationBeginAuthSessionViaCredentialsResponse   *message,
                      uint8_t             *out);
size_t cauthentication__begin_auth_session_via_credentials__response__pack_to_buffer
                     (const CAuthenticationBeginAuthSessionViaCredentialsResponse   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationBeginAuthSessionViaCredentialsResponse *
       cauthentication__begin_auth_session_via_credentials__response__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__begin_auth_session_via_credentials__response__free_unpacked
                     (CAuthenticationBeginAuthSessionViaCredentialsResponse *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__poll_auth_session_status__request__get_packed_size
                     (const CAuthenticationPollAuthSessionStatusRequest   *message);
size_t cauthentication__poll_auth_session_status__request__pack
                     (const CAuthenticationPollAuthSessionStatusRequest   *message,
                      uint8_t             *out);
size_t cauthentication__poll_auth_session_status__request__pack_to_buffer
                     (const CAuthenticationPollAuthSessionStatusRequest   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationPollAuthSessionStatusRequest *
       cauthentication__poll_auth_session_status__request__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__poll_auth_session_status__request__free_unpacked
                     (CAuthenticationPollAuthSessionStatusRequest *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__poll_auth_session_status__response__get_packed_size
                     (const CAuthenticationPollAuthSessionStatusResponse   *message);
size_t cauthentication__poll_auth_session_status__response__pack
                     (const CAuthenticationPollAuthSessionStatusResponse   *message,
                      uint8_t             *out);
size_t cauthentication__poll_auth_session_status__response__pack_to_buffer
                     (const CAuthenticationPollAuthSessionStatusResponse   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationPollAuthSessionStatusResponse *
       cauthentication__poll_auth_session_status__response__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__poll_auth_session_status__response__free_unpacked
                     (CAuthenticationPollAuthSessionStatusResponse *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__get_auth_session_info__request__get_packed_size
                     (const CAuthenticationGetAuthSessionInfoRequest   *message);
size_t cauthentication__get_auth_session_info__request__pack
                     (const CAuthenticationGetAuthSessionInfoRequest   *message,
                      uint8_t             *out);
size_t cauthentication__get_auth_session_info__request__pack_to_buffer
                     (const CAuthenticationGetAuthSessionInfoRequest   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationGetAuthSessionInfoRequest *
       cauthentication__get_auth_session_info__request__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__get_auth_session_info__request__free_unpacked
                     (CAuthenticationGetAuthSessionInfoRequest *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__get_auth_session_info__response__get_packed_size
                     (const CAuthenticationGetAuthSessionInfoResponse   *message);
size_t cauthentication__get_auth_session_info__response__pack
                     (const CAuthenticationGetAuthSessionInfoResponse   *message,
                      uint8_t             *out);
size_t cauthentication__get_auth_session_info__response__pack_to_buffer
                     (const CAuthenticationGetAuthSessionInfoResponse   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationGetAuthSessionInfoResponse *
       cauthentication__get_auth_session_info__response__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__get_auth_session_info__response__free_unpacked
                     (CAuthenticationGetAuthSessionInfoResponse *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__update_auth_session_with_mobile_confirmation__request__get_packed_size
                     (const CAuthenticationUpdateAuthSessionWithMobileConfirmationRequest   *message);
size_t cauthentication__update_auth_session_with_mobile_confirmation__request__pack
                     (const CAuthenticationUpdateAuthSessionWithMobileConfirmationRequest   *message,
                      uint8_t             *out);
size_t cauthentication__update_auth_session_with_mobile_confirmation__request__pack_to_buffer
                     (const CAuthenticationUpdateAuthSessionWithMobileConfirmationRequest   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationUpdateAuthSessionWithMobileConfirmationRequest *
       cauthentication__update_auth_session_with_mobile_confirmation__request__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__update_auth_session_with_mobile_confirmation__request__free_unpacked
                     (CAuthenticationUpdateAuthSessionWithMobileConfirmationRequest *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__update_auth_session_with_mobile_confirmation__response__get_packed_size
                     (const CAuthenticationUpdateAuthSessionWithMobileConfirmationResponse   *message);
size_t cauthentication__update_auth_session_with_mobile_confirmation__response__pack
                     (const CAuthenticationUpdateAuthSessionWithMobileConfirmationResponse   *message,
                      uint8_t             *out);
size_t cauthentication__update_auth_session_with_mobile_confirmation__response__pack_to_buffer
                     (const CAuthenticationUpdateAuthSessionWithMobileConfirmationResponse   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationUpdateAuthSessionWithMobileConfirmationResponse *
       cauthentication__update_auth_session_with_mobile_confirmation__response__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__update_auth_session_with_mobile_confirmation__response__free_unpacked
                     (CAuthenticationUpdateAuthSessionWithMobileConfirmationResponse *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__update_auth_session_with_steam_guard_code__request__get_packed_size
                     (const CAuthenticationUpdateAuthSessionWithSteamGuardCodeRequest   *message);
size_t cauthentication__update_auth_session_with_steam_guard_code__request__pack
                     (const CAuthenticationUpdateAuthSessionWithSteamGuardCodeRequest   *message,
                      uint8_t             *out);
size_t cauthentication__update_auth_session_with_steam_guard_code__request__pack_to_buffer
                     (const CAuthenticationUpdateAuthSessionWithSteamGuardCodeRequest   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationUpdateAuthSessionWithSteamGuardCodeRequest *
       cauthentication__update_auth_session_with_steam_guard_code__request__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__update_auth_session_with_steam_guard_code__request__free_unpacked
                     (CAuthenticationUpdateAuthSessionWithSteamGuardCodeRequest *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__update_auth_session_with_steam_guard_code__response__get_packed_size
                     (const CAuthenticationUpdateAuthSessionWithSteamGuardCodeResponse   *message);
size_t cauthentication__update_auth_session_with_steam_guard_code__response__pack
                     (const CAuthenticationUpdateAuthSessionWithSteamGuardCodeResponse   *message,
                      uint8_t             *out);
size_t cauthentication__update_auth_session_with_steam_guard_code__response__pack_to_buffer
                     (const CAuthenticationUpdateAuthSessionWithSteamGuardCodeResponse   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationUpdateAuthSessionWithSteamGuardCodeResponse *
       cauthentication__update_auth_session_with_steam_guard_code__response__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__update_auth_session_with_steam_guard_code__response__free_unpacked
                     (CAuthenticationUpdateAuthSessionWithSteamGuardCodeResponse *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__access_token__generate_for_app__request__get_packed_size
                     (const CAuthenticationAccessTokenGenerateForAppRequest   *message);
size_t cauthentication__access_token__generate_for_app__request__pack
                     (const CAuthenticationAccessTokenGenerateForAppRequest   *message,
                      uint8_t             *out);
size_t cauthentication__access_token__generate_for_app__request__pack_to_buffer
                     (const CAuthenticationAccessTokenGenerateForAppRequest   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationAccessTokenGenerateForAppRequest *
       cauthentication__access_token__generate_for_app__request__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__access_token__generate_for_app__request__free_unpacked
                     (CAuthenticationAccessTokenGenerateForAppRequest *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__access_token__generate_for_app__response__get_packed_size
                     (const CAuthenticationAccessTokenGenerateForAppResponse   *message);
size_t cauthentication__access_token__generate_for_app__response__pack
                     (const CAuthenticationAccessTokenGenerateForAppResponse   *message,
                      uint8_t             *out);
size_t cauthentication__access_token__generate_for_app__response__pack_to_buffer
                     (const CAuthenticationAccessTokenGenerateForAppResponse   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationAccessTokenGenerateForAppResponse *
       cauthentication__access_token__generate_for_app__response__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__access_token__generate_for_app__response__free_unpacked
                     (CAuthenticationAccessTokenGenerateForAppResponse *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__refresh_token__enumerate__request__get_packed_size
                     (const CAuthenticationRefreshTokenEnumerateRequest   *message);
size_t cauthentication__refresh_token__enumerate__request__pack
                     (const CAuthenticationRefreshTokenEnumerateRequest   *message,
                      uint8_t             *out);
size_t cauthentication__refresh_token__enumerate__request__pack_to_buffer
                     (const CAuthenticationRefreshTokenEnumerateRequest   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationRefreshTokenEnumerateRequest *
       cauthentication__refresh_token__enumerate__request__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__refresh_token__enumerate__request__free_unpacked
                     (CAuthenticationRefreshTokenEnumerateRequest *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__refresh_token__enumerate__response__get_packed_size
                     (const CAuthenticationRefreshTokenEnumerateResponse   *message);
size_t cauthentication__refresh_token__enumerate__response__pack
                     (const CAuthenticationRefreshTokenEnumerateResponse   *message,
                      uint8_t             *out);
size_t cauthentication__refresh_token__enumerate__response__pack_to_buffer
                     (const CAuthenticationRefreshTokenEnumerateResponse   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationRefreshTokenEnumerateResponse *
       cauthentication__refresh_token__enumerate__response__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__refresh_token__enumerate__response__free_unpacked
                     (CAuthenticationRefreshTokenEnumerateResponse *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__get_auth_sessions_for_account__request__get_packed_size
                     (const CAuthenticationGetAuthSessionsForAccountRequest   *message);
size_t cauthentication__get_auth_sessions_for_account__request__pack
                     (const CAuthenticationGetAuthSessionsForAccountRequest   *message,
                      uint8_t             *out);
size_t cauthentication__get_auth_sessions_for_account__request__pack_to_buffer
                     (const CAuthenticationGetAuthSessionsForAccountRequest   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationGetAuthSessionsForAccountRequest *
       cauthentication__get_auth_sessions_for_account__request__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__get_auth_sessions_for_account__request__free_unpacked
                     (CAuthenticationGetAuthSessionsForAccountRequest *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__get_auth_sessions_for_account__response__get_packed_size
                     (const CAuthenticationGetAuthSessionsForAccountResponse   *message);
size_t cauthentication__get_auth_sessions_for_account__response__pack
                     (const CAuthenticationGetAuthSessionsForAccountResponse   *message,
                      uint8_t             *out);
size_t cauthentication__get_auth_sessions_for_account__response__pack_to_buffer
                     (const CAuthenticationGetAuthSessionsForAccountResponse   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationGetAuthSessionsForAccountResponse *
       cauthentication__get_auth_sessions_for_account__response__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__get_auth_sessions_for_account__response__free_unpacked
                     (CAuthenticationGetAuthSessionsForAccountResponse *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__migrate_mobile_session__request__get_packed_size
                     (const CAuthenticationMigrateMobileSessionRequest   *message);
size_t cauthentication__migrate_mobile_session__request__pack
                     (const CAuthenticationMigrateMobileSessionRequest   *message,
                      uint8_t             *out);
size_t cauthentication__migrate_mobile_session__request__pack_to_buffer
                     (const CAuthenticationMigrateMobileSessionRequest   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationMigrateMobileSessionRequest *
       cauthentication__migrate_mobile_session__request__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__migrate_mobile_session__request__free_unpacked
                     (CAuthenticationMigrateMobileSessionRequest *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__migrate_mobile_session__response__get_packed_size
                     (const CAuthenticationMigrateMobileSessionResponse   *message);
size_t cauthentication__migrate_mobile_session__response__pack
                     (const CAuthenticationMigrateMobileSessionResponse   *message,
                      uint8_t             *out);
size_t cauthentication__migrate_mobile_session__response__pack_to_buffer
                     (const CAuthenticationMigrateMobileSessionResponse   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationMigrateMobileSessionResponse *
       cauthentication__migrate_mobile_session__response__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__migrate_mobile_session__response__free_unpacked
                     (CAuthenticationMigrateMobileSessionResponse *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__refresh_token__revoke__request__get_packed_size
                     (const CAuthenticationRefreshTokenRevokeRequest   *message);
size_t cauthentication__refresh_token__revoke__request__pack
                     (const CAuthenticationRefreshTokenRevokeRequest   *message,
                      uint8_t             *out);
size_t cauthentication__refresh_token__revoke__request__pack_to_buffer
                     (const CAuthenticationRefreshTokenRevokeRequest   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationRefreshTokenRevokeRequest *
       cauthentication__refresh_token__revoke__request__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__refresh_token__revoke__request__free_unpacked
                     (CAuthenticationRefreshTokenRevokeRequest *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication__refresh_token__revoke__response__get_packed_size
                     (const CAuthenticationRefreshTokenRevokeResponse   *message);
size_t cauthentication__refresh_token__revoke__response__pack
                     (const CAuthenticationRefreshTokenRevokeResponse   *message,
                      uint8_t             *out);
size_t cauthentication__refresh_token__revoke__response__pack_to_buffer
                     (const CAuthenticationRefreshTokenRevokeResponse   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationRefreshTokenRevokeResponse *
       cauthentication__refresh_token__revoke__response__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication__refresh_token__revoke__response__free_unpacked
                     (CAuthenticationRefreshTokenRevokeResponse *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication_support__query_refresh_tokens_by_account__request__get_packed_size
                     (const CAuthenticationSupportQueryRefreshTokensByAccountRequest   *message);
size_t cauthentication_support__query_refresh_tokens_by_account__request__pack
                     (const CAuthenticationSupportQueryRefreshTokensByAccountRequest   *message,
                      uint8_t             *out);
size_t cauthentication_support__query_refresh_tokens_by_account__request__pack_to_buffer
                     (const CAuthenticationSupportQueryRefreshTokensByAccountRequest   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationSupportQueryRefreshTokensByAccountRequest *
       cauthentication_support__query_refresh_tokens_by_account__request__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication_support__query_refresh_tokens_by_account__request__free_unpacked
                     (CAuthenticationSupportQueryRefreshTokensByAccountRequest *message,
                      ProtobufCAllocator *allocator);
size_t csupport_refresh_token_description__get_packed_size
                     (const CSupportRefreshTokenDescription   *message);
size_t csupport_refresh_token_description__pack
                     (const CSupportRefreshTokenDescription   *message,
                      uint8_t             *out);
size_t csupport_refresh_token_description__pack_to_buffer
                     (const CSupportRefreshTokenDescription   *message,
                      ProtobufCBuffer     *buffer);
CSupportRefreshTokenDescription *
       csupport_refresh_token_description__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   csupport_refresh_token_description__free_unpacked
                     (CSupportRefreshTokenDescription *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication_support__query_refresh_tokens_by_account__response__get_packed_size
                     (const CAuthenticationSupportQueryRefreshTokensByAccountResponse   *message);
size_t cauthentication_support__query_refresh_tokens_by_account__response__pack
                     (const CAuthenticationSupportQueryRefreshTokensByAccountResponse   *message,
                      uint8_t             *out);
size_t cauthentication_support__query_refresh_tokens_by_account__response__pack_to_buffer
                     (const CAuthenticationSupportQueryRefreshTokensByAccountResponse   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationSupportQueryRefreshTokensByAccountResponse *
       cauthentication_support__query_refresh_tokens_by_account__response__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication_support__query_refresh_tokens_by_account__response__free_unpacked
                     (CAuthenticationSupportQueryRefreshTokensByAccountResponse *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication_support__query_refresh_token_by_id__request__get_packed_size
                     (const CAuthenticationSupportQueryRefreshTokenByIDRequest   *message);
size_t cauthentication_support__query_refresh_token_by_id__request__pack
                     (const CAuthenticationSupportQueryRefreshTokenByIDRequest   *message,
                      uint8_t             *out);
size_t cauthentication_support__query_refresh_token_by_id__request__pack_to_buffer
                     (const CAuthenticationSupportQueryRefreshTokenByIDRequest   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationSupportQueryRefreshTokenByIDRequest *
       cauthentication_support__query_refresh_token_by_id__request__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication_support__query_refresh_token_by_id__request__free_unpacked
                     (CAuthenticationSupportQueryRefreshTokenByIDRequest *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication_support__query_refresh_token_by_id__response__get_packed_size
                     (const CAuthenticationSupportQueryRefreshTokenByIDResponse   *message);
size_t cauthentication_support__query_refresh_token_by_id__response__pack
                     (const CAuthenticationSupportQueryRefreshTokenByIDResponse   *message,
                      uint8_t             *out);
size_t cauthentication_support__query_refresh_token_by_id__response__pack_to_buffer
                     (const CAuthenticationSupportQueryRefreshTokenByIDResponse   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationSupportQueryRefreshTokenByIDResponse *
       cauthentication_support__query_refresh_token_by_id__response__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication_support__query_refresh_token_by_id__response__free_unpacked
                     (CAuthenticationSupportQueryRefreshTokenByIDResponse *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication_support__revoke_token__request__get_packed_size
                     (const CAuthenticationSupportRevokeTokenRequest   *message);
size_t cauthentication_support__revoke_token__request__pack
                     (const CAuthenticationSupportRevokeTokenRequest   *message,
                      uint8_t             *out);
size_t cauthentication_support__revoke_token__request__pack_to_buffer
                     (const CAuthenticationSupportRevokeTokenRequest   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationSupportRevokeTokenRequest *
       cauthentication_support__revoke_token__request__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication_support__revoke_token__request__free_unpacked
                     (CAuthenticationSupportRevokeTokenRequest *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication_support__revoke_token__response__get_packed_size
                     (const CAuthenticationSupportRevokeTokenResponse   *message);
size_t cauthentication_support__revoke_token__response__pack
                     (const CAuthenticationSupportRevokeTokenResponse   *message,
                      uint8_t             *out);
size_t cauthentication_support__revoke_token__response__pack_to_buffer
                     (const CAuthenticationSupportRevokeTokenResponse   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationSupportRevokeTokenResponse *
       cauthentication_support__revoke_token__response__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication_support__revoke_token__response__free_unpacked
                     (CAuthenticationSupportRevokeTokenResponse *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication_support__get_token_history__request__get_packed_size
                     (const CAuthenticationSupportGetTokenHistoryRequest   *message);
size_t cauthentication_support__get_token_history__request__pack
                     (const CAuthenticationSupportGetTokenHistoryRequest   *message,
                      uint8_t             *out);
size_t cauthentication_support__get_token_history__request__pack_to_buffer
                     (const CAuthenticationSupportGetTokenHistoryRequest   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationSupportGetTokenHistoryRequest *
       cauthentication_support__get_token_history__request__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication_support__get_token_history__request__free_unpacked
                     (CAuthenticationSupportGetTokenHistoryRequest *message,
                      ProtobufCAllocator *allocator);
size_t csupport_refresh_token_audit__get_packed_size
                     (const CSupportRefreshTokenAudit   *message);
size_t csupport_refresh_token_audit__pack
                     (const CSupportRefreshTokenAudit   *message,
                      uint8_t             *out);
size_t csupport_refresh_token_audit__pack_to_buffer
                     (const CSupportRefreshTokenAudit   *message,
                      ProtobufCBuffer     *buffer);
CSupportRefreshTokenAudit *
       csupport_refresh_token_audit__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   csupport_refresh_token_audit__free_unpacked
                     (CSupportRefreshTokenAudit *message,
                      ProtobufCAllocator *allocator);
size_t cauthentication_support__get_token_history__response__get_packed_size
                     (const CAuthenticationSupportGetTokenHistoryResponse   *message);
size_t cauthentication_support__get_token_history__response__pack
                     (const CAuthenticationSupportGetTokenHistoryResponse   *message,
                      uint8_t             *out);
size_t cauthentication_support__get_token_history__response__pack_to_buffer
                     (const CAuthenticationSupportGetTokenHistoryResponse   *message,
                      ProtobufCBuffer     *buffer);
CAuthenticationSupportGetTokenHistoryResponse *
       cauthentication_support__get_token_history__response__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   cauthentication_support__get_token_history__response__free_unpacked
                     (CAuthenticationSupportGetTokenHistoryResponse *message,
                      ProtobufCAllocator *allocator);
size_t ccloud_gaming__create_nonce__request__get_packed_size
                     (const CCloudGamingCreateNonceRequest   *message);
size_t ccloud_gaming__create_nonce__request__pack
                     (const CCloudGamingCreateNonceRequest   *message,
                      uint8_t             *out);
size_t ccloud_gaming__create_nonce__request__pack_to_buffer
                     (const CCloudGamingCreateNonceRequest   *message,
                      ProtobufCBuffer     *buffer);
CCloudGamingCreateNonceRequest *
       ccloud_gaming__create_nonce__request__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   ccloud_gaming__create_nonce__request__free_unpacked
                     (CCloudGamingCreateNonceRequest *message,
                      ProtobufCAllocator *allocator);
size_t ccloud_gaming__create_nonce__response__get_packed_size
                     (const CCloudGamingCreateNonceResponse   *message);
size_t ccloud_gaming__create_nonce__response__pack
                     (const CCloudGamingCreateNonceResponse   *message,
                      uint8_t             *out);
size_t ccloud_gaming__create_nonce__response__pack_to_buffer
                     (const CCloudGamingCreateNonceResponse   *message,
                      ProtobufCBuffer     *buffer);
CCloudGamingCreateNonceResponse *
       ccloud_gaming__create_nonce__response__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   ccloud_gaming__create_nonce__response__free_unpacked
                     (CCloudGamingCreateNonceResponse *message,
                      ProtobufCAllocator *allocator);
size_t ccloud_gaming__get_time_remaining__request__get_packed_size
                     (const CCloudGamingGetTimeRemainingRequest   *message);
size_t ccloud_gaming__get_time_remaining__request__pack
                     (const CCloudGamingGetTimeRemainingRequest   *message,
                      uint8_t             *out);
size_t ccloud_gaming__get_time_remaining__request__pack_to_buffer
                     (const CCloudGamingGetTimeRemainingRequest   *message,
                      ProtobufCBuffer     *buffer);
CCloudGamingGetTimeRemainingRequest *
       ccloud_gaming__get_time_remaining__request__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   ccloud_gaming__get_time_remaining__request__free_unpacked
                     (CCloudGamingGetTimeRemainingRequest *message,
                      ProtobufCAllocator *allocator);
size_t ccloud_gaming__time_remaining__get_packed_size
                     (const CCloudGamingTimeRemaining   *message);
size_t ccloud_gaming__time_remaining__pack
                     (const CCloudGamingTimeRemaining   *message,
                      uint8_t             *out);
size_t ccloud_gaming__time_remaining__pack_to_buffer
                     (const CCloudGamingTimeRemaining   *message,
                      ProtobufCBuffer     *buffer);
CCloudGamingTimeRemaining *
       ccloud_gaming__time_remaining__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   ccloud_gaming__time_remaining__free_unpacked
                     (CCloudGamingTimeRemaining *message,
                      ProtobufCAllocator *allocator);
size_t ccloud_gaming__get_time_remaining__response__get_packed_size
                     (const CCloudGamingGetTimeRemainingResponse   *message);
size_t ccloud_gaming__get_time_remaining__response__pack
                     (const CCloudGamingGetTimeRemainingResponse   *message,
                      uint8_t             *out);
size_t ccloud_gaming__get_time_remaining__response__pack_to_buffer
                     (const CCloudGamingGetTimeRemainingResponse   *message,
                      ProtobufCBuffer     *buffer);
CCloudGamingGetTimeRemainingResponse *
       ccloud_gaming__get_time_remaining__response__unpack
                     (ProtobufCAllocator  *allocator,
                      size_t               len,
                      const uint8_t       *data);
void   ccloud_gaming__get_time_remaining__response__free_unpacked
                     (CCloudGamingGetTimeRemainingResponse *message,
                      ProtobufCAllocator *allocator);
/* --- per-message closures --- */

typedef void (*CAuthenticationGetPasswordRSAPublicKeyRequest_Closure)
                 (const CAuthenticationGetPasswordRSAPublicKeyRequest *message,
                  void *closure_data);
typedef void (*CAuthenticationGetPasswordRSAPublicKeyResponse_Closure)
                 (const CAuthenticationGetPasswordRSAPublicKeyResponse *message,
                  void *closure_data);
typedef void (*CAuthenticationDeviceDetails_Closure)
                 (const CAuthenticationDeviceDetails *message,
                  void *closure_data);
typedef void (*CAuthenticationBeginAuthSessionViaQRRequest_Closure)
                 (const CAuthenticationBeginAuthSessionViaQRRequest *message,
                  void *closure_data);
typedef void (*CAuthenticationAllowedConfirmation_Closure)
                 (const CAuthenticationAllowedConfirmation *message,
                  void *closure_data);
typedef void (*CAuthenticationBeginAuthSessionViaQRResponse_Closure)
                 (const CAuthenticationBeginAuthSessionViaQRResponse *message,
                  void *closure_data);
typedef void (*CAuthenticationBeginAuthSessionViaCredentialsRequest_Closure)
                 (const CAuthenticationBeginAuthSessionViaCredentialsRequest *message,
                  void *closure_data);
typedef void (*CAuthenticationBeginAuthSessionViaCredentialsResponse_Closure)
                 (const CAuthenticationBeginAuthSessionViaCredentialsResponse *message,
                  void *closure_data);
typedef void (*CAuthenticationPollAuthSessionStatusRequest_Closure)
                 (const CAuthenticationPollAuthSessionStatusRequest *message,
                  void *closure_data);
typedef void (*CAuthenticationPollAuthSessionStatusResponse_Closure)
                 (const CAuthenticationPollAuthSessionStatusResponse *message,
                  void *closure_data);
typedef void (*CAuthenticationGetAuthSessionInfoRequest_Closure)
                 (const CAuthenticationGetAuthSessionInfoRequest *message,
                  void *closure_data);
typedef void (*CAuthenticationGetAuthSessionInfoResponse_Closure)
                 (const CAuthenticationGetAuthSessionInfoResponse *message,
                  void *closure_data);
typedef void (*CAuthenticationUpdateAuthSessionWithMobileConfirmationRequest_Closure)
                 (const CAuthenticationUpdateAuthSessionWithMobileConfirmationRequest *message,
                  void *closure_data);
typedef void (*CAuthenticationUpdateAuthSessionWithMobileConfirmationResponse_Closure)
                 (const CAuthenticationUpdateAuthSessionWithMobileConfirmationResponse *message,
                  void *closure_data);
typedef void (*CAuthenticationUpdateAuthSessionWithSteamGuardCodeRequest_Closure)
                 (const CAuthenticationUpdateAuthSessionWithSteamGuardCodeRequest *message,
                  void *closure_data);
typedef void (*CAuthenticationUpdateAuthSessionWithSteamGuardCodeResponse_Closure)
                 (const CAuthenticationUpdateAuthSessionWithSteamGuardCodeResponse *message,
                  void *closure_data);
typedef void (*CAuthenticationAccessTokenGenerateForAppRequest_Closure)
                 (const CAuthenticationAccessTokenGenerateForAppRequest *message,
                  void *closure_data);
typedef void (*CAuthenticationAccessTokenGenerateForAppResponse_Closure)
                 (const CAuthenticationAccessTokenGenerateForAppResponse *message,
                  void *closure_data);
typedef void (*CAuthenticationRefreshTokenEnumerateRequest_Closure)
                 (const CAuthenticationRefreshTokenEnumerateRequest *message,
                  void *closure_data);
typedef void (*CAuthenticationRefreshTokenEnumerateResponse__TokenUsageEvent_Closure)
                 (const CAuthenticationRefreshTokenEnumerateResponse__TokenUsageEvent *message,
                  void *closure_data);
typedef void (*CAuthenticationRefreshTokenEnumerateResponse__RefreshTokenDescription_Closure)
                 (const CAuthenticationRefreshTokenEnumerateResponse__RefreshTokenDescription *message,
                  void *closure_data);
typedef void (*CAuthenticationRefreshTokenEnumerateResponse_Closure)
                 (const CAuthenticationRefreshTokenEnumerateResponse *message,
                  void *closure_data);
typedef void (*CAuthenticationGetAuthSessionsForAccountRequest_Closure)
                 (const CAuthenticationGetAuthSessionsForAccountRequest *message,
                  void *closure_data);
typedef void (*CAuthenticationGetAuthSessionsForAccountResponse_Closure)
                 (const CAuthenticationGetAuthSessionsForAccountResponse *message,
                  void *closure_data);
typedef void (*CAuthenticationMigrateMobileSessionRequest_Closure)
                 (const CAuthenticationMigrateMobileSessionRequest *message,
                  void *closure_data);
typedef void (*CAuthenticationMigrateMobileSessionResponse_Closure)
                 (const CAuthenticationMigrateMobileSessionResponse *message,
                  void *closure_data);
typedef void (*CAuthenticationRefreshTokenRevokeRequest_Closure)
                 (const CAuthenticationRefreshTokenRevokeRequest *message,
                  void *closure_data);
typedef void (*CAuthenticationRefreshTokenRevokeResponse_Closure)
                 (const CAuthenticationRefreshTokenRevokeResponse *message,
                  void *closure_data);
typedef void (*CAuthenticationSupportQueryRefreshTokensByAccountRequest_Closure)
                 (const CAuthenticationSupportQueryRefreshTokensByAccountRequest *message,
                  void *closure_data);
typedef void (*CSupportRefreshTokenDescription__TokenUsageEvent_Closure)
                 (const CSupportRefreshTokenDescription__TokenUsageEvent *message,
                  void *closure_data);
typedef void (*CSupportRefreshTokenDescription_Closure)
                 (const CSupportRefreshTokenDescription *message,
                  void *closure_data);
typedef void (*CAuthenticationSupportQueryRefreshTokensByAccountResponse_Closure)
                 (const CAuthenticationSupportQueryRefreshTokensByAccountResponse *message,
                  void *closure_data);
typedef void (*CAuthenticationSupportQueryRefreshTokenByIDRequest_Closure)
                 (const CAuthenticationSupportQueryRefreshTokenByIDRequest *message,
                  void *closure_data);
typedef void (*CAuthenticationSupportQueryRefreshTokenByIDResponse_Closure)
                 (const CAuthenticationSupportQueryRefreshTokenByIDResponse *message,
                  void *closure_data);
typedef void (*CAuthenticationSupportRevokeTokenRequest_Closure)
                 (const CAuthenticationSupportRevokeTokenRequest *message,
                  void *closure_data);
typedef void (*CAuthenticationSupportRevokeTokenResponse_Closure)
                 (const CAuthenticationSupportRevokeTokenResponse *message,
                  void *closure_data);
typedef void (*CAuthenticationSupportGetTokenHistoryRequest_Closure)
                 (const CAuthenticationSupportGetTokenHistoryRequest *message,
                  void *closure_data);
typedef void (*CSupportRefreshTokenAudit_Closure)
                 (const CSupportRefreshTokenAudit *message,
                  void *closure_data);
typedef void (*CAuthenticationSupportGetTokenHistoryResponse_Closure)
                 (const CAuthenticationSupportGetTokenHistoryResponse *message,
                  void *closure_data);
typedef void (*CCloudGamingCreateNonceRequest_Closure)
                 (const CCloudGamingCreateNonceRequest *message,
                  void *closure_data);
typedef void (*CCloudGamingCreateNonceResponse_Closure)
                 (const CCloudGamingCreateNonceResponse *message,
                  void *closure_data);
typedef void (*CCloudGamingGetTimeRemainingRequest_Closure)
                 (const CCloudGamingGetTimeRemainingRequest *message,
                  void *closure_data);
typedef void (*CCloudGamingTimeRemaining_Closure)
                 (const CCloudGamingTimeRemaining *message,
                  void *closure_data);
typedef void (*CCloudGamingGetTimeRemainingResponse_Closure)
                 (const CCloudGamingGetTimeRemainingResponse *message,
                  void *closure_data);

/* --- services --- */

typedef struct Authentication_Service Authentication_Service;
struct Authentication_Service
{
  ProtobufCService base;
  void (*get_password_rsapublic_key)(Authentication_Service *service,
                                     const CAuthenticationGetPasswordRSAPublicKeyRequest *input,
                                     CAuthenticationGetPasswordRSAPublicKeyResponse_Closure closure,
                                     void *closure_data);
  void (*begin_auth_session_via_qr)(Authentication_Service *service,
                                    const CAuthenticationBeginAuthSessionViaQRRequest *input,
                                    CAuthenticationBeginAuthSessionViaQRResponse_Closure closure,
                                    void *closure_data);
  void (*begin_auth_session_via_credentials)(Authentication_Service *service,
                                             const CAuthenticationBeginAuthSessionViaCredentialsRequest *input,
                                             CAuthenticationBeginAuthSessionViaCredentialsResponse_Closure closure,
                                             void *closure_data);
  void (*poll_auth_session_status)(Authentication_Service *service,
                                   const CAuthenticationPollAuthSessionStatusRequest *input,
                                   CAuthenticationPollAuthSessionStatusResponse_Closure closure,
                                   void *closure_data);
  void (*get_auth_session_info)(Authentication_Service *service,
                                const CAuthenticationGetAuthSessionInfoRequest *input,
                                CAuthenticationGetAuthSessionInfoResponse_Closure closure,
                                void *closure_data);
  void (*update_auth_session_with_mobile_confirmation)(Authentication_Service *service,
                                                       const CAuthenticationUpdateAuthSessionWithMobileConfirmationRequest *input,
                                                       CAuthenticationUpdateAuthSessionWithMobileConfirmationResponse_Closure closure,
                                                       void *closure_data);
  void (*update_auth_session_with_steam_guard_code)(Authentication_Service *service,
                                                    const CAuthenticationUpdateAuthSessionWithSteamGuardCodeRequest *input,
                                                    CAuthenticationUpdateAuthSessionWithSteamGuardCodeResponse_Closure closure,
                                                    void *closure_data);
  void (*generate_access_token_for_app)(Authentication_Service *service,
                                        const CAuthenticationAccessTokenGenerateForAppRequest *input,
                                        CAuthenticationAccessTokenGenerateForAppResponse_Closure closure,
                                        void *closure_data);
  void (*enumerate_tokens)(Authentication_Service *service,
                           const CAuthenticationRefreshTokenEnumerateRequest *input,
                           CAuthenticationRefreshTokenEnumerateResponse_Closure closure,
                           void *closure_data);
  void (*get_auth_sessions_for_account)(Authentication_Service *service,
                                        const CAuthenticationGetAuthSessionsForAccountRequest *input,
                                        CAuthenticationGetAuthSessionsForAccountResponse_Closure closure,
                                        void *closure_data);
  void (*migrate_mobile_session)(Authentication_Service *service,
                                 const CAuthenticationMigrateMobileSessionRequest *input,
                                 CAuthenticationMigrateMobileSessionResponse_Closure closure,
                                 void *closure_data);
  void (*revoke_refresh_token)(Authentication_Service *service,
                               const CAuthenticationRefreshTokenRevokeRequest *input,
                               CAuthenticationRefreshTokenRevokeResponse_Closure closure,
                               void *closure_data);
};
typedef void (*Authentication_ServiceDestroy)(Authentication_Service *);
void authentication__init (Authentication_Service *service,
                           Authentication_ServiceDestroy destroy);
#define AUTHENTICATION__BASE_INIT \
    { &authentication__descriptor, protobuf_c_service_invoke_internal, NULL }
#define AUTHENTICATION__INIT(function_prefix__) \
    { AUTHENTICATION__BASE_INIT,\
      function_prefix__ ## get_password_rsapublic_key,\
      function_prefix__ ## begin_auth_session_via_qr,\
      function_prefix__ ## begin_auth_session_via_credentials,\
      function_prefix__ ## poll_auth_session_status,\
      function_prefix__ ## get_auth_session_info,\
      function_prefix__ ## update_auth_session_with_mobile_confirmation,\
      function_prefix__ ## update_auth_session_with_steam_guard_code,\
      function_prefix__ ## generate_access_token_for_app,\
      function_prefix__ ## enumerate_tokens,\
      function_prefix__ ## get_auth_sessions_for_account,\
      function_prefix__ ## migrate_mobile_session,\
      function_prefix__ ## revoke_refresh_token  }
void authentication__get_password_rsapublic_key(ProtobufCService *service,
                                                const CAuthenticationGetPasswordRSAPublicKeyRequest *input,
                                                CAuthenticationGetPasswordRSAPublicKeyResponse_Closure closure,
                                                void *closure_data);
void authentication__begin_auth_session_via_qr(ProtobufCService *service,
                                               const CAuthenticationBeginAuthSessionViaQRRequest *input,
                                               CAuthenticationBeginAuthSessionViaQRResponse_Closure closure,
                                               void *closure_data);
void authentication__begin_auth_session_via_credentials(ProtobufCService *service,
                                                        const CAuthenticationBeginAuthSessionViaCredentialsRequest *input,
                                                        CAuthenticationBeginAuthSessionViaCredentialsResponse_Closure closure,
                                                        void *closure_data);
void authentication__poll_auth_session_status(ProtobufCService *service,
                                              const CAuthenticationPollAuthSessionStatusRequest *input,
                                              CAuthenticationPollAuthSessionStatusResponse_Closure closure,
                                              void *closure_data);
void authentication__get_auth_session_info(ProtobufCService *service,
                                           const CAuthenticationGetAuthSessionInfoRequest *input,
                                           CAuthenticationGetAuthSessionInfoResponse_Closure closure,
                                           void *closure_data);
void authentication__update_auth_session_with_mobile_confirmation(ProtobufCService *service,
                                                                  const CAuthenticationUpdateAuthSessionWithMobileConfirmationRequest *input,
                                                                  CAuthenticationUpdateAuthSessionWithMobileConfirmationResponse_Closure closure,
                                                                  void *closure_data);
void authentication__update_auth_session_with_steam_guard_code(ProtobufCService *service,
                                                               const CAuthenticationUpdateAuthSessionWithSteamGuardCodeRequest *input,
                                                               CAuthenticationUpdateAuthSessionWithSteamGuardCodeResponse_Closure closure,
                                                               void *closure_data);
void authentication__generate_access_token_for_app(ProtobufCService *service,
                                                   const CAuthenticationAccessTokenGenerateForAppRequest *input,
                                                   CAuthenticationAccessTokenGenerateForAppResponse_Closure closure,
                                                   void *closure_data);
void authentication__enumerate_tokens(ProtobufCService *service,
                                      const CAuthenticationRefreshTokenEnumerateRequest *input,
                                      CAuthenticationRefreshTokenEnumerateResponse_Closure closure,
                                      void *closure_data);
void authentication__get_auth_sessions_for_account(ProtobufCService *service,
                                                   const CAuthenticationGetAuthSessionsForAccountRequest *input,
                                                   CAuthenticationGetAuthSessionsForAccountResponse_Closure closure,
                                                   void *closure_data);
void authentication__migrate_mobile_session(ProtobufCService *service,
                                            const CAuthenticationMigrateMobileSessionRequest *input,
                                            CAuthenticationMigrateMobileSessionResponse_Closure closure,
                                            void *closure_data);
void authentication__revoke_refresh_token(ProtobufCService *service,
                                          const CAuthenticationRefreshTokenRevokeRequest *input,
                                          CAuthenticationRefreshTokenRevokeResponse_Closure closure,
                                          void *closure_data);
typedef struct AuthenticationSupport_Service AuthenticationSupport_Service;
struct AuthenticationSupport_Service
{
  ProtobufCService base;
  void (*query_refresh_tokens_by_account)(AuthenticationSupport_Service *service,
                                          const CAuthenticationSupportQueryRefreshTokensByAccountRequest *input,
                                          CAuthenticationSupportQueryRefreshTokensByAccountResponse_Closure closure,
                                          void *closure_data);
  void (*query_refresh_token_by_id)(AuthenticationSupport_Service *service,
                                    const CAuthenticationSupportQueryRefreshTokenByIDRequest *input,
                                    CAuthenticationSupportQueryRefreshTokenByIDResponse_Closure closure,
                                    void *closure_data);
  void (*revoke_token)(AuthenticationSupport_Service *service,
                       const CAuthenticationSupportRevokeTokenRequest *input,
                       CAuthenticationSupportRevokeTokenResponse_Closure closure,
                       void *closure_data);
  void (*get_token_history)(AuthenticationSupport_Service *service,
                            const CAuthenticationSupportGetTokenHistoryRequest *input,
                            CAuthenticationSupportGetTokenHistoryResponse_Closure closure,
                            void *closure_data);
};
typedef void (*AuthenticationSupport_ServiceDestroy)(AuthenticationSupport_Service *);
void authentication_support__init (AuthenticationSupport_Service *service,
                                   AuthenticationSupport_ServiceDestroy destroy);
#define AUTHENTICATION_SUPPORT__BASE_INIT \
    { &authentication_support__descriptor, protobuf_c_service_invoke_internal, NULL }
#define AUTHENTICATION_SUPPORT__INIT(function_prefix__) \
    { AUTHENTICATION_SUPPORT__BASE_INIT,\
      function_prefix__ ## query_refresh_tokens_by_account,\
      function_prefix__ ## query_refresh_token_by_id,\
      function_prefix__ ## revoke_token,\
      function_prefix__ ## get_token_history  }
void authentication_support__query_refresh_tokens_by_account(ProtobufCService *service,
                                                             const CAuthenticationSupportQueryRefreshTokensByAccountRequest *input,
                                                             CAuthenticationSupportQueryRefreshTokensByAccountResponse_Closure closure,
                                                             void *closure_data);
void authentication_support__query_refresh_token_by_id(ProtobufCService *service,
                                                       const CAuthenticationSupportQueryRefreshTokenByIDRequest *input,
                                                       CAuthenticationSupportQueryRefreshTokenByIDResponse_Closure closure,
                                                       void *closure_data);
void authentication_support__revoke_token(ProtobufCService *service,
                                          const CAuthenticationSupportRevokeTokenRequest *input,
                                          CAuthenticationSupportRevokeTokenResponse_Closure closure,
                                          void *closure_data);
void authentication_support__get_token_history(ProtobufCService *service,
                                               const CAuthenticationSupportGetTokenHistoryRequest *input,
                                               CAuthenticationSupportGetTokenHistoryResponse_Closure closure,
                                               void *closure_data);
typedef struct CloudGaming_Service CloudGaming_Service;
struct CloudGaming_Service
{
  ProtobufCService base;
  void (*create_nonce)(CloudGaming_Service *service,
                       const CCloudGamingCreateNonceRequest *input,
                       CCloudGamingCreateNonceResponse_Closure closure,
                       void *closure_data);
  void (*get_time_remaining)(CloudGaming_Service *service,
                             const CCloudGamingGetTimeRemainingRequest *input,
                             CCloudGamingGetTimeRemainingResponse_Closure closure,
                             void *closure_data);
};
typedef void (*CloudGaming_ServiceDestroy)(CloudGaming_Service *);
void cloud_gaming__init (CloudGaming_Service *service,
                         CloudGaming_ServiceDestroy destroy);
#define CLOUD_GAMING__BASE_INIT \
    { &cloud_gaming__descriptor, protobuf_c_service_invoke_internal, NULL }
#define CLOUD_GAMING__INIT(function_prefix__) \
    { CLOUD_GAMING__BASE_INIT,\
      function_prefix__ ## create_nonce,\
      function_prefix__ ## get_time_remaining  }
void cloud_gaming__create_nonce(ProtobufCService *service,
                                const CCloudGamingCreateNonceRequest *input,
                                CCloudGamingCreateNonceResponse_Closure closure,
                                void *closure_data);
void cloud_gaming__get_time_remaining(ProtobufCService *service,
                                      const CCloudGamingGetTimeRemainingRequest *input,
                                      CCloudGamingGetTimeRemainingResponse_Closure closure,
                                      void *closure_data);

PROTOBUF_C__END_DECLS


#endif  /* PROTOBUF_C_steammessages_5fauth_2esteamclient_2eproto__INCLUDED */