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
|
/* Generated by the protocol buffer compiler. DO NOT EDIT! */
/* Generated from: steammessages_clientserver_friends.proto */
#ifndef PROTOBUF_C_steammessages_5fclientserver_5ffriends_2eproto__INCLUDED
#define PROTOBUF_C_steammessages_5fclientserver_5ffriends_2eproto__INCLUDED
#include "protobuf-c.h"
PROTOBUF_C__BEGIN_DECLS
#if PROTOBUF_C_VERSION_NUMBER < 1000000
# error This file was generated by a newer version of protoc-c which is incompatible with your libprotobuf-c headers. Please update your headers.
#elif 1004001 < PROTOBUF_C_MIN_COMPILER_VERSION
# error This file was generated by an older version of protoc-c which is incompatible with your libprotobuf-c headers. Please regenerate this file with a newer version of protoc-c.
#endif
#include "steammessages_base.pb-c.h"
struct CMsgClientFriendMsg;
struct CMsgClientFriendMsgIncoming;
struct CMsgClientAddFriend;
struct CMsgClientAddFriendResponse;
struct CMsgClientRemoveFriend;
struct CMsgClientHideFriend;
struct CMsgClientFriendsList;
struct CMsgClientFriendsList__Friend;
struct CMsgClientFriendsGroupsList;
struct CMsgClientFriendsGroupsList__FriendGroup;
struct CMsgClientFriendsGroupsList__FriendGroupsMembership;
struct CMsgClientPlayerNicknameList;
struct CMsgClientPlayerNicknameList__PlayerNickname;
struct CMsgClientSetPlayerNickname;
struct CMsgClientSetPlayerNicknameResponse;
struct CMsgClientRequestFriendData;
struct CMsgClientChangeStatus;
struct CMsgPersonaChangeResponse;
struct CMsgClientPersonaState;
struct CMsgClientPersonaState__Friend;
struct CMsgClientPersonaState__Friend__ClanData;
struct CMsgClientPersonaState__Friend__KV;
struct CMsgClientFriendProfileInfo;
struct CMsgClientFriendProfileInfoResponse;
struct CMsgClientCreateFriendsGroup;
struct CMsgClientCreateFriendsGroupResponse;
struct CMsgClientDeleteFriendsGroup;
struct CMsgClientDeleteFriendsGroupResponse;
struct CMsgClientManageFriendsGroup;
struct CMsgClientManageFriendsGroupResponse;
struct CMsgClientAddFriendToGroup;
struct CMsgClientAddFriendToGroupResponse;
struct CMsgClientRemoveFriendFromGroup;
struct CMsgClientRemoveFriendFromGroupResponse;
struct CMsgClientGetEmoticonList;
struct CMsgClientEmoticonList;
struct CMsgClientEmoticonList__Emoticon;
struct CMsgClientEmoticonList__Sticker;
struct CMsgClientEmoticonList__Effect;
/* --- enums --- */
/* --- descriptors --- */
extern const ProtobufCMessageDescriptor cmsg_client_friend_msg__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_friend_msg_incoming__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_add_friend__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_add_friend_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_remove_friend__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_hide_friend__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_friends_list__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_friends_list__friend__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_friends_groups_list__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_friends_groups_list__friend_group__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_friends_groups_list__friend_groups_membership__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_player_nickname_list__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_player_nickname_list__player_nickname__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_set_player_nickname__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_set_player_nickname_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_request_friend_data__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_change_status__descriptor;
extern const ProtobufCMessageDescriptor cmsg_persona_change_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_persona_state__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_persona_state__friend__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_persona_state__friend__clan_data__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_persona_state__friend__kv__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_friend_profile_info__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_friend_profile_info_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_create_friends_group__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_create_friends_group_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_delete_friends_group__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_delete_friends_group_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_manage_friends_group__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_manage_friends_group_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_add_friend_to_group__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_add_friend_to_group_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_remove_friend_from_group__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_remove_friend_from_group_response__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_get_emoticon_list__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_emoticon_list__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_emoticon_list__emoticon__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_emoticon_list__sticker__descriptor;
extern const ProtobufCMessageDescriptor cmsg_client_emoticon_list__effect__descriptor;
/* --- messages --- */
extern "C" void message_init_generic(const ProtobufCMessageDescriptor * desc, ProtobufCMessage * message);
struct CMsgClientFriendMsg : public ProtobufCppMessage
{
CMsgClientFriendMsg() :
ProtobufCppMessage(cmsg_client_friend_msg__descriptor)
{}
protobuf_c_boolean has_steamid;
uint64_t steamid;
protobuf_c_boolean has_chat_entry_type;
int32_t chat_entry_type;
protobuf_c_boolean has_message;
ProtobufCBinaryData message;
protobuf_c_boolean has_rtime32_server_timestamp;
uint32_t rtime32_server_timestamp;
protobuf_c_boolean has_echo_to_sender;
protobuf_c_boolean echo_to_sender;
};
struct CMsgClientFriendMsgIncoming : public ProtobufCppMessage
{
CMsgClientFriendMsgIncoming() :
ProtobufCppMessage(cmsg_client_friend_msg_incoming__descriptor)
{}
protobuf_c_boolean has_steamid_from;
uint64_t steamid_from;
protobuf_c_boolean has_chat_entry_type;
int32_t chat_entry_type;
protobuf_c_boolean has_from_limited_account;
protobuf_c_boolean from_limited_account;
protobuf_c_boolean has_message;
ProtobufCBinaryData message;
protobuf_c_boolean has_rtime32_server_timestamp;
uint32_t rtime32_server_timestamp;
};
struct CMsgClientAddFriend : public ProtobufCppMessage
{
CMsgClientAddFriend() :
ProtobufCppMessage(cmsg_client_add_friend__descriptor)
{}
protobuf_c_boolean has_steamid_to_add;
uint64_t steamid_to_add;
char *accountname_or_email_to_add;
};
struct CMsgClientAddFriendResponse : public ProtobufCppMessage
{
CMsgClientAddFriendResponse() :
ProtobufCppMessage(cmsg_client_add_friend_response__descriptor)
{}
protobuf_c_boolean has_eresult;
int32_t eresult;
protobuf_c_boolean has_steam_id_added;
uint64_t steam_id_added;
char *persona_name_added;
};
struct CMsgClientRemoveFriend : public ProtobufCppMessage
{
CMsgClientRemoveFriend() :
ProtobufCppMessage(cmsg_client_remove_friend__descriptor)
{}
protobuf_c_boolean has_friendid;
uint64_t friendid;
};
struct CMsgClientHideFriend : public ProtobufCppMessage
{
CMsgClientHideFriend() :
ProtobufCppMessage(cmsg_client_hide_friend__descriptor)
{}
protobuf_c_boolean has_friendid;
uint64_t friendid;
protobuf_c_boolean has_hide;
protobuf_c_boolean hide;
};
struct CMsgClientFriendsList__Friend : public ProtobufCppMessage
{
CMsgClientFriendsList__Friend() :
ProtobufCppMessage(cmsg_client_friends_list__friend__descriptor)
{}
protobuf_c_boolean has_ulfriendid;
uint64_t ulfriendid;
protobuf_c_boolean has_efriendrelationship;
uint32_t efriendrelationship;
};
struct CMsgClientFriendsList : public ProtobufCppMessage
{
CMsgClientFriendsList() :
ProtobufCppMessage(cmsg_client_friends_list__descriptor)
{}
protobuf_c_boolean has_bincremental;
protobuf_c_boolean bincremental;
size_t n_friends;
CMsgClientFriendsList__Friend **friends;
protobuf_c_boolean has_max_friend_count;
uint32_t max_friend_count;
protobuf_c_boolean has_active_friend_count;
uint32_t active_friend_count;
protobuf_c_boolean has_friends_limit_hit;
protobuf_c_boolean friends_limit_hit;
};
struct CMsgClientFriendsGroupsList__FriendGroup : public ProtobufCppMessage
{
CMsgClientFriendsGroupsList__FriendGroup() :
ProtobufCppMessage(cmsg_client_friends_groups_list__friend_group__descriptor)
{}
protobuf_c_boolean has_ngroupid;
int32_t ngroupid;
char *strgroupname;
};
struct CMsgClientFriendsGroupsList__FriendGroupsMembership : public ProtobufCppMessage
{
CMsgClientFriendsGroupsList__FriendGroupsMembership() :
ProtobufCppMessage(cmsg_client_friends_groups_list__friend_groups_membership__descriptor)
{}
protobuf_c_boolean has_ulsteamid;
uint64_t ulsteamid;
protobuf_c_boolean has_ngroupid;
int32_t ngroupid;
};
struct CMsgClientFriendsGroupsList : public ProtobufCppMessage
{
CMsgClientFriendsGroupsList() :
ProtobufCppMessage(cmsg_client_friends_groups_list__descriptor)
{}
protobuf_c_boolean has_bremoval;
protobuf_c_boolean bremoval;
protobuf_c_boolean has_bincremental;
protobuf_c_boolean bincremental;
size_t n_friendgroups;
CMsgClientFriendsGroupsList__FriendGroup **friendgroups;
size_t n_memberships;
CMsgClientFriendsGroupsList__FriendGroupsMembership **memberships;
};
struct CMsgClientPlayerNicknameList__PlayerNickname : public ProtobufCppMessage
{
CMsgClientPlayerNicknameList__PlayerNickname() :
ProtobufCppMessage(cmsg_client_player_nickname_list__player_nickname__descriptor)
{}
protobuf_c_boolean has_steamid;
uint64_t steamid;
char *nickname;
};
struct CMsgClientPlayerNicknameList : public ProtobufCppMessage
{
CMsgClientPlayerNicknameList() :
ProtobufCppMessage(cmsg_client_player_nickname_list__descriptor)
{}
protobuf_c_boolean has_removal;
protobuf_c_boolean removal;
protobuf_c_boolean has_incremental;
protobuf_c_boolean incremental;
size_t n_nicknames;
CMsgClientPlayerNicknameList__PlayerNickname **nicknames;
};
struct CMsgClientSetPlayerNickname : public ProtobufCppMessage
{
CMsgClientSetPlayerNickname() :
ProtobufCppMessage(cmsg_client_set_player_nickname__descriptor)
{}
protobuf_c_boolean has_steamid;
uint64_t steamid;
char *nickname;
};
struct CMsgClientSetPlayerNicknameResponse : public ProtobufCppMessage
{
CMsgClientSetPlayerNicknameResponse() :
ProtobufCppMessage(cmsg_client_set_player_nickname_response__descriptor)
{}
protobuf_c_boolean has_eresult;
uint32_t eresult;
};
struct CMsgClientRequestFriendData : public ProtobufCppMessage
{
CMsgClientRequestFriendData() :
ProtobufCppMessage(cmsg_client_request_friend_data__descriptor)
{}
protobuf_c_boolean has_persona_state_requested;
uint32_t persona_state_requested;
size_t n_friends;
uint64_t *friends;
};
struct CMsgClientChangeStatus : public ProtobufCppMessage
{
CMsgClientChangeStatus() :
ProtobufCppMessage(cmsg_client_change_status__descriptor)
{}
protobuf_c_boolean has_persona_state;
uint32_t persona_state;
char *player_name;
protobuf_c_boolean has_is_auto_generated_name;
protobuf_c_boolean is_auto_generated_name;
protobuf_c_boolean has_high_priority;
protobuf_c_boolean high_priority;
protobuf_c_boolean has_persona_set_by_user;
protobuf_c_boolean persona_set_by_user;
protobuf_c_boolean has_persona_state_flags;
uint32_t persona_state_flags;
protobuf_c_boolean has_need_persona_response;
protobuf_c_boolean need_persona_response;
protobuf_c_boolean has_is_client_idle;
protobuf_c_boolean is_client_idle;
};
struct CMsgPersonaChangeResponse : public ProtobufCppMessage
{
CMsgPersonaChangeResponse() :
ProtobufCppMessage(cmsg_persona_change_response__descriptor)
{}
protobuf_c_boolean has_result;
uint32_t result;
char *player_name;
};
struct CMsgClientPersonaState__Friend__ClanData : public ProtobufCppMessage
{
CMsgClientPersonaState__Friend__ClanData() :
ProtobufCppMessage(cmsg_client_persona_state__friend__clan_data__descriptor)
{}
protobuf_c_boolean has_ogg_app_id;
uint32_t ogg_app_id;
protobuf_c_boolean has_chat_group_id;
uint64_t chat_group_id;
};
struct CMsgClientPersonaState__Friend__KV : public ProtobufCppMessage
{
CMsgClientPersonaState__Friend__KV() :
ProtobufCppMessage(cmsg_client_persona_state__friend__kv__descriptor)
{}
char *key;
char *value;
};
struct CMsgClientPersonaState__Friend : public ProtobufCppMessage
{
CMsgClientPersonaState__Friend() :
ProtobufCppMessage(cmsg_client_persona_state__friend__descriptor)
{}
protobuf_c_boolean has_friendid;
uint64_t friendid;
protobuf_c_boolean has_persona_state;
uint32_t persona_state;
protobuf_c_boolean has_game_played_app_id;
uint32_t game_played_app_id;
protobuf_c_boolean has_game_server_ip;
uint32_t game_server_ip;
protobuf_c_boolean has_game_server_port;
uint32_t game_server_port;
protobuf_c_boolean has_persona_state_flags;
uint32_t persona_state_flags;
protobuf_c_boolean has_online_session_instances;
uint32_t online_session_instances;
protobuf_c_boolean has_persona_set_by_user;
protobuf_c_boolean persona_set_by_user;
char *player_name;
protobuf_c_boolean has_query_port;
uint32_t query_port;
protobuf_c_boolean has_steamid_source;
uint64_t steamid_source;
protobuf_c_boolean has_avatar_hash;
ProtobufCBinaryData avatar_hash;
protobuf_c_boolean has_last_logoff;
uint32_t last_logoff;
protobuf_c_boolean has_last_logon;
uint32_t last_logon;
protobuf_c_boolean has_last_seen_online;
uint32_t last_seen_online;
protobuf_c_boolean has_clan_rank;
uint32_t clan_rank;
char *game_name;
protobuf_c_boolean has_gameid;
uint64_t gameid;
protobuf_c_boolean has_game_data_blob;
ProtobufCBinaryData game_data_blob;
CMsgClientPersonaState__Friend__ClanData *clan_data;
char *clan_tag;
size_t n_rich_presence;
CMsgClientPersonaState__Friend__KV **rich_presence;
protobuf_c_boolean has_broadcast_id;
uint64_t broadcast_id;
protobuf_c_boolean has_game_lobby_id;
uint64_t game_lobby_id;
protobuf_c_boolean has_watching_broadcast_accountid;
uint32_t watching_broadcast_accountid;
protobuf_c_boolean has_watching_broadcast_appid;
uint32_t watching_broadcast_appid;
protobuf_c_boolean has_watching_broadcast_viewers;
uint32_t watching_broadcast_viewers;
char *watching_broadcast_title;
protobuf_c_boolean has_is_community_banned;
protobuf_c_boolean is_community_banned;
protobuf_c_boolean has_player_name_pending_review;
protobuf_c_boolean player_name_pending_review;
protobuf_c_boolean has_avatar_pending_review;
protobuf_c_boolean avatar_pending_review;
};
struct CMsgClientPersonaState : public ProtobufCppMessage
{
CMsgClientPersonaState() :
ProtobufCppMessage(cmsg_client_persona_state__descriptor)
{}
protobuf_c_boolean has_status_flags;
uint32_t status_flags;
size_t n_friends;
CMsgClientPersonaState__Friend **friends;
};
struct CMsgClientFriendProfileInfo : public ProtobufCppMessage
{
CMsgClientFriendProfileInfo() :
ProtobufCppMessage(cmsg_client_friend_profile_info__descriptor)
{}
protobuf_c_boolean has_steamid_friend;
uint64_t steamid_friend;
};
struct CMsgClientFriendProfileInfoResponse : public ProtobufCppMessage
{
CMsgClientFriendProfileInfoResponse() :
ProtobufCppMessage(cmsg_client_friend_profile_info_response__descriptor)
{}
protobuf_c_boolean has_eresult;
int32_t eresult;
protobuf_c_boolean has_steamid_friend;
uint64_t steamid_friend;
protobuf_c_boolean has_time_created;
uint32_t time_created;
char *real_name;
char *city_name;
char *state_name;
char *country_name;
char *headline;
char *summary;
};
struct CMsgClientCreateFriendsGroup : public ProtobufCppMessage
{
CMsgClientCreateFriendsGroup() :
ProtobufCppMessage(cmsg_client_create_friends_group__descriptor)
{}
protobuf_c_boolean has_steamid;
uint64_t steamid;
char *groupname;
size_t n_steamid_friends;
uint64_t *steamid_friends;
};
struct CMsgClientCreateFriendsGroupResponse : public ProtobufCppMessage
{
CMsgClientCreateFriendsGroupResponse() :
ProtobufCppMessage(cmsg_client_create_friends_group_response__descriptor)
{}
protobuf_c_boolean has_eresult;
uint32_t eresult;
protobuf_c_boolean has_groupid;
int32_t groupid;
};
struct CMsgClientDeleteFriendsGroup : public ProtobufCppMessage
{
CMsgClientDeleteFriendsGroup() :
ProtobufCppMessage(cmsg_client_delete_friends_group__descriptor)
{}
protobuf_c_boolean has_steamid;
uint64_t steamid;
protobuf_c_boolean has_groupid;
int32_t groupid;
};
struct CMsgClientDeleteFriendsGroupResponse : public ProtobufCppMessage
{
CMsgClientDeleteFriendsGroupResponse() :
ProtobufCppMessage(cmsg_client_delete_friends_group_response__descriptor)
{}
protobuf_c_boolean has_eresult;
uint32_t eresult;
};
struct CMsgClientManageFriendsGroup : public ProtobufCppMessage
{
CMsgClientManageFriendsGroup() :
ProtobufCppMessage(cmsg_client_manage_friends_group__descriptor)
{}
protobuf_c_boolean has_groupid;
int32_t groupid;
char *groupname;
size_t n_steamid_friends_added;
uint64_t *steamid_friends_added;
size_t n_steamid_friends_removed;
uint64_t *steamid_friends_removed;
};
struct CMsgClientManageFriendsGroupResponse : public ProtobufCppMessage
{
CMsgClientManageFriendsGroupResponse() :
ProtobufCppMessage(cmsg_client_manage_friends_group_response__descriptor)
{}
protobuf_c_boolean has_eresult;
uint32_t eresult;
};
struct CMsgClientAddFriendToGroup : public ProtobufCppMessage
{
CMsgClientAddFriendToGroup() :
ProtobufCppMessage(cmsg_client_add_friend_to_group__descriptor)
{}
protobuf_c_boolean has_groupid;
int32_t groupid;
protobuf_c_boolean has_steamiduser;
uint64_t steamiduser;
};
struct CMsgClientAddFriendToGroupResponse : public ProtobufCppMessage
{
CMsgClientAddFriendToGroupResponse() :
ProtobufCppMessage(cmsg_client_add_friend_to_group_response__descriptor)
{}
protobuf_c_boolean has_eresult;
uint32_t eresult;
};
struct CMsgClientRemoveFriendFromGroup : public ProtobufCppMessage
{
CMsgClientRemoveFriendFromGroup() :
ProtobufCppMessage(cmsg_client_remove_friend_from_group__descriptor)
{}
protobuf_c_boolean has_groupid;
int32_t groupid;
protobuf_c_boolean has_steamiduser;
uint64_t steamiduser;
};
struct CMsgClientRemoveFriendFromGroupResponse : public ProtobufCppMessage
{
CMsgClientRemoveFriendFromGroupResponse() :
ProtobufCppMessage(cmsg_client_remove_friend_from_group_response__descriptor)
{}
protobuf_c_boolean has_eresult;
uint32_t eresult;
};
struct CMsgClientGetEmoticonList : public ProtobufCppMessage
{
CMsgClientGetEmoticonList() :
ProtobufCppMessage(cmsg_client_get_emoticon_list__descriptor)
{}
};
struct CMsgClientEmoticonList__Emoticon : public ProtobufCppMessage
{
CMsgClientEmoticonList__Emoticon() :
ProtobufCppMessage(cmsg_client_emoticon_list__emoticon__descriptor)
{}
char *name;
protobuf_c_boolean has_count;
int32_t count;
protobuf_c_boolean has_time_last_used;
uint32_t time_last_used;
protobuf_c_boolean has_use_count;
uint32_t use_count;
protobuf_c_boolean has_time_received;
uint32_t time_received;
protobuf_c_boolean has_appid;
uint32_t appid;
};
struct CMsgClientEmoticonList__Sticker : public ProtobufCppMessage
{
CMsgClientEmoticonList__Sticker() :
ProtobufCppMessage(cmsg_client_emoticon_list__sticker__descriptor)
{}
char *name;
protobuf_c_boolean has_count;
int32_t count;
protobuf_c_boolean has_time_received;
uint32_t time_received;
protobuf_c_boolean has_appid;
uint32_t appid;
protobuf_c_boolean has_time_last_used;
uint32_t time_last_used;
protobuf_c_boolean has_use_count;
uint32_t use_count;
};
struct CMsgClientEmoticonList__Effect : public ProtobufCppMessage
{
CMsgClientEmoticonList__Effect() :
ProtobufCppMessage(cmsg_client_emoticon_list__effect__descriptor)
{}
char *name;
protobuf_c_boolean has_count;
int32_t count;
protobuf_c_boolean has_time_received;
uint32_t time_received;
protobuf_c_boolean has_infinite_use;
protobuf_c_boolean infinite_use;
protobuf_c_boolean has_appid;
uint32_t appid;
};
struct CMsgClientEmoticonList : public ProtobufCppMessage
{
CMsgClientEmoticonList() :
ProtobufCppMessage(cmsg_client_emoticon_list__descriptor)
{}
size_t n_emoticons;
CMsgClientEmoticonList__Emoticon **emoticons;
size_t n_stickers;
CMsgClientEmoticonList__Sticker **stickers;
size_t n_effects;
CMsgClientEmoticonList__Effect **effects;
};
size_t cmsg_client_friend_msg__get_packed_size
(const CMsgClientFriendMsg *message);
size_t cmsg_client_friend_msg__pack
(const CMsgClientFriendMsg *message,
uint8_t *out);
size_t cmsg_client_friend_msg__pack_to_buffer
(const CMsgClientFriendMsg *message,
ProtobufCBuffer *buffer);
CMsgClientFriendMsg *
cmsg_client_friend_msg__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_friend_msg__free_unpacked
(CMsgClientFriendMsg *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_friend_msg_incoming__get_packed_size
(const CMsgClientFriendMsgIncoming *message);
size_t cmsg_client_friend_msg_incoming__pack
(const CMsgClientFriendMsgIncoming *message,
uint8_t *out);
size_t cmsg_client_friend_msg_incoming__pack_to_buffer
(const CMsgClientFriendMsgIncoming *message,
ProtobufCBuffer *buffer);
CMsgClientFriendMsgIncoming *
cmsg_client_friend_msg_incoming__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_friend_msg_incoming__free_unpacked
(CMsgClientFriendMsgIncoming *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_add_friend__get_packed_size
(const CMsgClientAddFriend *message);
size_t cmsg_client_add_friend__pack
(const CMsgClientAddFriend *message,
uint8_t *out);
size_t cmsg_client_add_friend__pack_to_buffer
(const CMsgClientAddFriend *message,
ProtobufCBuffer *buffer);
CMsgClientAddFriend *
cmsg_client_add_friend__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_add_friend__free_unpacked
(CMsgClientAddFriend *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_add_friend_response__get_packed_size
(const CMsgClientAddFriendResponse *message);
size_t cmsg_client_add_friend_response__pack
(const CMsgClientAddFriendResponse *message,
uint8_t *out);
size_t cmsg_client_add_friend_response__pack_to_buffer
(const CMsgClientAddFriendResponse *message,
ProtobufCBuffer *buffer);
CMsgClientAddFriendResponse *
cmsg_client_add_friend_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_add_friend_response__free_unpacked
(CMsgClientAddFriendResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_remove_friend__get_packed_size
(const CMsgClientRemoveFriend *message);
size_t cmsg_client_remove_friend__pack
(const CMsgClientRemoveFriend *message,
uint8_t *out);
size_t cmsg_client_remove_friend__pack_to_buffer
(const CMsgClientRemoveFriend *message,
ProtobufCBuffer *buffer);
CMsgClientRemoveFriend *
cmsg_client_remove_friend__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_remove_friend__free_unpacked
(CMsgClientRemoveFriend *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_hide_friend__get_packed_size
(const CMsgClientHideFriend *message);
size_t cmsg_client_hide_friend__pack
(const CMsgClientHideFriend *message,
uint8_t *out);
size_t cmsg_client_hide_friend__pack_to_buffer
(const CMsgClientHideFriend *message,
ProtobufCBuffer *buffer);
CMsgClientHideFriend *
cmsg_client_hide_friend__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_hide_friend__free_unpacked
(CMsgClientHideFriend *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_friends_list__get_packed_size
(const CMsgClientFriendsList *message);
size_t cmsg_client_friends_list__pack
(const CMsgClientFriendsList *message,
uint8_t *out);
size_t cmsg_client_friends_list__pack_to_buffer
(const CMsgClientFriendsList *message,
ProtobufCBuffer *buffer);
CMsgClientFriendsList *
cmsg_client_friends_list__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_friends_list__free_unpacked
(CMsgClientFriendsList *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_friends_groups_list__get_packed_size
(const CMsgClientFriendsGroupsList *message);
size_t cmsg_client_friends_groups_list__pack
(const CMsgClientFriendsGroupsList *message,
uint8_t *out);
size_t cmsg_client_friends_groups_list__pack_to_buffer
(const CMsgClientFriendsGroupsList *message,
ProtobufCBuffer *buffer);
CMsgClientFriendsGroupsList *
cmsg_client_friends_groups_list__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_friends_groups_list__free_unpacked
(CMsgClientFriendsGroupsList *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_player_nickname_list__get_packed_size
(const CMsgClientPlayerNicknameList *message);
size_t cmsg_client_player_nickname_list__pack
(const CMsgClientPlayerNicknameList *message,
uint8_t *out);
size_t cmsg_client_player_nickname_list__pack_to_buffer
(const CMsgClientPlayerNicknameList *message,
ProtobufCBuffer *buffer);
CMsgClientPlayerNicknameList *
cmsg_client_player_nickname_list__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_player_nickname_list__free_unpacked
(CMsgClientPlayerNicknameList *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_set_player_nickname__get_packed_size
(const CMsgClientSetPlayerNickname *message);
size_t cmsg_client_set_player_nickname__pack
(const CMsgClientSetPlayerNickname *message,
uint8_t *out);
size_t cmsg_client_set_player_nickname__pack_to_buffer
(const CMsgClientSetPlayerNickname *message,
ProtobufCBuffer *buffer);
CMsgClientSetPlayerNickname *
cmsg_client_set_player_nickname__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_set_player_nickname__free_unpacked
(CMsgClientSetPlayerNickname *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_set_player_nickname_response__get_packed_size
(const CMsgClientSetPlayerNicknameResponse *message);
size_t cmsg_client_set_player_nickname_response__pack
(const CMsgClientSetPlayerNicknameResponse *message,
uint8_t *out);
size_t cmsg_client_set_player_nickname_response__pack_to_buffer
(const CMsgClientSetPlayerNicknameResponse *message,
ProtobufCBuffer *buffer);
CMsgClientSetPlayerNicknameResponse *
cmsg_client_set_player_nickname_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_set_player_nickname_response__free_unpacked
(CMsgClientSetPlayerNicknameResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_request_friend_data__get_packed_size
(const CMsgClientRequestFriendData *message);
size_t cmsg_client_request_friend_data__pack
(const CMsgClientRequestFriendData *message,
uint8_t *out);
size_t cmsg_client_request_friend_data__pack_to_buffer
(const CMsgClientRequestFriendData *message,
ProtobufCBuffer *buffer);
CMsgClientRequestFriendData *
cmsg_client_request_friend_data__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_request_friend_data__free_unpacked
(CMsgClientRequestFriendData *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_change_status__get_packed_size
(const CMsgClientChangeStatus *message);
size_t cmsg_client_change_status__pack
(const CMsgClientChangeStatus *message,
uint8_t *out);
size_t cmsg_client_change_status__pack_to_buffer
(const CMsgClientChangeStatus *message,
ProtobufCBuffer *buffer);
CMsgClientChangeStatus *
cmsg_client_change_status__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_change_status__free_unpacked
(CMsgClientChangeStatus *message,
ProtobufCAllocator *allocator);
size_t cmsg_persona_change_response__get_packed_size
(const CMsgPersonaChangeResponse *message);
size_t cmsg_persona_change_response__pack
(const CMsgPersonaChangeResponse *message,
uint8_t *out);
size_t cmsg_persona_change_response__pack_to_buffer
(const CMsgPersonaChangeResponse *message,
ProtobufCBuffer *buffer);
CMsgPersonaChangeResponse *
cmsg_persona_change_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_persona_change_response__free_unpacked
(CMsgPersonaChangeResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_persona_state__get_packed_size
(const CMsgClientPersonaState *message);
size_t cmsg_client_persona_state__pack
(const CMsgClientPersonaState *message,
uint8_t *out);
size_t cmsg_client_persona_state__pack_to_buffer
(const CMsgClientPersonaState *message,
ProtobufCBuffer *buffer);
CMsgClientPersonaState *
cmsg_client_persona_state__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_persona_state__free_unpacked
(CMsgClientPersonaState *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_friend_profile_info__get_packed_size
(const CMsgClientFriendProfileInfo *message);
size_t cmsg_client_friend_profile_info__pack
(const CMsgClientFriendProfileInfo *message,
uint8_t *out);
size_t cmsg_client_friend_profile_info__pack_to_buffer
(const CMsgClientFriendProfileInfo *message,
ProtobufCBuffer *buffer);
CMsgClientFriendProfileInfo *
cmsg_client_friend_profile_info__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_friend_profile_info__free_unpacked
(CMsgClientFriendProfileInfo *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_friend_profile_info_response__get_packed_size
(const CMsgClientFriendProfileInfoResponse *message);
size_t cmsg_client_friend_profile_info_response__pack
(const CMsgClientFriendProfileInfoResponse *message,
uint8_t *out);
size_t cmsg_client_friend_profile_info_response__pack_to_buffer
(const CMsgClientFriendProfileInfoResponse *message,
ProtobufCBuffer *buffer);
CMsgClientFriendProfileInfoResponse *
cmsg_client_friend_profile_info_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_friend_profile_info_response__free_unpacked
(CMsgClientFriendProfileInfoResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_create_friends_group__get_packed_size
(const CMsgClientCreateFriendsGroup *message);
size_t cmsg_client_create_friends_group__pack
(const CMsgClientCreateFriendsGroup *message,
uint8_t *out);
size_t cmsg_client_create_friends_group__pack_to_buffer
(const CMsgClientCreateFriendsGroup *message,
ProtobufCBuffer *buffer);
CMsgClientCreateFriendsGroup *
cmsg_client_create_friends_group__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_create_friends_group__free_unpacked
(CMsgClientCreateFriendsGroup *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_create_friends_group_response__get_packed_size
(const CMsgClientCreateFriendsGroupResponse *message);
size_t cmsg_client_create_friends_group_response__pack
(const CMsgClientCreateFriendsGroupResponse *message,
uint8_t *out);
size_t cmsg_client_create_friends_group_response__pack_to_buffer
(const CMsgClientCreateFriendsGroupResponse *message,
ProtobufCBuffer *buffer);
CMsgClientCreateFriendsGroupResponse *
cmsg_client_create_friends_group_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_create_friends_group_response__free_unpacked
(CMsgClientCreateFriendsGroupResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_delete_friends_group__get_packed_size
(const CMsgClientDeleteFriendsGroup *message);
size_t cmsg_client_delete_friends_group__pack
(const CMsgClientDeleteFriendsGroup *message,
uint8_t *out);
size_t cmsg_client_delete_friends_group__pack_to_buffer
(const CMsgClientDeleteFriendsGroup *message,
ProtobufCBuffer *buffer);
CMsgClientDeleteFriendsGroup *
cmsg_client_delete_friends_group__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_delete_friends_group__free_unpacked
(CMsgClientDeleteFriendsGroup *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_delete_friends_group_response__get_packed_size
(const CMsgClientDeleteFriendsGroupResponse *message);
size_t cmsg_client_delete_friends_group_response__pack
(const CMsgClientDeleteFriendsGroupResponse *message,
uint8_t *out);
size_t cmsg_client_delete_friends_group_response__pack_to_buffer
(const CMsgClientDeleteFriendsGroupResponse *message,
ProtobufCBuffer *buffer);
CMsgClientDeleteFriendsGroupResponse *
cmsg_client_delete_friends_group_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_delete_friends_group_response__free_unpacked
(CMsgClientDeleteFriendsGroupResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_manage_friends_group__get_packed_size
(const CMsgClientManageFriendsGroup *message);
size_t cmsg_client_manage_friends_group__pack
(const CMsgClientManageFriendsGroup *message,
uint8_t *out);
size_t cmsg_client_manage_friends_group__pack_to_buffer
(const CMsgClientManageFriendsGroup *message,
ProtobufCBuffer *buffer);
CMsgClientManageFriendsGroup *
cmsg_client_manage_friends_group__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_manage_friends_group__free_unpacked
(CMsgClientManageFriendsGroup *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_manage_friends_group_response__get_packed_size
(const CMsgClientManageFriendsGroupResponse *message);
size_t cmsg_client_manage_friends_group_response__pack
(const CMsgClientManageFriendsGroupResponse *message,
uint8_t *out);
size_t cmsg_client_manage_friends_group_response__pack_to_buffer
(const CMsgClientManageFriendsGroupResponse *message,
ProtobufCBuffer *buffer);
CMsgClientManageFriendsGroupResponse *
cmsg_client_manage_friends_group_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_manage_friends_group_response__free_unpacked
(CMsgClientManageFriendsGroupResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_add_friend_to_group__get_packed_size
(const CMsgClientAddFriendToGroup *message);
size_t cmsg_client_add_friend_to_group__pack
(const CMsgClientAddFriendToGroup *message,
uint8_t *out);
size_t cmsg_client_add_friend_to_group__pack_to_buffer
(const CMsgClientAddFriendToGroup *message,
ProtobufCBuffer *buffer);
CMsgClientAddFriendToGroup *
cmsg_client_add_friend_to_group__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_add_friend_to_group__free_unpacked
(CMsgClientAddFriendToGroup *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_add_friend_to_group_response__get_packed_size
(const CMsgClientAddFriendToGroupResponse *message);
size_t cmsg_client_add_friend_to_group_response__pack
(const CMsgClientAddFriendToGroupResponse *message,
uint8_t *out);
size_t cmsg_client_add_friend_to_group_response__pack_to_buffer
(const CMsgClientAddFriendToGroupResponse *message,
ProtobufCBuffer *buffer);
CMsgClientAddFriendToGroupResponse *
cmsg_client_add_friend_to_group_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_add_friend_to_group_response__free_unpacked
(CMsgClientAddFriendToGroupResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_remove_friend_from_group__get_packed_size
(const CMsgClientRemoveFriendFromGroup *message);
size_t cmsg_client_remove_friend_from_group__pack
(const CMsgClientRemoveFriendFromGroup *message,
uint8_t *out);
size_t cmsg_client_remove_friend_from_group__pack_to_buffer
(const CMsgClientRemoveFriendFromGroup *message,
ProtobufCBuffer *buffer);
CMsgClientRemoveFriendFromGroup *
cmsg_client_remove_friend_from_group__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_remove_friend_from_group__free_unpacked
(CMsgClientRemoveFriendFromGroup *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_remove_friend_from_group_response__get_packed_size
(const CMsgClientRemoveFriendFromGroupResponse *message);
size_t cmsg_client_remove_friend_from_group_response__pack
(const CMsgClientRemoveFriendFromGroupResponse *message,
uint8_t *out);
size_t cmsg_client_remove_friend_from_group_response__pack_to_buffer
(const CMsgClientRemoveFriendFromGroupResponse *message,
ProtobufCBuffer *buffer);
CMsgClientRemoveFriendFromGroupResponse *
cmsg_client_remove_friend_from_group_response__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_remove_friend_from_group_response__free_unpacked
(CMsgClientRemoveFriendFromGroupResponse *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_get_emoticon_list__get_packed_size
(const CMsgClientGetEmoticonList *message);
size_t cmsg_client_get_emoticon_list__pack
(const CMsgClientGetEmoticonList *message,
uint8_t *out);
size_t cmsg_client_get_emoticon_list__pack_to_buffer
(const CMsgClientGetEmoticonList *message,
ProtobufCBuffer *buffer);
CMsgClientGetEmoticonList *
cmsg_client_get_emoticon_list__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_get_emoticon_list__free_unpacked
(CMsgClientGetEmoticonList *message,
ProtobufCAllocator *allocator);
size_t cmsg_client_emoticon_list__get_packed_size
(const CMsgClientEmoticonList *message);
size_t cmsg_client_emoticon_list__pack
(const CMsgClientEmoticonList *message,
uint8_t *out);
size_t cmsg_client_emoticon_list__pack_to_buffer
(const CMsgClientEmoticonList *message,
ProtobufCBuffer *buffer);
CMsgClientEmoticonList *
cmsg_client_emoticon_list__unpack
(ProtobufCAllocator *allocator,
size_t len,
const uint8_t *data);
void cmsg_client_emoticon_list__free_unpacked
(CMsgClientEmoticonList *message,
ProtobufCAllocator *allocator);
/* --- per-message closures --- */
typedef void (*CMsgClientFriendMsg_Closure)
(const CMsgClientFriendMsg *message,
void *closure_data);
typedef void (*CMsgClientFriendMsgIncoming_Closure)
(const CMsgClientFriendMsgIncoming *message,
void *closure_data);
typedef void (*CMsgClientAddFriend_Closure)
(const CMsgClientAddFriend *message,
void *closure_data);
typedef void (*CMsgClientAddFriendResponse_Closure)
(const CMsgClientAddFriendResponse *message,
void *closure_data);
typedef void (*CMsgClientRemoveFriend_Closure)
(const CMsgClientRemoveFriend *message,
void *closure_data);
typedef void (*CMsgClientHideFriend_Closure)
(const CMsgClientHideFriend *message,
void *closure_data);
typedef void (*CMsgClientFriendsList__Friend_Closure)
(const CMsgClientFriendsList__Friend *message,
void *closure_data);
typedef void (*CMsgClientFriendsList_Closure)
(const CMsgClientFriendsList *message,
void *closure_data);
typedef void (*CMsgClientFriendsGroupsList__FriendGroup_Closure)
(const CMsgClientFriendsGroupsList__FriendGroup *message,
void *closure_data);
typedef void (*CMsgClientFriendsGroupsList__FriendGroupsMembership_Closure)
(const CMsgClientFriendsGroupsList__FriendGroupsMembership *message,
void *closure_data);
typedef void (*CMsgClientFriendsGroupsList_Closure)
(const CMsgClientFriendsGroupsList *message,
void *closure_data);
typedef void (*CMsgClientPlayerNicknameList__PlayerNickname_Closure)
(const CMsgClientPlayerNicknameList__PlayerNickname *message,
void *closure_data);
typedef void (*CMsgClientPlayerNicknameList_Closure)
(const CMsgClientPlayerNicknameList *message,
void *closure_data);
typedef void (*CMsgClientSetPlayerNickname_Closure)
(const CMsgClientSetPlayerNickname *message,
void *closure_data);
typedef void (*CMsgClientSetPlayerNicknameResponse_Closure)
(const CMsgClientSetPlayerNicknameResponse *message,
void *closure_data);
typedef void (*CMsgClientRequestFriendData_Closure)
(const CMsgClientRequestFriendData *message,
void *closure_data);
typedef void (*CMsgClientChangeStatus_Closure)
(const CMsgClientChangeStatus *message,
void *closure_data);
typedef void (*CMsgPersonaChangeResponse_Closure)
(const CMsgPersonaChangeResponse *message,
void *closure_data);
typedef void (*CMsgClientPersonaState__Friend__ClanData_Closure)
(const CMsgClientPersonaState__Friend__ClanData *message,
void *closure_data);
typedef void (*CMsgClientPersonaState__Friend__KV_Closure)
(const CMsgClientPersonaState__Friend__KV *message,
void *closure_data);
typedef void (*CMsgClientPersonaState__Friend_Closure)
(const CMsgClientPersonaState__Friend *message,
void *closure_data);
typedef void (*CMsgClientPersonaState_Closure)
(const CMsgClientPersonaState *message,
void *closure_data);
typedef void (*CMsgClientFriendProfileInfo_Closure)
(const CMsgClientFriendProfileInfo *message,
void *closure_data);
typedef void (*CMsgClientFriendProfileInfoResponse_Closure)
(const CMsgClientFriendProfileInfoResponse *message,
void *closure_data);
typedef void (*CMsgClientCreateFriendsGroup_Closure)
(const CMsgClientCreateFriendsGroup *message,
void *closure_data);
typedef void (*CMsgClientCreateFriendsGroupResponse_Closure)
(const CMsgClientCreateFriendsGroupResponse *message,
void *closure_data);
typedef void (*CMsgClientDeleteFriendsGroup_Closure)
(const CMsgClientDeleteFriendsGroup *message,
void *closure_data);
typedef void (*CMsgClientDeleteFriendsGroupResponse_Closure)
(const CMsgClientDeleteFriendsGroupResponse *message,
void *closure_data);
typedef void (*CMsgClientManageFriendsGroup_Closure)
(const CMsgClientManageFriendsGroup *message,
void *closure_data);
typedef void (*CMsgClientManageFriendsGroupResponse_Closure)
(const CMsgClientManageFriendsGroupResponse *message,
void *closure_data);
typedef void (*CMsgClientAddFriendToGroup_Closure)
(const CMsgClientAddFriendToGroup *message,
void *closure_data);
typedef void (*CMsgClientAddFriendToGroupResponse_Closure)
(const CMsgClientAddFriendToGroupResponse *message,
void *closure_data);
typedef void (*CMsgClientRemoveFriendFromGroup_Closure)
(const CMsgClientRemoveFriendFromGroup *message,
void *closure_data);
typedef void (*CMsgClientRemoveFriendFromGroupResponse_Closure)
(const CMsgClientRemoveFriendFromGroupResponse *message,
void *closure_data);
typedef void (*CMsgClientGetEmoticonList_Closure)
(const CMsgClientGetEmoticonList *message,
void *closure_data);
typedef void (*CMsgClientEmoticonList__Emoticon_Closure)
(const CMsgClientEmoticonList__Emoticon *message,
void *closure_data);
typedef void (*CMsgClientEmoticonList__Sticker_Closure)
(const CMsgClientEmoticonList__Sticker *message,
void *closure_data);
typedef void (*CMsgClientEmoticonList__Effect_Closure)
(const CMsgClientEmoticonList__Effect *message,
void *closure_data);
typedef void (*CMsgClientEmoticonList_Closure)
(const CMsgClientEmoticonList *message,
void *closure_data);
/* --- services --- */
PROTOBUF_C__END_DECLS
#endif /* PROTOBUF_C_steammessages_5fclientserver_5ffriends_2eproto__INCLUDED */
|