-
Notifications
You must be signed in to change notification settings - Fork 2
/
steammessages_deviceauth.steamclient.pb.cc
7649 lines (6831 loc) · 334 KB
/
steammessages_deviceauth.steamclient.pb.cc
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
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: steammessages_deviceauth.steamclient.proto
#include "steammessages_deviceauth.steamclient.pb.h"
#include <algorithm>
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/extension_set.h>
#include <google/protobuf/wire_format_lite.h>
#include <google/protobuf/descriptor.h>
#include <google/protobuf/generated_message_reflection.h>
#include <google/protobuf/reflection_ops.h>
#include <google/protobuf/wire_format.h>
// @@protoc_insertion_point(includes)
#include <google/protobuf/port_def.inc>
PROTOBUF_PRAGMA_INIT_SEG
constexpr CDeviceAuth_GetOwnAuthorizedDevices_Request::CDeviceAuth_GetOwnAuthorizedDevices_Request(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: steamid_(uint64_t{0u})
, include_canceled_(false){}
struct CDeviceAuth_GetOwnAuthorizedDevices_RequestDefaultTypeInternal {
constexpr CDeviceAuth_GetOwnAuthorizedDevices_RequestDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_GetOwnAuthorizedDevices_RequestDefaultTypeInternal() {}
union {
CDeviceAuth_GetOwnAuthorizedDevices_Request _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_GetOwnAuthorizedDevices_RequestDefaultTypeInternal _CDeviceAuth_GetOwnAuthorizedDevices_Request_default_instance_;
constexpr CDeviceAuth_GetOwnAuthorizedDevices_Response_Device::CDeviceAuth_GetOwnAuthorizedDevices_Response_Device(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: device_name_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, auth_device_token_(uint64_t{0u})
, last_time_used_(0u)
, is_pending_(false)
, is_canceled_(false)
, is_limited_(false)
, last_borrower_id_(uint64_t{0u})
, last_app_played_(0u){}
struct CDeviceAuth_GetOwnAuthorizedDevices_Response_DeviceDefaultTypeInternal {
constexpr CDeviceAuth_GetOwnAuthorizedDevices_Response_DeviceDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_GetOwnAuthorizedDevices_Response_DeviceDefaultTypeInternal() {}
union {
CDeviceAuth_GetOwnAuthorizedDevices_Response_Device _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_GetOwnAuthorizedDevices_Response_DeviceDefaultTypeInternal _CDeviceAuth_GetOwnAuthorizedDevices_Response_Device_default_instance_;
constexpr CDeviceAuth_GetOwnAuthorizedDevices_Response::CDeviceAuth_GetOwnAuthorizedDevices_Response(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: devices_(){}
struct CDeviceAuth_GetOwnAuthorizedDevices_ResponseDefaultTypeInternal {
constexpr CDeviceAuth_GetOwnAuthorizedDevices_ResponseDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_GetOwnAuthorizedDevices_ResponseDefaultTypeInternal() {}
union {
CDeviceAuth_GetOwnAuthorizedDevices_Response _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_GetOwnAuthorizedDevices_ResponseDefaultTypeInternal _CDeviceAuth_GetOwnAuthorizedDevices_Response_default_instance_;
constexpr CDeviceAuth_AcceptAuthorizationRequest_Request::CDeviceAuth_AcceptAuthorizationRequest_Request(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: steamid_(uint64_t{0u})
, auth_device_token_(uint64_t{0u})
, auth_code_(uint64_t{0u})
, from_steamid_(uint64_t{0u}){}
struct CDeviceAuth_AcceptAuthorizationRequest_RequestDefaultTypeInternal {
constexpr CDeviceAuth_AcceptAuthorizationRequest_RequestDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_AcceptAuthorizationRequest_RequestDefaultTypeInternal() {}
union {
CDeviceAuth_AcceptAuthorizationRequest_Request _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_AcceptAuthorizationRequest_RequestDefaultTypeInternal _CDeviceAuth_AcceptAuthorizationRequest_Request_default_instance_;
constexpr CDeviceAuth_AcceptAuthorizationRequest_Response::CDeviceAuth_AcceptAuthorizationRequest_Response(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized){}
struct CDeviceAuth_AcceptAuthorizationRequest_ResponseDefaultTypeInternal {
constexpr CDeviceAuth_AcceptAuthorizationRequest_ResponseDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_AcceptAuthorizationRequest_ResponseDefaultTypeInternal() {}
union {
CDeviceAuth_AcceptAuthorizationRequest_Response _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_AcceptAuthorizationRequest_ResponseDefaultTypeInternal _CDeviceAuth_AcceptAuthorizationRequest_Response_default_instance_;
constexpr CDeviceAuth_AuthorizeRemoteDevice_Request::CDeviceAuth_AuthorizeRemoteDevice_Request(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: steamid_(uint64_t{0u})
, auth_device_token_(uint64_t{0u}){}
struct CDeviceAuth_AuthorizeRemoteDevice_RequestDefaultTypeInternal {
constexpr CDeviceAuth_AuthorizeRemoteDevice_RequestDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_AuthorizeRemoteDevice_RequestDefaultTypeInternal() {}
union {
CDeviceAuth_AuthorizeRemoteDevice_Request _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_AuthorizeRemoteDevice_RequestDefaultTypeInternal _CDeviceAuth_AuthorizeRemoteDevice_Request_default_instance_;
constexpr CDeviceAuth_AuthorizeRemoteDevice_Response::CDeviceAuth_AuthorizeRemoteDevice_Response(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized){}
struct CDeviceAuth_AuthorizeRemoteDevice_ResponseDefaultTypeInternal {
constexpr CDeviceAuth_AuthorizeRemoteDevice_ResponseDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_AuthorizeRemoteDevice_ResponseDefaultTypeInternal() {}
union {
CDeviceAuth_AuthorizeRemoteDevice_Response _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_AuthorizeRemoteDevice_ResponseDefaultTypeInternal _CDeviceAuth_AuthorizeRemoteDevice_Response_default_instance_;
constexpr CDeviceAuth_DeauthorizeRemoteDevice_Request::CDeviceAuth_DeauthorizeRemoteDevice_Request(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: steamid_(uint64_t{0u})
, auth_device_token_(uint64_t{0u}){}
struct CDeviceAuth_DeauthorizeRemoteDevice_RequestDefaultTypeInternal {
constexpr CDeviceAuth_DeauthorizeRemoteDevice_RequestDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_DeauthorizeRemoteDevice_RequestDefaultTypeInternal() {}
union {
CDeviceAuth_DeauthorizeRemoteDevice_Request _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_DeauthorizeRemoteDevice_RequestDefaultTypeInternal _CDeviceAuth_DeauthorizeRemoteDevice_Request_default_instance_;
constexpr CDeviceAuth_DeauthorizeRemoteDevice_Response::CDeviceAuth_DeauthorizeRemoteDevice_Response(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized){}
struct CDeviceAuth_DeauthorizeRemoteDevice_ResponseDefaultTypeInternal {
constexpr CDeviceAuth_DeauthorizeRemoteDevice_ResponseDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_DeauthorizeRemoteDevice_ResponseDefaultTypeInternal() {}
union {
CDeviceAuth_DeauthorizeRemoteDevice_Response _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_DeauthorizeRemoteDevice_ResponseDefaultTypeInternal _CDeviceAuth_DeauthorizeRemoteDevice_Response_default_instance_;
constexpr CDeviceAuth_GetUsedAuthorizedDevices_Request::CDeviceAuth_GetUsedAuthorizedDevices_Request(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: steamid_(uint64_t{0u}){}
struct CDeviceAuth_GetUsedAuthorizedDevices_RequestDefaultTypeInternal {
constexpr CDeviceAuth_GetUsedAuthorizedDevices_RequestDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_GetUsedAuthorizedDevices_RequestDefaultTypeInternal() {}
union {
CDeviceAuth_GetUsedAuthorizedDevices_Request _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_GetUsedAuthorizedDevices_RequestDefaultTypeInternal _CDeviceAuth_GetUsedAuthorizedDevices_Request_default_instance_;
constexpr CDeviceAuth_GetUsedAuthorizedDevices_Response_Device::CDeviceAuth_GetUsedAuthorizedDevices_Response_Device(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: device_name_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, auth_device_token_(uint64_t{0u})
, owner_steamid_(uint64_t{0u})
, last_time_used_(0u)
, last_app_played_(0u){}
struct CDeviceAuth_GetUsedAuthorizedDevices_Response_DeviceDefaultTypeInternal {
constexpr CDeviceAuth_GetUsedAuthorizedDevices_Response_DeviceDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_GetUsedAuthorizedDevices_Response_DeviceDefaultTypeInternal() {}
union {
CDeviceAuth_GetUsedAuthorizedDevices_Response_Device _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_GetUsedAuthorizedDevices_Response_DeviceDefaultTypeInternal _CDeviceAuth_GetUsedAuthorizedDevices_Response_Device_default_instance_;
constexpr CDeviceAuth_GetUsedAuthorizedDevices_Response::CDeviceAuth_GetUsedAuthorizedDevices_Response(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: devices_(){}
struct CDeviceAuth_GetUsedAuthorizedDevices_ResponseDefaultTypeInternal {
constexpr CDeviceAuth_GetUsedAuthorizedDevices_ResponseDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_GetUsedAuthorizedDevices_ResponseDefaultTypeInternal() {}
union {
CDeviceAuth_GetUsedAuthorizedDevices_Response _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_GetUsedAuthorizedDevices_ResponseDefaultTypeInternal _CDeviceAuth_GetUsedAuthorizedDevices_Response_default_instance_;
constexpr CDeviceAuth_GetAuthorizedBorrowers_Request::CDeviceAuth_GetAuthorizedBorrowers_Request(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: steamid_(uint64_t{0u})
, include_canceled_(false)
, include_pending_(false){}
struct CDeviceAuth_GetAuthorizedBorrowers_RequestDefaultTypeInternal {
constexpr CDeviceAuth_GetAuthorizedBorrowers_RequestDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_GetAuthorizedBorrowers_RequestDefaultTypeInternal() {}
union {
CDeviceAuth_GetAuthorizedBorrowers_Request _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_GetAuthorizedBorrowers_RequestDefaultTypeInternal _CDeviceAuth_GetAuthorizedBorrowers_Request_default_instance_;
constexpr CDeviceAuth_GetAuthorizedBorrowers_Response_Borrower::CDeviceAuth_GetAuthorizedBorrowers_Response_Borrower(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: steamid_(uint64_t{0u})
, is_pending_(false)
, is_canceled_(false)
, time_created_(0u){}
struct CDeviceAuth_GetAuthorizedBorrowers_Response_BorrowerDefaultTypeInternal {
constexpr CDeviceAuth_GetAuthorizedBorrowers_Response_BorrowerDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_GetAuthorizedBorrowers_Response_BorrowerDefaultTypeInternal() {}
union {
CDeviceAuth_GetAuthorizedBorrowers_Response_Borrower _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_GetAuthorizedBorrowers_Response_BorrowerDefaultTypeInternal _CDeviceAuth_GetAuthorizedBorrowers_Response_Borrower_default_instance_;
constexpr CDeviceAuth_GetAuthorizedBorrowers_Response::CDeviceAuth_GetAuthorizedBorrowers_Response(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: borrowers_(){}
struct CDeviceAuth_GetAuthorizedBorrowers_ResponseDefaultTypeInternal {
constexpr CDeviceAuth_GetAuthorizedBorrowers_ResponseDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_GetAuthorizedBorrowers_ResponseDefaultTypeInternal() {}
union {
CDeviceAuth_GetAuthorizedBorrowers_Response _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_GetAuthorizedBorrowers_ResponseDefaultTypeInternal _CDeviceAuth_GetAuthorizedBorrowers_Response_default_instance_;
constexpr CDeviceAuth_AddAuthorizedBorrowers_Request::CDeviceAuth_AddAuthorizedBorrowers_Request(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: steamid_borrower_()
, steamid_(uint64_t{0u}){}
struct CDeviceAuth_AddAuthorizedBorrowers_RequestDefaultTypeInternal {
constexpr CDeviceAuth_AddAuthorizedBorrowers_RequestDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_AddAuthorizedBorrowers_RequestDefaultTypeInternal() {}
union {
CDeviceAuth_AddAuthorizedBorrowers_Request _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_AddAuthorizedBorrowers_RequestDefaultTypeInternal _CDeviceAuth_AddAuthorizedBorrowers_Request_default_instance_;
constexpr CDeviceAuth_AddAuthorizedBorrowers_Response::CDeviceAuth_AddAuthorizedBorrowers_Response(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: seconds_to_wait_(0){}
struct CDeviceAuth_AddAuthorizedBorrowers_ResponseDefaultTypeInternal {
constexpr CDeviceAuth_AddAuthorizedBorrowers_ResponseDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_AddAuthorizedBorrowers_ResponseDefaultTypeInternal() {}
union {
CDeviceAuth_AddAuthorizedBorrowers_Response _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_AddAuthorizedBorrowers_ResponseDefaultTypeInternal _CDeviceAuth_AddAuthorizedBorrowers_Response_default_instance_;
constexpr CDeviceAuth_RemoveAuthorizedBorrowers_Request::CDeviceAuth_RemoveAuthorizedBorrowers_Request(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: steamid_borrower_()
, steamid_(uint64_t{0u}){}
struct CDeviceAuth_RemoveAuthorizedBorrowers_RequestDefaultTypeInternal {
constexpr CDeviceAuth_RemoveAuthorizedBorrowers_RequestDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_RemoveAuthorizedBorrowers_RequestDefaultTypeInternal() {}
union {
CDeviceAuth_RemoveAuthorizedBorrowers_Request _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_RemoveAuthorizedBorrowers_RequestDefaultTypeInternal _CDeviceAuth_RemoveAuthorizedBorrowers_Request_default_instance_;
constexpr CDeviceAuth_RemoveAuthorizedBorrowers_Response::CDeviceAuth_RemoveAuthorizedBorrowers_Response(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized){}
struct CDeviceAuth_RemoveAuthorizedBorrowers_ResponseDefaultTypeInternal {
constexpr CDeviceAuth_RemoveAuthorizedBorrowers_ResponseDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_RemoveAuthorizedBorrowers_ResponseDefaultTypeInternal() {}
union {
CDeviceAuth_RemoveAuthorizedBorrowers_Response _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_RemoveAuthorizedBorrowers_ResponseDefaultTypeInternal _CDeviceAuth_RemoveAuthorizedBorrowers_Response_default_instance_;
constexpr CDeviceAuth_GetAuthorizedAsBorrower_Request::CDeviceAuth_GetAuthorizedAsBorrower_Request(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: steamid_(uint64_t{0u})
, include_canceled_(false)
, include_pending_(false){}
struct CDeviceAuth_GetAuthorizedAsBorrower_RequestDefaultTypeInternal {
constexpr CDeviceAuth_GetAuthorizedAsBorrower_RequestDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_GetAuthorizedAsBorrower_RequestDefaultTypeInternal() {}
union {
CDeviceAuth_GetAuthorizedAsBorrower_Request _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_GetAuthorizedAsBorrower_RequestDefaultTypeInternal _CDeviceAuth_GetAuthorizedAsBorrower_Request_default_instance_;
constexpr CDeviceAuth_GetAuthorizedAsBorrower_Response_Lender::CDeviceAuth_GetAuthorizedAsBorrower_Response_Lender(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: steamid_(uint64_t{0u})
, time_created_(0u)
, is_pending_(false)
, is_canceled_(false)
, is_used_(false)
, time_removed_(0u)
, time_first_(0u){}
struct CDeviceAuth_GetAuthorizedAsBorrower_Response_LenderDefaultTypeInternal {
constexpr CDeviceAuth_GetAuthorizedAsBorrower_Response_LenderDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_GetAuthorizedAsBorrower_Response_LenderDefaultTypeInternal() {}
union {
CDeviceAuth_GetAuthorizedAsBorrower_Response_Lender _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_GetAuthorizedAsBorrower_Response_LenderDefaultTypeInternal _CDeviceAuth_GetAuthorizedAsBorrower_Response_Lender_default_instance_;
constexpr CDeviceAuth_GetAuthorizedAsBorrower_Response::CDeviceAuth_GetAuthorizedAsBorrower_Response(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: lenders_(){}
struct CDeviceAuth_GetAuthorizedAsBorrower_ResponseDefaultTypeInternal {
constexpr CDeviceAuth_GetAuthorizedAsBorrower_ResponseDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_GetAuthorizedAsBorrower_ResponseDefaultTypeInternal() {}
union {
CDeviceAuth_GetAuthorizedAsBorrower_Response _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_GetAuthorizedAsBorrower_ResponseDefaultTypeInternal _CDeviceAuth_GetAuthorizedAsBorrower_Response_default_instance_;
constexpr CDeviceAuth_GetExcludedGamesInLibrary_Request::CDeviceAuth_GetExcludedGamesInLibrary_Request(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: steamid_(uint64_t{0u}){}
struct CDeviceAuth_GetExcludedGamesInLibrary_RequestDefaultTypeInternal {
constexpr CDeviceAuth_GetExcludedGamesInLibrary_RequestDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_GetExcludedGamesInLibrary_RequestDefaultTypeInternal() {}
union {
CDeviceAuth_GetExcludedGamesInLibrary_Request _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_GetExcludedGamesInLibrary_RequestDefaultTypeInternal _CDeviceAuth_GetExcludedGamesInLibrary_Request_default_instance_;
constexpr CDeviceAuth_GetExcludedGamesInLibrary_Response_ExcludedGame::CDeviceAuth_GetExcludedGamesInLibrary_Response_ExcludedGame(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: game_name_(&::PROTOBUF_NAMESPACE_ID::internal::fixed_address_empty_string)
, appid_(0u)
, vac_banned_(false)
, package_excluded_(false){}
struct CDeviceAuth_GetExcludedGamesInLibrary_Response_ExcludedGameDefaultTypeInternal {
constexpr CDeviceAuth_GetExcludedGamesInLibrary_Response_ExcludedGameDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_GetExcludedGamesInLibrary_Response_ExcludedGameDefaultTypeInternal() {}
union {
CDeviceAuth_GetExcludedGamesInLibrary_Response_ExcludedGame _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_GetExcludedGamesInLibrary_Response_ExcludedGameDefaultTypeInternal _CDeviceAuth_GetExcludedGamesInLibrary_Response_ExcludedGame_default_instance_;
constexpr CDeviceAuth_GetExcludedGamesInLibrary_Response::CDeviceAuth_GetExcludedGamesInLibrary_Response(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: excluded_games_(){}
struct CDeviceAuth_GetExcludedGamesInLibrary_ResponseDefaultTypeInternal {
constexpr CDeviceAuth_GetExcludedGamesInLibrary_ResponseDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_GetExcludedGamesInLibrary_ResponseDefaultTypeInternal() {}
union {
CDeviceAuth_GetExcludedGamesInLibrary_Response _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_GetExcludedGamesInLibrary_ResponseDefaultTypeInternal _CDeviceAuth_GetExcludedGamesInLibrary_Response_default_instance_;
constexpr CDeviceAuth_GetBorrowerPlayHistory_Request::CDeviceAuth_GetBorrowerPlayHistory_Request(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: steamid_(uint64_t{0u})
, appid_(0u){}
struct CDeviceAuth_GetBorrowerPlayHistory_RequestDefaultTypeInternal {
constexpr CDeviceAuth_GetBorrowerPlayHistory_RequestDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_GetBorrowerPlayHistory_RequestDefaultTypeInternal() {}
union {
CDeviceAuth_GetBorrowerPlayHistory_Request _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_GetBorrowerPlayHistory_RequestDefaultTypeInternal _CDeviceAuth_GetBorrowerPlayHistory_Request_default_instance_;
constexpr CDeviceAuth_GetBorrowerPlayHistory_Response_GameHistory::CDeviceAuth_GetBorrowerPlayHistory_Response_GameHistory(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: appid_(0u)
, time_last_(0u)
, time_total_(0u){}
struct CDeviceAuth_GetBorrowerPlayHistory_Response_GameHistoryDefaultTypeInternal {
constexpr CDeviceAuth_GetBorrowerPlayHistory_Response_GameHistoryDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_GetBorrowerPlayHistory_Response_GameHistoryDefaultTypeInternal() {}
union {
CDeviceAuth_GetBorrowerPlayHistory_Response_GameHistory _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_GetBorrowerPlayHistory_Response_GameHistoryDefaultTypeInternal _CDeviceAuth_GetBorrowerPlayHistory_Response_GameHistory_default_instance_;
constexpr CDeviceAuth_GetBorrowerPlayHistory_Response_LenderHistory::CDeviceAuth_GetBorrowerPlayHistory_Response_LenderHistory(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: game_history_()
, steamid_(uint64_t{0u}){}
struct CDeviceAuth_GetBorrowerPlayHistory_Response_LenderHistoryDefaultTypeInternal {
constexpr CDeviceAuth_GetBorrowerPlayHistory_Response_LenderHistoryDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_GetBorrowerPlayHistory_Response_LenderHistoryDefaultTypeInternal() {}
union {
CDeviceAuth_GetBorrowerPlayHistory_Response_LenderHistory _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_GetBorrowerPlayHistory_Response_LenderHistoryDefaultTypeInternal _CDeviceAuth_GetBorrowerPlayHistory_Response_LenderHistory_default_instance_;
constexpr CDeviceAuth_GetBorrowerPlayHistory_Response::CDeviceAuth_GetBorrowerPlayHistory_Response(
::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized)
: lender_history_(){}
struct CDeviceAuth_GetBorrowerPlayHistory_ResponseDefaultTypeInternal {
constexpr CDeviceAuth_GetBorrowerPlayHistory_ResponseDefaultTypeInternal()
: _instance(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized{}) {}
~CDeviceAuth_GetBorrowerPlayHistory_ResponseDefaultTypeInternal() {}
union {
CDeviceAuth_GetBorrowerPlayHistory_Response _instance;
};
};
PROTOBUF_ATTRIBUTE_NO_DESTROY PROTOBUF_CONSTINIT CDeviceAuth_GetBorrowerPlayHistory_ResponseDefaultTypeInternal _CDeviceAuth_GetBorrowerPlayHistory_Response_default_instance_;
static ::PROTOBUF_NAMESPACE_ID::Metadata file_level_metadata_steammessages_5fdeviceauth_2esteamclient_2eproto[29];
static constexpr ::PROTOBUF_NAMESPACE_ID::EnumDescriptor const** file_level_enum_descriptors_steammessages_5fdeviceauth_2esteamclient_2eproto = nullptr;
static const ::PROTOBUF_NAMESPACE_ID::ServiceDescriptor* file_level_service_descriptors_steammessages_5fdeviceauth_2esteamclient_2eproto[1];
const uint32_t TableStruct_steammessages_5fdeviceauth_2esteamclient_2eproto::offsets[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = {
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetOwnAuthorizedDevices_Request, _has_bits_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetOwnAuthorizedDevices_Request, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetOwnAuthorizedDevices_Request, steamid_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetOwnAuthorizedDevices_Request, include_canceled_),
0,
1,
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetOwnAuthorizedDevices_Response_Device, _has_bits_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetOwnAuthorizedDevices_Response_Device, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetOwnAuthorizedDevices_Response_Device, auth_device_token_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetOwnAuthorizedDevices_Response_Device, device_name_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetOwnAuthorizedDevices_Response_Device, is_pending_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetOwnAuthorizedDevices_Response_Device, is_canceled_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetOwnAuthorizedDevices_Response_Device, last_time_used_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetOwnAuthorizedDevices_Response_Device, last_borrower_id_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetOwnAuthorizedDevices_Response_Device, last_app_played_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetOwnAuthorizedDevices_Response_Device, is_limited_),
1,
0,
3,
4,
2,
6,
7,
5,
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetOwnAuthorizedDevices_Response, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetOwnAuthorizedDevices_Response, devices_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_AcceptAuthorizationRequest_Request, _has_bits_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_AcceptAuthorizationRequest_Request, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_AcceptAuthorizationRequest_Request, steamid_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_AcceptAuthorizationRequest_Request, auth_device_token_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_AcceptAuthorizationRequest_Request, auth_code_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_AcceptAuthorizationRequest_Request, from_steamid_),
0,
1,
2,
3,
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_AcceptAuthorizationRequest_Response, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_AuthorizeRemoteDevice_Request, _has_bits_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_AuthorizeRemoteDevice_Request, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_AuthorizeRemoteDevice_Request, steamid_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_AuthorizeRemoteDevice_Request, auth_device_token_),
0,
1,
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_AuthorizeRemoteDevice_Response, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_DeauthorizeRemoteDevice_Request, _has_bits_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_DeauthorizeRemoteDevice_Request, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_DeauthorizeRemoteDevice_Request, steamid_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_DeauthorizeRemoteDevice_Request, auth_device_token_),
0,
1,
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_DeauthorizeRemoteDevice_Response, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetUsedAuthorizedDevices_Request, _has_bits_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetUsedAuthorizedDevices_Request, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetUsedAuthorizedDevices_Request, steamid_),
0,
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetUsedAuthorizedDevices_Response_Device, _has_bits_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetUsedAuthorizedDevices_Response_Device, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetUsedAuthorizedDevices_Response_Device, auth_device_token_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetUsedAuthorizedDevices_Response_Device, device_name_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetUsedAuthorizedDevices_Response_Device, owner_steamid_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetUsedAuthorizedDevices_Response_Device, last_time_used_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetUsedAuthorizedDevices_Response_Device, last_app_played_),
1,
0,
2,
3,
4,
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetUsedAuthorizedDevices_Response, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetUsedAuthorizedDevices_Response, devices_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedBorrowers_Request, _has_bits_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedBorrowers_Request, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedBorrowers_Request, steamid_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedBorrowers_Request, include_canceled_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedBorrowers_Request, include_pending_),
0,
1,
2,
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedBorrowers_Response_Borrower, _has_bits_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedBorrowers_Response_Borrower, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedBorrowers_Response_Borrower, steamid_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedBorrowers_Response_Borrower, is_pending_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedBorrowers_Response_Borrower, is_canceled_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedBorrowers_Response_Borrower, time_created_),
0,
1,
2,
3,
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedBorrowers_Response, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedBorrowers_Response, borrowers_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_AddAuthorizedBorrowers_Request, _has_bits_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_AddAuthorizedBorrowers_Request, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_AddAuthorizedBorrowers_Request, steamid_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_AddAuthorizedBorrowers_Request, steamid_borrower_),
0,
~0u,
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_AddAuthorizedBorrowers_Response, _has_bits_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_AddAuthorizedBorrowers_Response, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_AddAuthorizedBorrowers_Response, seconds_to_wait_),
0,
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_RemoveAuthorizedBorrowers_Request, _has_bits_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_RemoveAuthorizedBorrowers_Request, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_RemoveAuthorizedBorrowers_Request, steamid_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_RemoveAuthorizedBorrowers_Request, steamid_borrower_),
0,
~0u,
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_RemoveAuthorizedBorrowers_Response, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedAsBorrower_Request, _has_bits_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedAsBorrower_Request, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedAsBorrower_Request, steamid_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedAsBorrower_Request, include_canceled_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedAsBorrower_Request, include_pending_),
0,
1,
2,
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedAsBorrower_Response_Lender, _has_bits_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedAsBorrower_Response_Lender, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedAsBorrower_Response_Lender, steamid_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedAsBorrower_Response_Lender, time_created_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedAsBorrower_Response_Lender, is_pending_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedAsBorrower_Response_Lender, is_canceled_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedAsBorrower_Response_Lender, is_used_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedAsBorrower_Response_Lender, time_removed_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedAsBorrower_Response_Lender, time_first_),
0,
1,
2,
3,
4,
5,
6,
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedAsBorrower_Response, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetAuthorizedAsBorrower_Response, lenders_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetExcludedGamesInLibrary_Request, _has_bits_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetExcludedGamesInLibrary_Request, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetExcludedGamesInLibrary_Request, steamid_),
0,
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetExcludedGamesInLibrary_Response_ExcludedGame, _has_bits_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetExcludedGamesInLibrary_Response_ExcludedGame, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetExcludedGamesInLibrary_Response_ExcludedGame, appid_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetExcludedGamesInLibrary_Response_ExcludedGame, game_name_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetExcludedGamesInLibrary_Response_ExcludedGame, vac_banned_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetExcludedGamesInLibrary_Response_ExcludedGame, package_excluded_),
1,
0,
2,
3,
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetExcludedGamesInLibrary_Response, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetExcludedGamesInLibrary_Response, excluded_games_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetBorrowerPlayHistory_Request, _has_bits_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetBorrowerPlayHistory_Request, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetBorrowerPlayHistory_Request, steamid_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetBorrowerPlayHistory_Request, appid_),
0,
1,
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetBorrowerPlayHistory_Response_GameHistory, _has_bits_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetBorrowerPlayHistory_Response_GameHistory, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetBorrowerPlayHistory_Response_GameHistory, appid_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetBorrowerPlayHistory_Response_GameHistory, time_last_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetBorrowerPlayHistory_Response_GameHistory, time_total_),
0,
1,
2,
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetBorrowerPlayHistory_Response_LenderHistory, _has_bits_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetBorrowerPlayHistory_Response_LenderHistory, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetBorrowerPlayHistory_Response_LenderHistory, steamid_),
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetBorrowerPlayHistory_Response_LenderHistory, game_history_),
0,
~0u,
~0u, // no _has_bits_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetBorrowerPlayHistory_Response, _internal_metadata_),
~0u, // no _extensions_
~0u, // no _oneof_case_
~0u, // no _weak_field_map_
~0u, // no _inlined_string_donated_
PROTOBUF_FIELD_OFFSET(::CDeviceAuth_GetBorrowerPlayHistory_Response, lender_history_),
};
static const ::PROTOBUF_NAMESPACE_ID::internal::MigrationSchema schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = {
{ 0, 8, -1, sizeof(::CDeviceAuth_GetOwnAuthorizedDevices_Request)},
{ 10, 24, -1, sizeof(::CDeviceAuth_GetOwnAuthorizedDevices_Response_Device)},
{ 32, -1, -1, sizeof(::CDeviceAuth_GetOwnAuthorizedDevices_Response)},
{ 39, 49, -1, sizeof(::CDeviceAuth_AcceptAuthorizationRequest_Request)},
{ 53, -1, -1, sizeof(::CDeviceAuth_AcceptAuthorizationRequest_Response)},
{ 59, 67, -1, sizeof(::CDeviceAuth_AuthorizeRemoteDevice_Request)},
{ 69, -1, -1, sizeof(::CDeviceAuth_AuthorizeRemoteDevice_Response)},
{ 75, 83, -1, sizeof(::CDeviceAuth_DeauthorizeRemoteDevice_Request)},
{ 85, -1, -1, sizeof(::CDeviceAuth_DeauthorizeRemoteDevice_Response)},
{ 91, 98, -1, sizeof(::CDeviceAuth_GetUsedAuthorizedDevices_Request)},
{ 99, 110, -1, sizeof(::CDeviceAuth_GetUsedAuthorizedDevices_Response_Device)},
{ 115, -1, -1, sizeof(::CDeviceAuth_GetUsedAuthorizedDevices_Response)},
{ 122, 131, -1, sizeof(::CDeviceAuth_GetAuthorizedBorrowers_Request)},
{ 134, 144, -1, sizeof(::CDeviceAuth_GetAuthorizedBorrowers_Response_Borrower)},
{ 148, -1, -1, sizeof(::CDeviceAuth_GetAuthorizedBorrowers_Response)},
{ 155, 163, -1, sizeof(::CDeviceAuth_AddAuthorizedBorrowers_Request)},
{ 165, 172, -1, sizeof(::CDeviceAuth_AddAuthorizedBorrowers_Response)},
{ 173, 181, -1, sizeof(::CDeviceAuth_RemoveAuthorizedBorrowers_Request)},
{ 183, -1, -1, sizeof(::CDeviceAuth_RemoveAuthorizedBorrowers_Response)},
{ 189, 198, -1, sizeof(::CDeviceAuth_GetAuthorizedAsBorrower_Request)},
{ 201, 214, -1, sizeof(::CDeviceAuth_GetAuthorizedAsBorrower_Response_Lender)},
{ 221, -1, -1, sizeof(::CDeviceAuth_GetAuthorizedAsBorrower_Response)},
{ 228, 235, -1, sizeof(::CDeviceAuth_GetExcludedGamesInLibrary_Request)},
{ 236, 246, -1, sizeof(::CDeviceAuth_GetExcludedGamesInLibrary_Response_ExcludedGame)},
{ 250, -1, -1, sizeof(::CDeviceAuth_GetExcludedGamesInLibrary_Response)},
{ 257, 265, -1, sizeof(::CDeviceAuth_GetBorrowerPlayHistory_Request)},
{ 267, 276, -1, sizeof(::CDeviceAuth_GetBorrowerPlayHistory_Response_GameHistory)},
{ 279, 287, -1, sizeof(::CDeviceAuth_GetBorrowerPlayHistory_Response_LenderHistory)},
{ 289, -1, -1, sizeof(::CDeviceAuth_GetBorrowerPlayHistory_Response)},
};
static ::PROTOBUF_NAMESPACE_ID::Message const * const file_default_instances[] = {
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_GetOwnAuthorizedDevices_Request_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_GetOwnAuthorizedDevices_Response_Device_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_GetOwnAuthorizedDevices_Response_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_AcceptAuthorizationRequest_Request_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_AcceptAuthorizationRequest_Response_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_AuthorizeRemoteDevice_Request_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_AuthorizeRemoteDevice_Response_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_DeauthorizeRemoteDevice_Request_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_DeauthorizeRemoteDevice_Response_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_GetUsedAuthorizedDevices_Request_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_GetUsedAuthorizedDevices_Response_Device_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_GetUsedAuthorizedDevices_Response_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_GetAuthorizedBorrowers_Request_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_GetAuthorizedBorrowers_Response_Borrower_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_GetAuthorizedBorrowers_Response_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_AddAuthorizedBorrowers_Request_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_AddAuthorizedBorrowers_Response_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_RemoveAuthorizedBorrowers_Request_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_RemoveAuthorizedBorrowers_Response_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_GetAuthorizedAsBorrower_Request_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_GetAuthorizedAsBorrower_Response_Lender_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_GetAuthorizedAsBorrower_Response_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_GetExcludedGamesInLibrary_Request_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_GetExcludedGamesInLibrary_Response_ExcludedGame_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_GetExcludedGamesInLibrary_Response_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_GetBorrowerPlayHistory_Request_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_GetBorrowerPlayHistory_Response_GameHistory_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_GetBorrowerPlayHistory_Response_LenderHistory_default_instance_),
reinterpret_cast<const ::PROTOBUF_NAMESPACE_ID::Message*>(&::_CDeviceAuth_GetBorrowerPlayHistory_Response_default_instance_),
};
const char descriptor_table_protodef_steammessages_5fdeviceauth_2esteamclient_2eproto[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) =
"\n*steammessages_deviceauth.steamclient.p"
"roto\032\030steammessages_base.proto\032,steammes"
"sages_unified_base.steamclient.proto\"X\n+"
"CDeviceAuth_GetOwnAuthorizedDevices_Requ"
"est\022\017\n\007steamid\030\001 \001(\006\022\030\n\020include_canceled"
"\030\002 \001(\010\"\270\002\n,CDeviceAuth_GetOwnAuthorizedD"
"evices_Response\022E\n\007devices\030\001 \003(\01324.CDevi"
"ceAuth_GetOwnAuthorizedDevices_Response."
"Device\032\300\001\n\006Device\022\031\n\021auth_device_token\030\001"
" \001(\006\022\023\n\013device_name\030\002 \001(\t\022\022\n\nis_pending\030"
"\003 \001(\010\022\023\n\013is_canceled\030\004 \001(\010\022\026\n\016last_time_"
"used\030\005 \001(\r\022\030\n\020last_borrower_id\030\006 \001(\006\022\027\n\017"
"last_app_played\030\007 \001(\r\022\022\n\nis_limited\030\010 \001("
"\010\"\205\001\n.CDeviceAuth_AcceptAuthorizationReq"
"uest_Request\022\017\n\007steamid\030\001 \001(\006\022\031\n\021auth_de"
"vice_token\030\002 \001(\006\022\021\n\tauth_code\030\003 \001(\006\022\024\n\014f"
"rom_steamid\030\004 \001(\006\"1\n/CDeviceAuth_AcceptA"
"uthorizationRequest_Response\"W\n)CDeviceA"
"uth_AuthorizeRemoteDevice_Request\022\017\n\007ste"
"amid\030\001 \001(\006\022\031\n\021auth_device_token\030\002 \001(\006\",\n"
"*CDeviceAuth_AuthorizeRemoteDevice_Respo"
"nse\"Y\n+CDeviceAuth_DeauthorizeRemoteDevi"
"ce_Request\022\017\n\007steamid\030\001 \001(\006\022\031\n\021auth_devi"
"ce_token\030\002 \001(\006\".\n,CDeviceAuth_Deauthoriz"
"eRemoteDevice_Response\"\?\n,CDeviceAuth_Ge"
"tUsedAuthorizedDevices_Request\022\017\n\007steami"
"d\030\001 \001(\006\"\372\001\n-CDeviceAuth_GetUsedAuthorize"
"dDevices_Response\022F\n\007devices\030\001 \003(\01325.CDe"
"viceAuth_GetUsedAuthorizedDevices_Respon"
"se.Device\032\200\001\n\006Device\022\031\n\021auth_device_toke"
"n\030\001 \001(\006\022\023\n\013device_name\030\002 \001(\t\022\025\n\rowner_st"
"eamid\030\003 \001(\006\022\026\n\016last_time_used\030\004 \001(\r\022\027\n\017l"
"ast_app_played\030\005 \001(\r\"p\n*CDeviceAuth_GetA"
"uthorizedBorrowers_Request\022\017\n\007steamid\030\001 "
"\001(\006\022\030\n\020include_canceled\030\002 \001(\010\022\027\n\017include"
"_pending\030\003 \001(\010\"\323\001\n+CDeviceAuth_GetAuthor"
"izedBorrowers_Response\022H\n\tborrowers\030\001 \003("
"\01325.CDeviceAuth_GetAuthorizedBorrowers_R"
"esponse.Borrower\032Z\n\010Borrower\022\017\n\007steamid\030"
"\001 \001(\006\022\022\n\nis_pending\030\002 \001(\010\022\023\n\013is_canceled"
"\030\003 \001(\010\022\024\n\014time_created\030\004 \001(\r\"W\n*CDeviceA"
"uth_AddAuthorizedBorrowers_Request\022\017\n\007st"
"eamid\030\001 \001(\006\022\030\n\020steamid_borrower\030\002 \003(\006\"F\n"
"+CDeviceAuth_AddAuthorizedBorrowers_Resp"
"onse\022\027\n\017seconds_to_wait\030\001 \001(\005\"Z\n-CDevice"
"Auth_RemoveAuthorizedBorrowers_Request\022\017"
"\n\007steamid\030\001 \001(\006\022\030\n\020steamid_borrower\030\002 \003("
"\006\"0\n.CDeviceAuth_RemoveAuthorizedBorrowe"
"rs_Response\"q\n+CDeviceAuth_GetAuthorized"
"AsBorrower_Request\022\017\n\007steamid\030\001 \001(\006\022\030\n\020i"
"nclude_canceled\030\002 \001(\010\022\027\n\017include_pending"
"\030\003 \001(\010\"\213\002\n,CDeviceAuth_GetAuthorizedAsBo"
"rrower_Response\022E\n\007lenders\030\001 \003(\01324.CDevi"
"ceAuth_GetAuthorizedAsBorrower_Response."
"Lender\032\223\001\n\006Lender\022\017\n\007steamid\030\001 \001(\006\022\024\n\014ti"
"me_created\030\002 \001(\r\022\022\n\nis_pending\030\003 \001(\010\022\023\n\013"
"is_canceled\030\004 \001(\010\022\017\n\007is_used\030\005 \001(\010\022\024\n\014ti"
"me_removed\030\006 \001(\r\022\022\n\ntime_first\030\007 \001(\r\"@\n-"
"CDeviceAuth_GetExcludedGamesInLibrary_Re"
"quest\022\017\n\007steamid\030\001 \001(\006\"\346\001\n.CDeviceAuth_G"
"etExcludedGamesInLibrary_Response\022T\n\016exc"
"luded_games\030\001 \003(\0132<.CDeviceAuth_GetExclu"
"dedGamesInLibrary_Response.ExcludedGame\032"
"^\n\014ExcludedGame\022\r\n\005appid\030\001 \001(\r\022\021\n\tgame_n"
"ame\030\002 \001(\t\022\022\n\nvac_banned\030\003 \001(\010\022\030\n\020package"
"_excluded\030\004 \001(\010\"L\n*CDeviceAuth_GetBorrow"
"erPlayHistory_Request\022\017\n\007steamid\030\001 \001(\006\022\r"
"\n\005appid\030\002 \001(\r\"\270\002\n+CDeviceAuth_GetBorrowe"
"rPlayHistory_Response\022R\n\016lender_history\030"
"\001 \003(\0132:.CDeviceAuth_GetBorrowerPlayHisto"
"ry_Response.LenderHistory\032C\n\013GameHistory"
"\022\r\n\005appid\030\001 \001(\r\022\021\n\ttime_last\030\002 \001(\r\022\022\n\nti"
"me_total\030\003 \001(\r\032p\n\rLenderHistory\022\017\n\007steam"
"id\030\001 \001(\006\022N\n\014game_history\030\002 \003(\01328.CDevice"
"Auth_GetBorrowerPlayHistory_Response.Gam"
"eHistory2\302\017\n\nDeviceAuth\022\232\001\n\027GetOwnAuthor"
"izedDevices\022,.CDeviceAuth_GetOwnAuthoriz"
"edDevices_Request\032-.CDeviceAuth_GetOwnAu"
"thorizedDevices_Response\"\"\202\265\030\036Get list o"
"f authorized devices\022\265\001\n\032AcceptAuthoriza"
"tionRequest\022/.CDeviceAuth_AcceptAuthoriz"
"ationRequest_Request\0320.CDeviceAuth_Accep"
"tAuthorizationRequest_Response\"4\202\265\0300Acce"
"pt an authorization request by another u"
"sers\022\252\001\n\025AuthorizeRemoteDevice\022*.CDevice"
"Auth_AuthorizeRemoteDevice_Request\032+.CDe"
"viceAuth_AuthorizeRemoteDevice_Response\""
"8\202\265\0304Authorize own remote device that ha"
"s pending request\022\233\001\n\027DeauthorizeRemoteD"
"evice\022,.CDeviceAuth_DeauthorizeRemoteDev"
"ice_Request\032-.CDeviceAuth_DeauthorizeRem"
"oteDevice_Response\"#\202\265\030\037Revoke own devic"
"e authorization\022\273\001\n\030GetUsedAuthorizedDev"
"ices\022-.CDeviceAuth_GetUsedAuthorizedDevi"
"ces_Request\032..CDeviceAuth_GetUsedAuthori"
"zedDevices_Response\"@\202\265\030<Get list of aut"
"horized devices user played borrowed gam"
"es on\022\262\001\n\026GetAuthorizedBorrowers\022+.CDevi"
"ceAuth_GetAuthorizedBorrowers_Request\032,."
"CDeviceAuth_GetAuthorizedBorrowers_Respo"
"nse\"=\202\265\0309Get list of users that can borr"
"ow on an authorized device\022\260\001\n\026AddAuthor"
"izedBorrowers\022+.CDeviceAuth_AddAuthorize"
"dBorrowers_Request\032,.CDeviceAuth_AddAuth"
"orizedBorrowers_Response\";\202\265\0307Add users "
"that can borrow on limited authorized de"
"vices\022\274\001\n\031RemoveAuthorizedBorrowers\022..CD"
"eviceAuth_RemoveAuthorizedBorrowers_Requ"
"est\032/.CDeviceAuth_RemoveAuthorizedBorrow"
"ers_Response\">\202\265\030:Remove users that can "
"borrow on limited authorized devices\022\271\001\n"
"\027GetAuthorizedAsBorrower\022,.CDeviceAuth_G"
"etAuthorizedAsBorrower_Request\032-.CDevice"
"Auth_GetAuthorizedAsBorrower_Response\"A\202"
"\265\030=Get list of lenders that authorized g"
"iven account as borrower\022\257\001\n\031GetExcluded"
"GamesInLibrary\022..CDeviceAuth_GetExcluded"
"GamesInLibrary_Request\032/.CDeviceAuth_Get"
"ExcludedGamesInLibrary_Response\"1\202\265\030-Get"
" list of excluded games in lenders libra"
"ry\022\232\001\n\026GetBorrowerPlayHistory\022+.CDeviceA"
"uth_GetBorrowerPlayHistory_Request\032,.CDe"
"viceAuth_GetBorrowerPlayHistory_Response"
"\"%\202\265\030!Get list played games as borrower\032"
"$\202\265\030 Library Sharing settings serviceB\003\200"
"\001\001"
;
static const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable*const descriptor_table_steammessages_5fdeviceauth_2esteamclient_2eproto_deps[2] = {
&::descriptor_table_steammessages_5fbase_2eproto,
&::descriptor_table_steammessages_5funified_5fbase_2esteamclient_2eproto,
};
static ::PROTOBUF_NAMESPACE_ID::internal::once_flag descriptor_table_steammessages_5fdeviceauth_2esteamclient_2eproto_once;
const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_steammessages_5fdeviceauth_2esteamclient_2eproto = {
false, false, 5002, descriptor_table_protodef_steammessages_5fdeviceauth_2esteamclient_2eproto, "steammessages_deviceauth.steamclient.proto",
&descriptor_table_steammessages_5fdeviceauth_2esteamclient_2eproto_once, descriptor_table_steammessages_5fdeviceauth_2esteamclient_2eproto_deps, 2, 29,
schemas, file_default_instances, TableStruct_steammessages_5fdeviceauth_2esteamclient_2eproto::offsets,
file_level_metadata_steammessages_5fdeviceauth_2esteamclient_2eproto, file_level_enum_descriptors_steammessages_5fdeviceauth_2esteamclient_2eproto, file_level_service_descriptors_steammessages_5fdeviceauth_2esteamclient_2eproto,
};
PROTOBUF_ATTRIBUTE_WEAK const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable* descriptor_table_steammessages_5fdeviceauth_2esteamclient_2eproto_getter() {
return &descriptor_table_steammessages_5fdeviceauth_2esteamclient_2eproto;
}
// Force running AddDescriptors() at dynamic initialization time.
PROTOBUF_ATTRIBUTE_INIT_PRIORITY static ::PROTOBUF_NAMESPACE_ID::internal::AddDescriptorsRunner dynamic_init_dummy_steammessages_5fdeviceauth_2esteamclient_2eproto(&descriptor_table_steammessages_5fdeviceauth_2esteamclient_2eproto);
// ===================================================================
class CDeviceAuth_GetOwnAuthorizedDevices_Request::_Internal {
public:
using HasBits = decltype(std::declval<CDeviceAuth_GetOwnAuthorizedDevices_Request>()._has_bits_);
static void set_has_steamid(HasBits* has_bits) {
(*has_bits)[0] |= 1u;
}
static void set_has_include_canceled(HasBits* has_bits) {
(*has_bits)[0] |= 2u;
}
};
CDeviceAuth_GetOwnAuthorizedDevices_Request::CDeviceAuth_GetOwnAuthorizedDevices_Request(::PROTOBUF_NAMESPACE_ID::Arena* arena,
bool is_message_owned)
: ::PROTOBUF_NAMESPACE_ID::Message(arena, is_message_owned) {
SharedCtor();
if (!is_message_owned) {
RegisterArenaDtor(arena);
}
// @@protoc_insertion_point(arena_constructor:CDeviceAuth_GetOwnAuthorizedDevices_Request)
}
CDeviceAuth_GetOwnAuthorizedDevices_Request::CDeviceAuth_GetOwnAuthorizedDevices_Request(const CDeviceAuth_GetOwnAuthorizedDevices_Request& from)
: ::PROTOBUF_NAMESPACE_ID::Message(),
_has_bits_(from._has_bits_) {
_internal_metadata_.MergeFrom<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(from._internal_metadata_);
::memcpy(&steamid_, &from.steamid_,
static_cast<size_t>(reinterpret_cast<char*>(&include_canceled_) -
reinterpret_cast<char*>(&steamid_)) + sizeof(include_canceled_));
// @@protoc_insertion_point(copy_constructor:CDeviceAuth_GetOwnAuthorizedDevices_Request)
}
inline void CDeviceAuth_GetOwnAuthorizedDevices_Request::SharedCtor() {
::memset(reinterpret_cast<char*>(this) + static_cast<size_t>(
reinterpret_cast<char*>(&steamid_) - reinterpret_cast<char*>(this)),
0, static_cast<size_t>(reinterpret_cast<char*>(&include_canceled_) -
reinterpret_cast<char*>(&steamid_)) + sizeof(include_canceled_));
}
CDeviceAuth_GetOwnAuthorizedDevices_Request::~CDeviceAuth_GetOwnAuthorizedDevices_Request() {
// @@protoc_insertion_point(destructor:CDeviceAuth_GetOwnAuthorizedDevices_Request)
if (GetArenaForAllocation() != nullptr) return;
SharedDtor();
_internal_metadata_.Delete<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>();
}
inline void CDeviceAuth_GetOwnAuthorizedDevices_Request::SharedDtor() {
GOOGLE_DCHECK(GetArenaForAllocation() == nullptr);
}
void CDeviceAuth_GetOwnAuthorizedDevices_Request::ArenaDtor(void* object) {
CDeviceAuth_GetOwnAuthorizedDevices_Request* _this = reinterpret_cast< CDeviceAuth_GetOwnAuthorizedDevices_Request* >(object);
(void)_this;
}
void CDeviceAuth_GetOwnAuthorizedDevices_Request::RegisterArenaDtor(::PROTOBUF_NAMESPACE_ID::Arena*) {
}
void CDeviceAuth_GetOwnAuthorizedDevices_Request::SetCachedSize(int size) const {
_cached_size_.Set(size);
}
void CDeviceAuth_GetOwnAuthorizedDevices_Request::Clear() {
// @@protoc_insertion_point(message_clear_start:CDeviceAuth_GetOwnAuthorizedDevices_Request)
uint32_t cached_has_bits = 0;
// Prevent compiler warnings about cached_has_bits being unused
(void) cached_has_bits;
cached_has_bits = _has_bits_[0];
if (cached_has_bits & 0x00000003u) {
::memset(&steamid_, 0, static_cast<size_t>(
reinterpret_cast<char*>(&include_canceled_) -
reinterpret_cast<char*>(&steamid_)) + sizeof(include_canceled_));
}
_has_bits_.Clear();
_internal_metadata_.Clear<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>();
}
const char* CDeviceAuth_GetOwnAuthorizedDevices_Request::_InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) {
#define CHK_(x) if (PROTOBUF_PREDICT_FALSE(!(x))) goto failure
_Internal::HasBits has_bits{};
while (!ctx->Done(&ptr)) {
uint32_t tag;
ptr = ::PROTOBUF_NAMESPACE_ID::internal::ReadTag(ptr, &tag);
switch (tag >> 3) {
// optional fixed64 steamid = 1;
case 1:
if (PROTOBUF_PREDICT_TRUE(static_cast<uint8_t>(tag) == 9)) {
_Internal::set_has_steamid(&has_bits);