steamd 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +5 -0
- data/.rspec +2 -0
- data/.rubocop.yml +4 -0
- data/.ruby-version +1 -0
- data/.travis.yml +6 -0
- data/Gemfile +3 -0
- data/LICENSE +21 -0
- data/README.md +51 -0
- data/Rakefile +22 -0
- data/bin/console +6 -0
- data/bin/setup +6 -0
- data/bin/steamd +6 -0
- data/grammar/class.treetop +63 -0
- data/grammar/enums.treetop +44 -0
- data/grammar/import.treetop +11 -0
- data/grammar/shared.treetop +62 -0
- data/grammar/steamd.treetop +15 -0
- data/language/emsg.steamd +1802 -0
- data/language/enums.steamd +989 -0
- data/language/eresult.steamd +119 -0
- data/language/gamecoordinator.steamd +17 -0
- data/language/header.steamd +37 -0
- data/language/netheader.steamd +62 -0
- data/language/steammsg.steamd +357 -0
- data/lib/ext/string.rb +33 -0
- data/lib/steamd.rb +40 -0
- data/lib/steamd/cli.rb +24 -0
- data/lib/steamd/cli_options.rb +58 -0
- data/lib/steamd/code_generator.rb +41 -0
- data/lib/steamd/generated/emsg.rb +3464 -0
- data/lib/steamd/generated/enums.rb +1750 -0
- data/lib/steamd/generated/eresult.rb +236 -0
- data/lib/steamd/generated/gamecoordinator.rb +119 -0
- data/lib/steamd/generated/header.rb +261 -0
- data/lib/steamd/generated/netheader.rb +315 -0
- data/lib/steamd/generated/steammsg.rb +2527 -0
- data/lib/steamd/generator.rb +6 -0
- data/lib/steamd/generator/generated_class.rb +128 -0
- data/lib/steamd/generator/generated_enum.rb +60 -0
- data/lib/steamd/generator/generated_import.rb +21 -0
- data/lib/steamd/generator/implementation.rb +83 -0
- data/lib/steamd/generator/ruby/class.erb +39 -0
- data/lib/steamd/generator/ruby/enum.erb +14 -0
- data/lib/steamd/generator/ruby/import.erb +1 -0
- data/lib/steamd/generator/ruby/ruby.rb +54 -0
- data/lib/steamd/generator/ruby/serializable_constant.rb +20 -0
- data/lib/steamd/generator/ruby/serializable_type.rb +93 -0
- data/lib/steamd/generator/ruby/serializable_variable.rb +85 -0
- data/lib/steamd/generator/ruby/steam_serializable.rb +89 -0
- data/lib/steamd/nodes/block_node.rb +14 -0
- data/lib/steamd/nodes/class_statement_node.rb +46 -0
- data/lib/steamd/nodes/class_type_node.rb +12 -0
- data/lib/steamd/nodes/enum_statement_node.rb +50 -0
- data/lib/steamd/nodes/enum_variable_node.rb +24 -0
- data/lib/steamd/nodes/import_statement_node.rb +26 -0
- data/lib/steamd/nodes/node.rb +3 -0
- data/lib/steamd/nodes/nodes.rb +10 -0
- data/lib/steamd/nodes/variable_node.rb +106 -0
- data/lib/steamd/parser.rb +157 -0
- data/lib/steamd/version.rb +14 -0
- data/steamd.gemspec +38 -0
- data/tasks/language.rake +11 -0
- metadata +220 -0
@@ -0,0 +1,1750 @@
|
|
1
|
+
# Represents the EUniverse enum
|
2
|
+
class EUniverse
|
3
|
+
# Data type of EUniverse
|
4
|
+
DATA_TYPE = 'int'
|
5
|
+
# Constant INVALID for EUniverse
|
6
|
+
INVALID = 0
|
7
|
+
# Constant PUBLIC for EUniverse
|
8
|
+
PUBLIC = 1
|
9
|
+
# Constant BETA for EUniverse
|
10
|
+
BETA = 2
|
11
|
+
# Constant INTERNAL for EUniverse
|
12
|
+
INTERNAL = 3
|
13
|
+
# Constant DEV for EUniverse
|
14
|
+
DEV = 4
|
15
|
+
# Constant MAX for EUniverse
|
16
|
+
MAX = 5
|
17
|
+
end
|
18
|
+
|
19
|
+
# Represents the EChatEntryType enum
|
20
|
+
class EChatEntryType
|
21
|
+
# Data type of EChatEntryType
|
22
|
+
DATA_TYPE = 'int'
|
23
|
+
# Constant INVALID for EChatEntryType
|
24
|
+
INVALID = 0
|
25
|
+
# Constant CHAT_MSG for EChatEntryType
|
26
|
+
CHAT_MSG = 1
|
27
|
+
# Constant TYPING for EChatEntryType
|
28
|
+
TYPING = 2
|
29
|
+
# Constant INVITE_GAME for EChatEntryType
|
30
|
+
INVITE_GAME = 3
|
31
|
+
# Constant EMOTE for EChatEntryType
|
32
|
+
EMOTE = 4
|
33
|
+
# Constant LOBBY_GAME_START for EChatEntryType
|
34
|
+
LOBBY_GAME_START = 5
|
35
|
+
# Constant LEFT_CONVERSATION for EChatEntryType
|
36
|
+
LEFT_CONVERSATION = 6
|
37
|
+
# Constant ENTERED for EChatEntryType
|
38
|
+
ENTERED = 7
|
39
|
+
# Constant WAS_KICKED for EChatEntryType
|
40
|
+
WAS_KICKED = 8
|
41
|
+
# Constant WAS_BANNED for EChatEntryType
|
42
|
+
WAS_BANNED = 9
|
43
|
+
# Constant DISCONNECTED for EChatEntryType
|
44
|
+
DISCONNECTED = 10
|
45
|
+
# Constant HISTORICAL_CHAT for EChatEntryType
|
46
|
+
HISTORICAL_CHAT = 11
|
47
|
+
# Constant RESERVED1 for EChatEntryType
|
48
|
+
RESERVED1 = 12
|
49
|
+
# Constant RESERVED2 for EChatEntryType
|
50
|
+
RESERVED2 = 13
|
51
|
+
# Constant LINK_BLOCKED for EChatEntryType
|
52
|
+
LINK_BLOCKED = 14
|
53
|
+
end
|
54
|
+
|
55
|
+
# Represents the EPersonaState enum
|
56
|
+
class EPersonaState
|
57
|
+
# Data type of EPersonaState
|
58
|
+
DATA_TYPE = 'int'
|
59
|
+
# Constant OFFLINE for EPersonaState
|
60
|
+
OFFLINE = 0
|
61
|
+
# Constant ONLINE for EPersonaState
|
62
|
+
ONLINE = 1
|
63
|
+
# Constant BUSY for EPersonaState
|
64
|
+
BUSY = 2
|
65
|
+
# Constant AWAY for EPersonaState
|
66
|
+
AWAY = 3
|
67
|
+
# Constant SNOOZE for EPersonaState
|
68
|
+
SNOOZE = 4
|
69
|
+
# Constant LOOKING_TO_TRADE for EPersonaState
|
70
|
+
LOOKING_TO_TRADE = 5
|
71
|
+
# Constant LOOKING_TO_PLAY for EPersonaState
|
72
|
+
LOOKING_TO_PLAY = 6
|
73
|
+
# Constant MAX for EPersonaState
|
74
|
+
MAX = 7
|
75
|
+
end
|
76
|
+
|
77
|
+
# Represents the EAccountType enum
|
78
|
+
class EAccountType
|
79
|
+
# Data type of EAccountType
|
80
|
+
DATA_TYPE = 'int'
|
81
|
+
# Constant INVALID for EAccountType
|
82
|
+
INVALID = 0
|
83
|
+
# Constant INDIVIDUAL for EAccountType
|
84
|
+
INDIVIDUAL = 1
|
85
|
+
# Constant MULTISEAT for EAccountType
|
86
|
+
MULTISEAT = 2
|
87
|
+
# Constant GAME_SERVER for EAccountType
|
88
|
+
GAME_SERVER = 3
|
89
|
+
# Constant ANON_GAME_SERVER for EAccountType
|
90
|
+
ANON_GAME_SERVER = 4
|
91
|
+
# Constant PENDING for EAccountType
|
92
|
+
PENDING = 5
|
93
|
+
# Constant CONTENT_SERVER for EAccountType
|
94
|
+
CONTENT_SERVER = 6
|
95
|
+
# Constant CLAN for EAccountType
|
96
|
+
CLAN = 7
|
97
|
+
# Constant CHAT for EAccountType
|
98
|
+
CHAT = 8
|
99
|
+
# Constant CONSOLE_USER for EAccountType
|
100
|
+
CONSOLE_USER = 9
|
101
|
+
# Constant ANON_USER for EAccountType
|
102
|
+
ANON_USER = 10
|
103
|
+
# Constant MAX for EAccountType
|
104
|
+
MAX = 11
|
105
|
+
end
|
106
|
+
|
107
|
+
# Represents the EFriendRelationship enum
|
108
|
+
class EFriendRelationship
|
109
|
+
# Data type of EFriendRelationship
|
110
|
+
DATA_TYPE = 'int'
|
111
|
+
# Constant NONE for EFriendRelationship
|
112
|
+
NONE = 0
|
113
|
+
# Constant BLOCKED for EFriendRelationship
|
114
|
+
BLOCKED = 1
|
115
|
+
# Constant REQUEST_RECIPIENT for EFriendRelationship
|
116
|
+
REQUEST_RECIPIENT = 2
|
117
|
+
# Constant FRIEND for EFriendRelationship
|
118
|
+
FRIEND = 3
|
119
|
+
# Constant REQUEST_INITIATOR for EFriendRelationship
|
120
|
+
REQUEST_INITIATOR = 4
|
121
|
+
# Constant IGNORED for EFriendRelationship
|
122
|
+
IGNORED = 5
|
123
|
+
# Constant IGNORED_FRIEND for EFriendRelationship
|
124
|
+
IGNORED_FRIEND = 6
|
125
|
+
# Constant SUGGESTED_FRIEND for EFriendRelationship
|
126
|
+
SUGGESTED_FRIEND = 7
|
127
|
+
# Constant MAX for EFriendRelationship
|
128
|
+
MAX = 8
|
129
|
+
end
|
130
|
+
|
131
|
+
# Represents the EAccountFlags enum
|
132
|
+
class EAccountFlags
|
133
|
+
# Data type of EAccountFlags
|
134
|
+
DATA_TYPE = 'flags'
|
135
|
+
# Constant NORMAL_USER for EAccountFlags
|
136
|
+
NORMAL_USER = 0
|
137
|
+
# Constant PERSONA_NAME_SET for EAccountFlags
|
138
|
+
PERSONA_NAME_SET = 1
|
139
|
+
# Constant UNBANNABLE for EAccountFlags
|
140
|
+
UNBANNABLE = 2
|
141
|
+
# Constant PASSWORD_SET for EAccountFlags
|
142
|
+
PASSWORD_SET = 4
|
143
|
+
# Constant SUPPORT for EAccountFlags
|
144
|
+
SUPPORT = 8
|
145
|
+
# Constant ADMIN for EAccountFlags
|
146
|
+
ADMIN = 16
|
147
|
+
# Constant SUPERVISOR for EAccountFlags
|
148
|
+
SUPERVISOR = 32
|
149
|
+
# Constant APP_EDITOR for EAccountFlags
|
150
|
+
APP_EDITOR = 64
|
151
|
+
# Constant HWID_SET for EAccountFlags
|
152
|
+
HWID_SET = 128
|
153
|
+
# Constant PERSONAL_QA_SET for EAccountFlags
|
154
|
+
PERSONAL_QA_SET = 256
|
155
|
+
# Constant VAC_BETA for EAccountFlags
|
156
|
+
VAC_BETA = 512
|
157
|
+
# Constant DEBUG for EAccountFlags
|
158
|
+
DEBUG = 1024
|
159
|
+
# Constant DISABLED for EAccountFlags
|
160
|
+
DISABLED = 2048
|
161
|
+
# Constant LIMITED_USER for EAccountFlags
|
162
|
+
LIMITED_USER = 4096
|
163
|
+
# Constant LIMITED_USER_FORCE for EAccountFlags
|
164
|
+
LIMITED_USER_FORCE = 8192
|
165
|
+
# Constant EMAIL_VALIDATED for EAccountFlags
|
166
|
+
EMAIL_VALIDATED = 16384
|
167
|
+
# Constant MARKETING_TREATMENT for EAccountFlags
|
168
|
+
MARKETING_TREATMENT = 32768
|
169
|
+
# Constant OGG_INVITE_OPT_OUT for EAccountFlags
|
170
|
+
OGG_INVITE_OPT_OUT = 65536
|
171
|
+
# Constant FORCE_PASSWORD_CHANGE for EAccountFlags
|
172
|
+
FORCE_PASSWORD_CHANGE = 131072
|
173
|
+
# Constant FORCE_EMAIL_VERIFICATION for EAccountFlags
|
174
|
+
FORCE_EMAIL_VERIFICATION = 262144
|
175
|
+
# Constant LOGON_EXTRA_SECURITY for EAccountFlags
|
176
|
+
LOGON_EXTRA_SECURITY = 524288
|
177
|
+
# Constant LOGON_EXTRA_SECURITY_DISABLED for EAccountFlags
|
178
|
+
LOGON_EXTRA_SECURITY_DISABLED = 1048576
|
179
|
+
# Constant STEAM2_MIGRATION_COMPLETE for EAccountFlags
|
180
|
+
STEAM2_MIGRATION_COMPLETE = 2097152
|
181
|
+
# Constant NEED_LOGS for EAccountFlags
|
182
|
+
NEED_LOGS = 4194304
|
183
|
+
# Constant LOCKDOWN for EAccountFlags
|
184
|
+
LOCKDOWN = 8388608
|
185
|
+
# Constant MASTER_APP_EDITOR for EAccountFlags
|
186
|
+
MASTER_APP_EDITOR = 16777216
|
187
|
+
# Constant BANNED_FROM_WEB_API for EAccountFlags
|
188
|
+
BANNED_FROM_WEB_API = 33554432
|
189
|
+
# Constant CLANS_ONLY_FROM_FRIENDS for EAccountFlags
|
190
|
+
CLANS_ONLY_FROM_FRIENDS = 67108864
|
191
|
+
# Constant GLOBAL_MODERATOR for EAccountFlags
|
192
|
+
GLOBAL_MODERATOR = 134217728
|
193
|
+
end
|
194
|
+
|
195
|
+
# Represents the EClanPermission enum
|
196
|
+
class EClanPermission
|
197
|
+
# Data type of EClanPermission
|
198
|
+
DATA_TYPE = 'flags'
|
199
|
+
# Constant NOBODY for EClanPermission
|
200
|
+
NOBODY = 0
|
201
|
+
# Constant OWNER for EClanPermission
|
202
|
+
OWNER = 1
|
203
|
+
# Constant OFFICER for EClanPermission
|
204
|
+
OFFICER = 2
|
205
|
+
# Constant OWNER_AND_OFFICER for EClanPermission
|
206
|
+
OWNER_AND_OFFICER = 3
|
207
|
+
# Constant MEMBER for EClanPermission
|
208
|
+
MEMBER = 4
|
209
|
+
# Constant MODERATOR for EClanPermission
|
210
|
+
MODERATOR = 8
|
211
|
+
# Constant OWNER_OFFICER_MODERATOR for EClanPermission
|
212
|
+
OWNER_OFFICER_MODERATOR = OWNER | OFFICER | MODERATOR
|
213
|
+
# Constant ALL_MEMBERS for EClanPermission
|
214
|
+
ALL_MEMBERS = OWNER | OFFICER | MODERATOR | MEMBER
|
215
|
+
# Constant OGG_GAME_OWNER for EClanPermission
|
216
|
+
OGG_GAME_OWNER = 16
|
217
|
+
# Constant NON_MEMBER for EClanPermission
|
218
|
+
NON_MEMBER = 128
|
219
|
+
# Constant MEMBER_ALLOWED for EClanPermission
|
220
|
+
MEMBER_ALLOWED = NON_MEMBER | MEMBER
|
221
|
+
# Constant MODERATOR_ALLOWED for EClanPermission
|
222
|
+
MODERATOR_ALLOWED = NON_MEMBER | MEMBER | MODERATOR
|
223
|
+
# Constant OFFICER_ALLOWED for EClanPermission
|
224
|
+
OFFICER_ALLOWED = NON_MEMBER | MEMBER | MODERATOR | OFFICER
|
225
|
+
# Constant OWNER_ALLOWED for EClanPermission
|
226
|
+
OWNER_ALLOWED = NON_MEMBER | MEMBER | MODERATOR | OFFICER | OWNER
|
227
|
+
# Constant ANYBODY for EClanPermission
|
228
|
+
ANYBODY = NON_MEMBER | MEMBER | MODERATOR | OFFICER | OWNER
|
229
|
+
end
|
230
|
+
|
231
|
+
# Represents the EChatPermission enum
|
232
|
+
class EChatPermission
|
233
|
+
# Data type of EChatPermission
|
234
|
+
DATA_TYPE = 'flags'
|
235
|
+
# Constant CLOSE for EChatPermission
|
236
|
+
CLOSE = 1
|
237
|
+
# Constant INVITE for EChatPermission
|
238
|
+
INVITE = 2
|
239
|
+
# Constant TALK for EChatPermission
|
240
|
+
TALK = 8
|
241
|
+
# Constant KICK for EChatPermission
|
242
|
+
KICK = 16
|
243
|
+
# Constant MUTE for EChatPermission
|
244
|
+
MUTE = 32
|
245
|
+
# Constant SET_METADATA for EChatPermission
|
246
|
+
SET_METADATA = 64
|
247
|
+
# Constant CHANGE_PERMISSIONS for EChatPermission
|
248
|
+
CHANGE_PERMISSIONS = 128
|
249
|
+
# Constant BAN for EChatPermission
|
250
|
+
BAN = 256
|
251
|
+
# Constant CHANGE_ACCESS for EChatPermission
|
252
|
+
CHANGE_ACCESS = 512
|
253
|
+
# Constant EVERYONE_NOT_IN_CLAN_DEFAULT for EChatPermission
|
254
|
+
EVERYONE_NOT_IN_CLAN_DEFAULT = TALK
|
255
|
+
# Constant EVERYONE_DEFAULT for EChatPermission
|
256
|
+
EVERYONE_DEFAULT = TALK | INVITE
|
257
|
+
# Constant MEMBER_DEFAULT for EChatPermission
|
258
|
+
MEMBER_DEFAULT = BAN | KICK | TALK | INVITE
|
259
|
+
# Constant OFFICER_DEFAULT for EChatPermission
|
260
|
+
OFFICER_DEFAULT = BAN | KICK | TALK | INVITE
|
261
|
+
# Constant OWNER_DEFAULT for EChatPermission
|
262
|
+
OWNER_DEFAULT = CHANGE_ACCESS | BAN | SET_METADATA | MUTE | KICK | TALK | INVITE | CLOSE
|
263
|
+
# Constant MASK for EChatPermission
|
264
|
+
MASK = 1019
|
265
|
+
end
|
266
|
+
|
267
|
+
# Represents the EFriendFlags enum
|
268
|
+
class EFriendFlags
|
269
|
+
# Data type of EFriendFlags
|
270
|
+
DATA_TYPE = 'flags'
|
271
|
+
# Constant NONE for EFriendFlags
|
272
|
+
NONE = 0
|
273
|
+
# Constant BLOCKED for EFriendFlags
|
274
|
+
BLOCKED = 1
|
275
|
+
# Constant FRIENDSHIP_REQUESTED for EFriendFlags
|
276
|
+
FRIENDSHIP_REQUESTED = 2
|
277
|
+
# Constant IMMEDIATE for EFriendFlags
|
278
|
+
IMMEDIATE = 4
|
279
|
+
# Constant CLAN_MEMBER for EFriendFlags
|
280
|
+
CLAN_MEMBER = 8
|
281
|
+
# Constant ON_GAME_SERVER for EFriendFlags
|
282
|
+
ON_GAME_SERVER = 16
|
283
|
+
# Constant REQUESTING_FRIENDSHIP for EFriendFlags
|
284
|
+
REQUESTING_FRIENDSHIP = 128
|
285
|
+
# Constant REQUESTING_INFO for EFriendFlags
|
286
|
+
REQUESTING_INFO = 256
|
287
|
+
# Constant IGNORED for EFriendFlags
|
288
|
+
IGNORED = 512
|
289
|
+
# Constant IGNORED_FRIEND for EFriendFlags
|
290
|
+
IGNORED_FRIEND = 1024
|
291
|
+
# Constant SUGGESTED for EFriendFlags
|
292
|
+
SUGGESTED = 2048
|
293
|
+
# Constant FLAG_ALL for EFriendFlags
|
294
|
+
FLAG_ALL = 65535
|
295
|
+
end
|
296
|
+
|
297
|
+
# Represents the EPersonaStateFlag enum
|
298
|
+
class EPersonaStateFlag
|
299
|
+
# Data type of EPersonaStateFlag
|
300
|
+
DATA_TYPE = 'flags'
|
301
|
+
# Constant HAS_RICH_PRESENCE for EPersonaStateFlag
|
302
|
+
HAS_RICH_PRESENCE = 1
|
303
|
+
# Constant IN_JOINABLE_GAME for EPersonaStateFlag
|
304
|
+
IN_JOINABLE_GAME = 2
|
305
|
+
# Constant ONLINE_USING_WEB for EPersonaStateFlag
|
306
|
+
ONLINE_USING_WEB = 256
|
307
|
+
# Constant ONLINE_USING_MOBILE for EPersonaStateFlag
|
308
|
+
ONLINE_USING_MOBILE = 512
|
309
|
+
# Constant ONLINE_USING_BIG_PICTURE for EPersonaStateFlag
|
310
|
+
ONLINE_USING_BIG_PICTURE = 1024
|
311
|
+
# Constant ONLINE_USING_VR for EPersonaStateFlag
|
312
|
+
ONLINE_USING_VR = 2048
|
313
|
+
end
|
314
|
+
|
315
|
+
# Represents the EClientPersonaStateFlag enum
|
316
|
+
class EClientPersonaStateFlag
|
317
|
+
# Data type of EClientPersonaStateFlag
|
318
|
+
DATA_TYPE = 'flags'
|
319
|
+
# Constant STATUS for EClientPersonaStateFlag
|
320
|
+
STATUS = 1
|
321
|
+
# Constant PLAYER_NAME for EClientPersonaStateFlag
|
322
|
+
PLAYER_NAME = 2
|
323
|
+
# Constant QUERY_PORT for EClientPersonaStateFlag
|
324
|
+
QUERY_PORT = 4
|
325
|
+
# Constant SOURCE_ID for EClientPersonaStateFlag
|
326
|
+
SOURCE_ID = 8
|
327
|
+
# Constant PRESENCE for EClientPersonaStateFlag
|
328
|
+
PRESENCE = 16
|
329
|
+
# Constant METADATA for EClientPersonaStateFlag
|
330
|
+
METADATA = 32
|
331
|
+
# Constant LAST_SEEN for EClientPersonaStateFlag
|
332
|
+
LAST_SEEN = 64
|
333
|
+
# Constant CLAN_INFO for EClientPersonaStateFlag
|
334
|
+
CLAN_INFO = 128
|
335
|
+
# Constant GAME_EXTRA_INFO for EClientPersonaStateFlag
|
336
|
+
GAME_EXTRA_INFO = 256
|
337
|
+
# Constant GAME_DATA_BLOB for EClientPersonaStateFlag
|
338
|
+
GAME_DATA_BLOB = 512
|
339
|
+
# Constant CLAN_TAG for EClientPersonaStateFlag
|
340
|
+
CLAN_TAG = 1024
|
341
|
+
# Constant FACEBOOK for EClientPersonaStateFlag
|
342
|
+
FACEBOOK = 2048
|
343
|
+
end
|
344
|
+
|
345
|
+
# Represents the EAppUsageEvent enum
|
346
|
+
class EAppUsageEvent
|
347
|
+
# Data type of EAppUsageEvent
|
348
|
+
DATA_TYPE = 'int'
|
349
|
+
# Constant GAME_LAUNCH for EAppUsageEvent
|
350
|
+
GAME_LAUNCH = 1
|
351
|
+
# Constant GAME_LAUNCH_TRIAL for EAppUsageEvent
|
352
|
+
GAME_LAUNCH_TRIAL = 2
|
353
|
+
# Constant MEDIA for EAppUsageEvent
|
354
|
+
MEDIA = 3
|
355
|
+
# Constant PRELOAD_START for EAppUsageEvent
|
356
|
+
PRELOAD_START = 4
|
357
|
+
# Constant PRELOAD_FINISH for EAppUsageEvent
|
358
|
+
PRELOAD_FINISH = 5
|
359
|
+
# Constant MARKETING_MESSAGE_VIEW for EAppUsageEvent
|
360
|
+
MARKETING_MESSAGE_VIEW = 6
|
361
|
+
# Constant IN_GAME_AD_VIEWED for EAppUsageEvent
|
362
|
+
IN_GAME_AD_VIEWED = 7
|
363
|
+
# Constant GAME_LAUNCH_FREE_WEEKEND for EAppUsageEvent
|
364
|
+
GAME_LAUNCH_FREE_WEEKEND = 8
|
365
|
+
end
|
366
|
+
|
367
|
+
# Represents the ELicenseFlags enum
|
368
|
+
class ELicenseFlags
|
369
|
+
# Data type of ELicenseFlags
|
370
|
+
DATA_TYPE = 'flags'
|
371
|
+
# Constant NONE for ELicenseFlags
|
372
|
+
NONE = 0
|
373
|
+
# Constant RENEW for ELicenseFlags
|
374
|
+
RENEW = 0X01
|
375
|
+
# Constant RENEWAL_FAILED for ELicenseFlags
|
376
|
+
RENEWAL_FAILED = 0X02
|
377
|
+
# Constant PENDING for ELicenseFlags
|
378
|
+
PENDING = 0X04
|
379
|
+
# Constant EXPIRED for ELicenseFlags
|
380
|
+
EXPIRED = 0X08
|
381
|
+
# Constant CANCELLED_BY_USER for ELicenseFlags
|
382
|
+
CANCELLED_BY_USER = 0X10
|
383
|
+
# Constant CANCELLED_BY_ADMIN for ELicenseFlags
|
384
|
+
CANCELLED_BY_ADMIN = 0X20
|
385
|
+
# Constant LOW_VIOLENCE_CONTENT for ELicenseFlags
|
386
|
+
LOW_VIOLENCE_CONTENT = 0X40
|
387
|
+
# Constant IMPORTED_FROM_STEAM2 for ELicenseFlags
|
388
|
+
IMPORTED_FROM_STEAM2 = 0X80
|
389
|
+
end
|
390
|
+
|
391
|
+
# Represents the ELicenseType enum
|
392
|
+
class ELicenseType
|
393
|
+
# Data type of ELicenseType
|
394
|
+
DATA_TYPE = 'int'
|
395
|
+
# Constant NO_LICENSE for ELicenseType
|
396
|
+
NO_LICENSE = 0
|
397
|
+
# Constant SINGLE_PURCHASE for ELicenseType
|
398
|
+
SINGLE_PURCHASE = 1
|
399
|
+
# Constant SINGLE_PURCHASE_LIMITED_USE for ELicenseType
|
400
|
+
SINGLE_PURCHASE_LIMITED_USE = 2
|
401
|
+
# Constant RECURRING_CHARGE for ELicenseType
|
402
|
+
RECURRING_CHARGE = 3
|
403
|
+
# Constant RECURRING_CHARGE_LIMITED_USE for ELicenseType
|
404
|
+
RECURRING_CHARGE_LIMITED_USE = 4
|
405
|
+
# Constant RECURRING_CHARGE_LIMITED_USE_WITH_OVERAGES for ELicenseType
|
406
|
+
RECURRING_CHARGE_LIMITED_USE_WITH_OVERAGES = 5
|
407
|
+
# Constant RECURRING_OPTION for ELicenseType
|
408
|
+
RECURRING_OPTION = 6
|
409
|
+
end
|
410
|
+
|
411
|
+
# Represents the EPaymentMethod enum
|
412
|
+
class EPaymentMethod
|
413
|
+
# Data type of EPaymentMethod
|
414
|
+
DATA_TYPE = 'int'
|
415
|
+
# Constant NONE for EPaymentMethod
|
416
|
+
NONE = 0
|
417
|
+
# Constant ACTIVATION_CODE for EPaymentMethod
|
418
|
+
ACTIVATION_CODE = 1
|
419
|
+
# Constant CREDIT_CARD for EPaymentMethod
|
420
|
+
CREDIT_CARD = 2
|
421
|
+
# Constant GIROPAY for EPaymentMethod
|
422
|
+
GIROPAY = 3
|
423
|
+
# Constant PAY_PAL for EPaymentMethod
|
424
|
+
PAY_PAL = 4
|
425
|
+
# Constant IDEAL for EPaymentMethod
|
426
|
+
IDEAL = 5
|
427
|
+
# Constant PAY_SAFE_CARD for EPaymentMethod
|
428
|
+
PAY_SAFE_CARD = 6
|
429
|
+
# Constant SOFORT for EPaymentMethod
|
430
|
+
SOFORT = 7
|
431
|
+
# Constant GUEST_PASS for EPaymentMethod
|
432
|
+
GUEST_PASS = 8
|
433
|
+
# Constant WEB_MONEY for EPaymentMethod
|
434
|
+
WEB_MONEY = 9
|
435
|
+
# Constant MONEY_BOOKERS for EPaymentMethod
|
436
|
+
MONEY_BOOKERS = 10
|
437
|
+
# Constant ALI_PAY for EPaymentMethod
|
438
|
+
ALI_PAY = 11
|
439
|
+
# Constant YANDEX for EPaymentMethod
|
440
|
+
YANDEX = 12
|
441
|
+
# Constant KIOSK for EPaymentMethod
|
442
|
+
KIOSK = 13
|
443
|
+
# Constant QIWI for EPaymentMethod
|
444
|
+
QIWI = 14
|
445
|
+
# Constant GAME_STOP for EPaymentMethod
|
446
|
+
GAME_STOP = 15
|
447
|
+
# Constant HARDWARE_PROMO for EPaymentMethod
|
448
|
+
HARDWARE_PROMO = 16
|
449
|
+
# Constant MO_PAY for EPaymentMethod
|
450
|
+
MO_PAY = 17
|
451
|
+
# Constant BOLETO_BANCARIO for EPaymentMethod
|
452
|
+
BOLETO_BANCARIO = 18
|
453
|
+
# Constant BOA_COMPRA_GOLD for EPaymentMethod
|
454
|
+
BOA_COMPRA_GOLD = 19
|
455
|
+
# Constant BANCO_DO_BRASIL_ONLINE for EPaymentMethod
|
456
|
+
BANCO_DO_BRASIL_ONLINE = 20
|
457
|
+
# Constant ITAU_ONLINE for EPaymentMethod
|
458
|
+
ITAU_ONLINE = 21
|
459
|
+
# Constant BRADESCO_ONLINE for EPaymentMethod
|
460
|
+
BRADESCO_ONLINE = 22
|
461
|
+
# Constant PAGSEGURO for EPaymentMethod
|
462
|
+
PAGSEGURO = 23
|
463
|
+
# Constant VISA_BRAZIL for EPaymentMethod
|
464
|
+
VISA_BRAZIL = 24
|
465
|
+
# Constant AMEX_BRAZIL for EPaymentMethod
|
466
|
+
AMEX_BRAZIL = 25
|
467
|
+
# Constant AURA for EPaymentMethod
|
468
|
+
AURA = 26
|
469
|
+
# Constant HIPERCARD for EPaymentMethod
|
470
|
+
HIPERCARD = 27
|
471
|
+
# Constant MASTERCARD_BRAZIL for EPaymentMethod
|
472
|
+
MASTERCARD_BRAZIL = 28
|
473
|
+
# Constant DINERS_CARD_BRAZIL for EPaymentMethod
|
474
|
+
DINERS_CARD_BRAZIL = 29
|
475
|
+
# Constant AUTHORIZED_DEVICE for EPaymentMethod
|
476
|
+
AUTHORIZED_DEVICE = 30
|
477
|
+
# Constant MOL_POINTS for EPaymentMethod
|
478
|
+
MOL_POINTS = 31
|
479
|
+
# Constant CLICK_AND_BUY for EPaymentMethod
|
480
|
+
CLICK_AND_BUY = 32
|
481
|
+
# Constant BEELINE for EPaymentMethod
|
482
|
+
BEELINE = 33
|
483
|
+
# Constant KONBINI for EPaymentMethod
|
484
|
+
KONBINI = 34
|
485
|
+
# Constant E_CLUB_POINTS for EPaymentMethod
|
486
|
+
E_CLUB_POINTS = 35
|
487
|
+
# Constant CREDIT_CARD_JAPAN for EPaymentMethod
|
488
|
+
CREDIT_CARD_JAPAN = 36
|
489
|
+
# Constant BANK_TRANSFER_JAPAN for EPaymentMethod
|
490
|
+
BANK_TRANSFER_JAPAN = 37
|
491
|
+
# Constant PAY_EASY_JAPAN for EPaymentMethod
|
492
|
+
PAY_EASY_JAPAN = 38
|
493
|
+
# Constant ZONG for EPaymentMethod
|
494
|
+
ZONG = 39
|
495
|
+
# Constant CULTURE_VOUCHER for EPaymentMethod
|
496
|
+
CULTURE_VOUCHER = 40
|
497
|
+
# Constant BOOK_VOUCHER for EPaymentMethod
|
498
|
+
BOOK_VOUCHER = 41
|
499
|
+
# Constant HAPPYMONEY_VOUCHER for EPaymentMethod
|
500
|
+
HAPPYMONEY_VOUCHER = 42
|
501
|
+
# Constant CONVENIENT_STORE_VOUCHER for EPaymentMethod
|
502
|
+
CONVENIENT_STORE_VOUCHER = 43
|
503
|
+
# Constant GAME_VOUCHER for EPaymentMethod
|
504
|
+
GAME_VOUCHER = 44
|
505
|
+
# Constant MULTIBANCO for EPaymentMethod
|
506
|
+
MULTIBANCO = 45
|
507
|
+
# Constant PAYSHOP for EPaymentMethod
|
508
|
+
PAYSHOP = 46
|
509
|
+
# Constant MAESTRO for EPaymentMethod
|
510
|
+
MAESTRO = 47
|
511
|
+
# Constant OXXO for EPaymentMethod
|
512
|
+
OXXO = 48
|
513
|
+
# Constant TODITO_CASH for EPaymentMethod
|
514
|
+
TODITO_CASH = 49
|
515
|
+
# Constant CARNET for EPaymentMethod
|
516
|
+
CARNET = 50
|
517
|
+
# Constant SPEI for EPaymentMethod
|
518
|
+
SPEI = 51
|
519
|
+
# Constant THREE_PAY for EPaymentMethod
|
520
|
+
THREE_PAY = 52
|
521
|
+
# Constant IS_BANK for EPaymentMethod
|
522
|
+
IS_BANK = 53
|
523
|
+
# Constant GARANTI for EPaymentMethod
|
524
|
+
GARANTI = 54
|
525
|
+
# Constant AKBANK for EPaymentMethod
|
526
|
+
AKBANK = 55
|
527
|
+
# Constant YAPI_KREDI for EPaymentMethod
|
528
|
+
YAPI_KREDI = 56
|
529
|
+
# Constant HALKBANK for EPaymentMethod
|
530
|
+
HALKBANK = 57
|
531
|
+
# Constant BANK_ASYA for EPaymentMethod
|
532
|
+
BANK_ASYA = 58
|
533
|
+
# Constant FINANSBANK for EPaymentMethod
|
534
|
+
FINANSBANK = 59
|
535
|
+
# Constant DENIZ_BANK for EPaymentMethod
|
536
|
+
DENIZ_BANK = 60
|
537
|
+
# Constant PTT for EPaymentMethod
|
538
|
+
PTT = 61
|
539
|
+
# Constant CASH_U for EPaymentMethod
|
540
|
+
CASH_U = 62
|
541
|
+
# Constant ONE_CARD for EPaymentMethod
|
542
|
+
ONE_CARD = 63
|
543
|
+
# Constant AUTO_GRANT for EPaymentMethod
|
544
|
+
AUTO_GRANT = 64
|
545
|
+
# Constant WEB_MONEY_JAPAN for EPaymentMethod
|
546
|
+
WEB_MONEY_JAPAN = 65
|
547
|
+
# Constant SMART2_PAY_TEST for EPaymentMethod
|
548
|
+
SMART2_PAY_TEST = 66
|
549
|
+
# Constant WALLET for EPaymentMethod
|
550
|
+
WALLET = 128
|
551
|
+
# Constant VALVE for EPaymentMethod
|
552
|
+
VALVE = 129
|
553
|
+
# Constant STEAM_PRESS_MASTER for EPaymentMethod
|
554
|
+
STEAM_PRESS_MASTER = 130
|
555
|
+
# Constant STORE_PROMOTION for EPaymentMethod
|
556
|
+
STORE_PROMOTION = 131
|
557
|
+
# Constant OEM_TICKET for EPaymentMethod
|
558
|
+
OEM_TICKET = 256
|
559
|
+
# Constant SPLIT for EPaymentMethod
|
560
|
+
SPLIT = 512
|
561
|
+
# Constant COMPLIMENTARY for EPaymentMethod
|
562
|
+
COMPLIMENTARY = 1024
|
563
|
+
end
|
564
|
+
|
565
|
+
# Represents the EIntroducerRouting enum
|
566
|
+
class EIntroducerRouting
|
567
|
+
# Data type of EIntroducerRouting
|
568
|
+
DATA_TYPE = 'int'
|
569
|
+
# Constant FILE_SHARE for EIntroducerRouting
|
570
|
+
FILE_SHARE = 0
|
571
|
+
# Constant P2_P_VOICE_CHAT for EIntroducerRouting
|
572
|
+
P2_P_VOICE_CHAT = 1
|
573
|
+
# Constant P2_P_NETWORKING for EIntroducerRouting
|
574
|
+
P2_P_NETWORKING = 2
|
575
|
+
end
|
576
|
+
|
577
|
+
# Represents the EServerFlags enum
|
578
|
+
class EServerFlags
|
579
|
+
# Data type of EServerFlags
|
580
|
+
DATA_TYPE = 'flags'
|
581
|
+
# Constant NONE for EServerFlags
|
582
|
+
NONE = 0
|
583
|
+
# Constant ACTIVE for EServerFlags
|
584
|
+
ACTIVE = 1
|
585
|
+
# Constant SECURE for EServerFlags
|
586
|
+
SECURE = 2
|
587
|
+
# Constant DEDICATED for EServerFlags
|
588
|
+
DEDICATED = 4
|
589
|
+
# Constant LINUX for EServerFlags
|
590
|
+
LINUX = 8
|
591
|
+
# Constant PASSWORDED for EServerFlags
|
592
|
+
PASSWORDED = 16
|
593
|
+
# Constant PRIVATE for EServerFlags
|
594
|
+
PRIVATE = 32
|
595
|
+
end
|
596
|
+
|
597
|
+
# Represents the EDenyReason enum
|
598
|
+
class EDenyReason
|
599
|
+
# Data type of EDenyReason
|
600
|
+
DATA_TYPE = 'int'
|
601
|
+
# Constant INVALID_VERSION for EDenyReason
|
602
|
+
INVALID_VERSION = 1
|
603
|
+
# Constant GENERIC for EDenyReason
|
604
|
+
GENERIC = 2
|
605
|
+
# Constant NOT_LOGGED_ON for EDenyReason
|
606
|
+
NOT_LOGGED_ON = 3
|
607
|
+
# Constant NO_LICENSE for EDenyReason
|
608
|
+
NO_LICENSE = 4
|
609
|
+
# Constant CHEATER for EDenyReason
|
610
|
+
CHEATER = 5
|
611
|
+
# Constant LOGGED_IN_ELSE_WHERE for EDenyReason
|
612
|
+
LOGGED_IN_ELSE_WHERE = 6
|
613
|
+
# Constant UNKNOWN_TEXT for EDenyReason
|
614
|
+
UNKNOWN_TEXT = 7
|
615
|
+
# Constant INCOMPATIBLE_ANTICHEAT for EDenyReason
|
616
|
+
INCOMPATIBLE_ANTICHEAT = 8
|
617
|
+
# Constant MEMORY_CORRUPTION for EDenyReason
|
618
|
+
MEMORY_CORRUPTION = 9
|
619
|
+
# Constant INCOMPATIBLE_SOFTWARE for EDenyReason
|
620
|
+
INCOMPATIBLE_SOFTWARE = 10
|
621
|
+
# Constant STEAM_CONNECTION_LOST for EDenyReason
|
622
|
+
STEAM_CONNECTION_LOST = 11
|
623
|
+
# Constant STEAM_CONNECTION_ERROR for EDenyReason
|
624
|
+
STEAM_CONNECTION_ERROR = 12
|
625
|
+
# Constant STEAM_RESPONSE_TIMED_OUT for EDenyReason
|
626
|
+
STEAM_RESPONSE_TIMED_OUT = 13
|
627
|
+
# Constant STEAM_VALIDATION_STALLED for EDenyReason
|
628
|
+
STEAM_VALIDATION_STALLED = 14
|
629
|
+
# Constant STEAM_OWNER_LEFT_GUEST_USER for EDenyReason
|
630
|
+
STEAM_OWNER_LEFT_GUEST_USER = 15
|
631
|
+
end
|
632
|
+
|
633
|
+
# Represents the EClanRank enum
|
634
|
+
class EClanRank
|
635
|
+
# Data type of EClanRank
|
636
|
+
DATA_TYPE = 'int'
|
637
|
+
# Constant NONE for EClanRank
|
638
|
+
NONE = 0
|
639
|
+
# Constant OWNER for EClanRank
|
640
|
+
OWNER = 1
|
641
|
+
# Constant OFFICER for EClanRank
|
642
|
+
OFFICER = 2
|
643
|
+
# Constant MEMBER for EClanRank
|
644
|
+
MEMBER = 3
|
645
|
+
# Constant MODERATOR for EClanRank
|
646
|
+
MODERATOR = 4
|
647
|
+
end
|
648
|
+
|
649
|
+
# Represents the EClanRelationship enum
|
650
|
+
class EClanRelationship
|
651
|
+
# Data type of EClanRelationship
|
652
|
+
DATA_TYPE = 'int'
|
653
|
+
# Constant NONE for EClanRelationship
|
654
|
+
NONE = 0
|
655
|
+
# Constant BLOCKED for EClanRelationship
|
656
|
+
BLOCKED = 1
|
657
|
+
# Constant INVITED for EClanRelationship
|
658
|
+
INVITED = 2
|
659
|
+
# Constant MEMBER for EClanRelationship
|
660
|
+
MEMBER = 3
|
661
|
+
# Constant KICKED for EClanRelationship
|
662
|
+
KICKED = 4
|
663
|
+
# Constant KICK_ACKNOWLEDGED for EClanRelationship
|
664
|
+
KICK_ACKNOWLEDGED = 5
|
665
|
+
end
|
666
|
+
|
667
|
+
# Represents the EAuthSessionResponse enum
|
668
|
+
class EAuthSessionResponse
|
669
|
+
# Data type of EAuthSessionResponse
|
670
|
+
DATA_TYPE = 'int'
|
671
|
+
# Constant OK for EAuthSessionResponse
|
672
|
+
OK = 0
|
673
|
+
# Constant USER_NOT_CONNECTED_TO_STEAM for EAuthSessionResponse
|
674
|
+
USER_NOT_CONNECTED_TO_STEAM = 1
|
675
|
+
# Constant NO_LICENSE_OR_EXPIRED for EAuthSessionResponse
|
676
|
+
NO_LICENSE_OR_EXPIRED = 2
|
677
|
+
# Constant VAC_BANNED for EAuthSessionResponse
|
678
|
+
VAC_BANNED = 3
|
679
|
+
# Constant LOGGED_IN_ELSE_WHERE for EAuthSessionResponse
|
680
|
+
LOGGED_IN_ELSE_WHERE = 4
|
681
|
+
# Constant VAC_CHECK_TIMED_OUT for EAuthSessionResponse
|
682
|
+
VAC_CHECK_TIMED_OUT = 5
|
683
|
+
# Constant AUTH_TICKET_CANCELED for EAuthSessionResponse
|
684
|
+
AUTH_TICKET_CANCELED = 6
|
685
|
+
# Constant AUTH_TICKET_INVALID_ALREADY_USED for EAuthSessionResponse
|
686
|
+
AUTH_TICKET_INVALID_ALREADY_USED = 7
|
687
|
+
# Constant AUTH_TICKET_INVALID for EAuthSessionResponse
|
688
|
+
AUTH_TICKET_INVALID = 8
|
689
|
+
# Constant PUBLISHER_ISSUED_BAN for EAuthSessionResponse
|
690
|
+
PUBLISHER_ISSUED_BAN = 9
|
691
|
+
end
|
692
|
+
|
693
|
+
# Represents the EChatRoomEnterResponse enum
|
694
|
+
class EChatRoomEnterResponse
|
695
|
+
# Data type of EChatRoomEnterResponse
|
696
|
+
DATA_TYPE = 'int'
|
697
|
+
# Constant SUCCESS for EChatRoomEnterResponse
|
698
|
+
SUCCESS = 1
|
699
|
+
# Constant DOESNT_EXIST for EChatRoomEnterResponse
|
700
|
+
DOESNT_EXIST = 2
|
701
|
+
# Constant NOT_ALLOWED for EChatRoomEnterResponse
|
702
|
+
NOT_ALLOWED = 3
|
703
|
+
# Constant FULL for EChatRoomEnterResponse
|
704
|
+
FULL = 4
|
705
|
+
# Constant ERROR for EChatRoomEnterResponse
|
706
|
+
ERROR = 5
|
707
|
+
# Constant BANNED for EChatRoomEnterResponse
|
708
|
+
BANNED = 6
|
709
|
+
# Constant LIMITED for EChatRoomEnterResponse
|
710
|
+
LIMITED = 7
|
711
|
+
# Constant CLAN_DISABLED for EChatRoomEnterResponse
|
712
|
+
CLAN_DISABLED = 8
|
713
|
+
# Constant COMMUNITY_BAN for EChatRoomEnterResponse
|
714
|
+
COMMUNITY_BAN = 9
|
715
|
+
# Constant MEMBER_BLOCKED_YOU for EChatRoomEnterResponse
|
716
|
+
MEMBER_BLOCKED_YOU = 10
|
717
|
+
# Constant YOU_BLOCKED_MEMBER for EChatRoomEnterResponse
|
718
|
+
YOU_BLOCKED_MEMBER = 11
|
719
|
+
# Constant NO_RANKING_DATA_LOBBY for EChatRoomEnterResponse
|
720
|
+
NO_RANKING_DATA_LOBBY = 12
|
721
|
+
# Constant NO_RANKING_DATA_USER for EChatRoomEnterResponse
|
722
|
+
NO_RANKING_DATA_USER = 13
|
723
|
+
# Constant RANK_OUT_OF_RANGE for EChatRoomEnterResponse
|
724
|
+
RANK_OUT_OF_RANGE = 14
|
725
|
+
end
|
726
|
+
|
727
|
+
# Represents the EChatRoomType enum
|
728
|
+
class EChatRoomType
|
729
|
+
# Data type of EChatRoomType
|
730
|
+
DATA_TYPE = 'int'
|
731
|
+
# Constant FRIEND for EChatRoomType
|
732
|
+
FRIEND = 1
|
733
|
+
# Constant MUC for EChatRoomType
|
734
|
+
MUC = 2
|
735
|
+
# Constant LOBBY for EChatRoomType
|
736
|
+
LOBBY = 3
|
737
|
+
end
|
738
|
+
|
739
|
+
# Represents the EChatInfoType enum
|
740
|
+
class EChatInfoType
|
741
|
+
# Data type of EChatInfoType
|
742
|
+
DATA_TYPE = 'int'
|
743
|
+
# Constant STATE_CHANGE for EChatInfoType
|
744
|
+
STATE_CHANGE = 1
|
745
|
+
# Constant INFO_UPDATE for EChatInfoType
|
746
|
+
INFO_UPDATE = 2
|
747
|
+
# Constant MEMBER_LIMIT_CHANGE for EChatInfoType
|
748
|
+
MEMBER_LIMIT_CHANGE = 3
|
749
|
+
end
|
750
|
+
|
751
|
+
# Represents the EChatAction enum
|
752
|
+
class EChatAction
|
753
|
+
# Data type of EChatAction
|
754
|
+
DATA_TYPE = 'int'
|
755
|
+
# Constant INVITE_CHAT for EChatAction
|
756
|
+
INVITE_CHAT = 1
|
757
|
+
# Constant KICK for EChatAction
|
758
|
+
KICK = 2
|
759
|
+
# Constant BAN for EChatAction
|
760
|
+
BAN = 3
|
761
|
+
# Constant UN_BAN for EChatAction
|
762
|
+
UN_BAN = 4
|
763
|
+
# Constant START_VOICE_SPEAK for EChatAction
|
764
|
+
START_VOICE_SPEAK = 5
|
765
|
+
# Constant END_VOICE_SPEAK for EChatAction
|
766
|
+
END_VOICE_SPEAK = 6
|
767
|
+
# Constant LOCK_CHAT for EChatAction
|
768
|
+
LOCK_CHAT = 7
|
769
|
+
# Constant UNLOCK_CHAT for EChatAction
|
770
|
+
UNLOCK_CHAT = 8
|
771
|
+
# Constant CLOSE_CHAT for EChatAction
|
772
|
+
CLOSE_CHAT = 9
|
773
|
+
# Constant SET_JOINABLE for EChatAction
|
774
|
+
SET_JOINABLE = 10
|
775
|
+
# Constant SET_UNJOINABLE for EChatAction
|
776
|
+
SET_UNJOINABLE = 11
|
777
|
+
# Constant SET_OWNER for EChatAction
|
778
|
+
SET_OWNER = 12
|
779
|
+
# Constant SET_INVISIBLE_TO_FRIENDS for EChatAction
|
780
|
+
SET_INVISIBLE_TO_FRIENDS = 13
|
781
|
+
# Constant SET_VISIBLE_TO_FRIENDS for EChatAction
|
782
|
+
SET_VISIBLE_TO_FRIENDS = 14
|
783
|
+
# Constant SET_MODERATED for EChatAction
|
784
|
+
SET_MODERATED = 15
|
785
|
+
# Constant SET_UNMODERATED for EChatAction
|
786
|
+
SET_UNMODERATED = 16
|
787
|
+
end
|
788
|
+
|
789
|
+
# Represents the EChatActionResult enum
|
790
|
+
class EChatActionResult
|
791
|
+
# Data type of EChatActionResult
|
792
|
+
DATA_TYPE = 'int'
|
793
|
+
# Constant SUCCESS for EChatActionResult
|
794
|
+
SUCCESS = 1
|
795
|
+
# Constant ERROR for EChatActionResult
|
796
|
+
ERROR = 2
|
797
|
+
# Constant NOT_PERMITTED for EChatActionResult
|
798
|
+
NOT_PERMITTED = 3
|
799
|
+
# Constant NOT_ALLOWED_ON_CLAN_MEMBER for EChatActionResult
|
800
|
+
NOT_ALLOWED_ON_CLAN_MEMBER = 4
|
801
|
+
# Constant NOT_ALLOWED_ON_BANNED_USER for EChatActionResult
|
802
|
+
NOT_ALLOWED_ON_BANNED_USER = 5
|
803
|
+
# Constant NOT_ALLOWED_ON_CHAT_OWNER for EChatActionResult
|
804
|
+
NOT_ALLOWED_ON_CHAT_OWNER = 6
|
805
|
+
# Constant NOT_ALLOWED_ON_SELF for EChatActionResult
|
806
|
+
NOT_ALLOWED_ON_SELF = 7
|
807
|
+
# Constant CHAT_DOESNT_EXIST for EChatActionResult
|
808
|
+
CHAT_DOESNT_EXIST = 8
|
809
|
+
# Constant CHAT_FULL for EChatActionResult
|
810
|
+
CHAT_FULL = 9
|
811
|
+
# Constant VOICE_SLOTS_FULL for EChatActionResult
|
812
|
+
VOICE_SLOTS_FULL = 10
|
813
|
+
end
|
814
|
+
|
815
|
+
# Represents the EAppInfoSection enum
|
816
|
+
class EAppInfoSection
|
817
|
+
# Data type of EAppInfoSection
|
818
|
+
DATA_TYPE = 'int'
|
819
|
+
# Constant UNKNOWN for EAppInfoSection
|
820
|
+
UNKNOWN = 0
|
821
|
+
# Constant ALL for EAppInfoSection
|
822
|
+
ALL = 1
|
823
|
+
# Constant FIRST for EAppInfoSection
|
824
|
+
FIRST = 2
|
825
|
+
# Constant COMMON for EAppInfoSection
|
826
|
+
COMMON = 2
|
827
|
+
# Constant EXTENDED for EAppInfoSection
|
828
|
+
EXTENDED = 3
|
829
|
+
# Constant CONFIG for EAppInfoSection
|
830
|
+
CONFIG = 4
|
831
|
+
# Constant STATS for EAppInfoSection
|
832
|
+
STATS = 5
|
833
|
+
# Constant INSTALL for EAppInfoSection
|
834
|
+
INSTALL = 6
|
835
|
+
# Constant DEPOTS for EAppInfoSection
|
836
|
+
DEPOTS = 7
|
837
|
+
# Constant VAC for EAppInfoSection
|
838
|
+
VAC = 8
|
839
|
+
# Constant DRM for EAppInfoSection
|
840
|
+
DRM = 9
|
841
|
+
# Constant UFS for EAppInfoSection
|
842
|
+
UFS = 10
|
843
|
+
# Constant OGG for EAppInfoSection
|
844
|
+
OGG = 11
|
845
|
+
# Constant ITEMS for EAppInfoSection
|
846
|
+
ITEMS = 12
|
847
|
+
# Constant ITEMS_UNUSED for EAppInfoSection
|
848
|
+
ITEMS_UNUSED = 12
|
849
|
+
# Constant POLICIES for EAppInfoSection
|
850
|
+
POLICIES = 13
|
851
|
+
# Constant SYS_REQS for EAppInfoSection
|
852
|
+
SYS_REQS = 14
|
853
|
+
# Constant COMMUNITY for EAppInfoSection
|
854
|
+
COMMUNITY = 15
|
855
|
+
# Constant STORE for EAppInfoSection
|
856
|
+
STORE = 16
|
857
|
+
# Constant MAX for EAppInfoSection
|
858
|
+
MAX = 17
|
859
|
+
end
|
860
|
+
|
861
|
+
# Represents the EContentDownloadSourceType enum
|
862
|
+
class EContentDownloadSourceType
|
863
|
+
# Data type of EContentDownloadSourceType
|
864
|
+
DATA_TYPE = 'int'
|
865
|
+
# Constant INVALID for EContentDownloadSourceType
|
866
|
+
INVALID = 0
|
867
|
+
# Constant CS for EContentDownloadSourceType
|
868
|
+
CS = 1
|
869
|
+
# Constant CDN for EContentDownloadSourceType
|
870
|
+
CDN = 2
|
871
|
+
# Constant LCS for EContentDownloadSourceType
|
872
|
+
LCS = 3
|
873
|
+
# Constant PROXY_CACHE for EContentDownloadSourceType
|
874
|
+
PROXY_CACHE = 4
|
875
|
+
# Constant MAX for EContentDownloadSourceType
|
876
|
+
MAX = 5
|
877
|
+
end
|
878
|
+
|
879
|
+
# Represents the EPlatformType enum
|
880
|
+
class EPlatformType
|
881
|
+
# Data type of EPlatformType
|
882
|
+
DATA_TYPE = 'int'
|
883
|
+
# Constant UNKNOWN for EPlatformType
|
884
|
+
UNKNOWN = 0
|
885
|
+
# Constant WIN32 for EPlatformType
|
886
|
+
WIN32 = 1
|
887
|
+
# Constant WIN64 for EPlatformType
|
888
|
+
WIN64 = 2
|
889
|
+
# Constant LINUX for EPlatformType
|
890
|
+
LINUX = 3
|
891
|
+
# Constant OSX for EPlatformType
|
892
|
+
OSX = 4
|
893
|
+
# Constant PS3 for EPlatformType
|
894
|
+
PS3 = 5
|
895
|
+
# Constant MAX for EPlatformType
|
896
|
+
MAX = 6
|
897
|
+
end
|
898
|
+
|
899
|
+
# Represents the EOSType enum
|
900
|
+
class EOSType
|
901
|
+
# Data type of EOSType
|
902
|
+
DATA_TYPE = 'int'
|
903
|
+
# Constant UNKNOWN for EOSType
|
904
|
+
UNKNOWN = -1
|
905
|
+
# Constant UMQ for EOSType
|
906
|
+
UMQ = -400
|
907
|
+
# Constant PS3 for EOSType
|
908
|
+
PS3 = -300
|
909
|
+
# Constant MAC_OS_UNKNOWN for EOSType
|
910
|
+
MAC_OS_UNKNOWN = -102
|
911
|
+
# Constant MAC_OS104 for EOSType
|
912
|
+
MAC_OS104 = -101
|
913
|
+
# Constant MAC_OS105 for EOSType
|
914
|
+
MAC_OS105 = -100
|
915
|
+
# Constant MAC_OS1058 for EOSType
|
916
|
+
MAC_OS1058 = -99
|
917
|
+
# Constant MAC_OS106 for EOSType
|
918
|
+
MAC_OS106 = -95
|
919
|
+
# Constant MAC_OS1063 for EOSType
|
920
|
+
MAC_OS1063 = -94
|
921
|
+
# Constant MAC_OS1064_SLGU for EOSType
|
922
|
+
MAC_OS1064_SLGU = -93
|
923
|
+
# Constant MAC_OS1067 for EOSType
|
924
|
+
MAC_OS1067 = -92
|
925
|
+
# Constant MAC_OS107 for EOSType
|
926
|
+
MAC_OS107 = -90
|
927
|
+
# Constant MAC_OS108 for EOSType
|
928
|
+
MAC_OS108 = -89
|
929
|
+
# Constant MAC_OS109 for EOSType
|
930
|
+
MAC_OS109 = -88
|
931
|
+
# Constant MAC_OS1010 for EOSType
|
932
|
+
MAC_OS1010 = -87
|
933
|
+
# Constant LINUX_UNKNOWN for EOSType
|
934
|
+
LINUX_UNKNOWN = -203
|
935
|
+
# Constant LINUX22 for EOSType
|
936
|
+
LINUX22 = -202
|
937
|
+
# Constant LINUX24 for EOSType
|
938
|
+
LINUX24 = -201
|
939
|
+
# Constant LINUX26 for EOSType
|
940
|
+
LINUX26 = -200
|
941
|
+
# Constant LINUX32 for EOSType
|
942
|
+
LINUX32 = -199
|
943
|
+
# Constant LINUX35 for EOSType
|
944
|
+
LINUX35 = -198
|
945
|
+
# Constant LINUX36 for EOSType
|
946
|
+
LINUX36 = -197
|
947
|
+
# Constant LINUX310 for EOSType
|
948
|
+
LINUX310 = -196
|
949
|
+
# Constant WIN_UNKNOWN for EOSType
|
950
|
+
WIN_UNKNOWN = 0
|
951
|
+
# Constant WIN311 for EOSType
|
952
|
+
WIN311 = 1
|
953
|
+
# Constant WIN95 for EOSType
|
954
|
+
WIN95 = 2
|
955
|
+
# Constant WIN98 for EOSType
|
956
|
+
WIN98 = 3
|
957
|
+
# Constant WIN_ME for EOSType
|
958
|
+
WIN_ME = 4
|
959
|
+
# Constant WIN_NT for EOSType
|
960
|
+
WIN_NT = 5
|
961
|
+
# Constant WIN200 for EOSType
|
962
|
+
WIN200 = 6
|
963
|
+
# Constant WIN_XP for EOSType
|
964
|
+
WIN_XP = 7
|
965
|
+
# Constant WIN2003 for EOSType
|
966
|
+
WIN2003 = 8
|
967
|
+
# Constant WIN_VISTA for EOSType
|
968
|
+
WIN_VISTA = 9
|
969
|
+
# Constant WIN7 for EOSType
|
970
|
+
WIN7 = 10
|
971
|
+
# Constant WINDOWS7 for EOSType
|
972
|
+
WINDOWS7 = 10
|
973
|
+
# Constant WIN2008 for EOSType
|
974
|
+
WIN2008 = 11
|
975
|
+
# Constant WIN2012 for EOSType
|
976
|
+
WIN2012 = 12
|
977
|
+
# Constant WIN8 for EOSType
|
978
|
+
WIN8 = 13
|
979
|
+
# Constant WINDOWS8 for EOSType
|
980
|
+
WINDOWS8 = 13
|
981
|
+
# Constant WIN81 for EOSType
|
982
|
+
WIN81 = 14
|
983
|
+
# Constant WINDOWS81 for EOSType
|
984
|
+
WINDOWS81 = 14
|
985
|
+
# Constant WIN2012_R2 for EOSType
|
986
|
+
WIN2012_R2 = 15
|
987
|
+
# Constant WIN10 for EOSType
|
988
|
+
WIN10 = 16
|
989
|
+
# Constant WIN_MAX for EOSType
|
990
|
+
WIN_MAX = 15
|
991
|
+
# Constant MAX for EOSType
|
992
|
+
MAX = 26
|
993
|
+
end
|
994
|
+
|
995
|
+
# Represents the EServerType enum
|
996
|
+
class EServerType
|
997
|
+
# Data type of EServerType
|
998
|
+
DATA_TYPE = 'int'
|
999
|
+
# Constant INVALID for EServerType
|
1000
|
+
INVALID = -1
|
1001
|
+
# Constant FIRST for EServerType
|
1002
|
+
FIRST = 0
|
1003
|
+
# Constant SHELL for EServerType
|
1004
|
+
SHELL = 0
|
1005
|
+
# Constant GM for EServerType
|
1006
|
+
GM = 1
|
1007
|
+
# Constant BUM for EServerType
|
1008
|
+
BUM = 2
|
1009
|
+
# Constant AM for EServerType
|
1010
|
+
AM = 3
|
1011
|
+
# Constant BS for EServerType
|
1012
|
+
BS = 4
|
1013
|
+
# Constant VS for EServerType
|
1014
|
+
VS = 5
|
1015
|
+
# Constant ATS for EServerType
|
1016
|
+
ATS = 6
|
1017
|
+
# Constant CM for EServerType
|
1018
|
+
CM = 7
|
1019
|
+
# Constant FBS for EServerType
|
1020
|
+
FBS = 8
|
1021
|
+
# Constant FG for EServerType
|
1022
|
+
FG = 9
|
1023
|
+
# Constant BOX_MONITOR for EServerType
|
1024
|
+
BOX_MONITOR = 9
|
1025
|
+
# Constant SS for EServerType
|
1026
|
+
SS = 10
|
1027
|
+
# Constant DRMS for EServerType
|
1028
|
+
DRMS = 11
|
1029
|
+
# Constant HUB_OBSOLETE for EServerType
|
1030
|
+
HUB_OBSOLETE = 12
|
1031
|
+
# Constant CONSOLE for EServerType
|
1032
|
+
CONSOLE = 13
|
1033
|
+
# Constant ASBOBSOLETE for EServerType
|
1034
|
+
ASBOBSOLETE = 14
|
1035
|
+
# Constant PICS for EServerType
|
1036
|
+
PICS = 14
|
1037
|
+
# Constant CLIENT for EServerType
|
1038
|
+
CLIENT = 15
|
1039
|
+
# Constant BOOTSTRAP_OBSOLETE for EServerType
|
1040
|
+
BOOTSTRAP_OBSOLETE = 16
|
1041
|
+
# Constant DP for EServerType
|
1042
|
+
DP = 17
|
1043
|
+
# Constant WG for EServerType
|
1044
|
+
WG = 18
|
1045
|
+
# Constant SM for EServerType
|
1046
|
+
SM = 19
|
1047
|
+
# Constant UFS for EServerType
|
1048
|
+
UFS = 21
|
1049
|
+
# Constant UTIL for EServerType
|
1050
|
+
UTIL = 23
|
1051
|
+
# Constant DSS for EServerType
|
1052
|
+
DSS = 24
|
1053
|
+
# Constant COMMUNITY for EServerType
|
1054
|
+
COMMUNITY = 24
|
1055
|
+
# Constant P2_P_RELAY_OBSOLETE for EServerType
|
1056
|
+
P2_P_RELAY_OBSOLETE = 25
|
1057
|
+
# Constant APP_INFORMATION for EServerType
|
1058
|
+
APP_INFORMATION = 26
|
1059
|
+
# Constant SPARE for EServerType
|
1060
|
+
SPARE = 27
|
1061
|
+
# Constant FTS for EServerType
|
1062
|
+
FTS = 28
|
1063
|
+
# Constant EPM for EServerType
|
1064
|
+
EPM = 29
|
1065
|
+
# Constant PS for EServerType
|
1066
|
+
PS = 30
|
1067
|
+
# Constant IS for EServerType
|
1068
|
+
IS = 31
|
1069
|
+
# Constant CCS for EServerType
|
1070
|
+
CCS = 32
|
1071
|
+
# Constant DFS for EServerType
|
1072
|
+
DFS = 33
|
1073
|
+
# Constant LBS for EServerType
|
1074
|
+
LBS = 34
|
1075
|
+
# Constant MDS for EServerType
|
1076
|
+
MDS = 35
|
1077
|
+
# Constant CS for EServerType
|
1078
|
+
CS = 36
|
1079
|
+
# Constant GC for EServerType
|
1080
|
+
GC = 37
|
1081
|
+
# Constant NS for EServerType
|
1082
|
+
NS = 38
|
1083
|
+
# Constant OGS for EServerType
|
1084
|
+
OGS = 39
|
1085
|
+
# Constant WEB_API for EServerType
|
1086
|
+
WEB_API = 40
|
1087
|
+
# Constant UDS for EServerType
|
1088
|
+
UDS = 41
|
1089
|
+
# Constant MMS for EServerType
|
1090
|
+
MMS = 42
|
1091
|
+
# Constant GMS for EServerType
|
1092
|
+
GMS = 43
|
1093
|
+
# Constant KGS for EServerType
|
1094
|
+
KGS = 44
|
1095
|
+
# Constant UCM for EServerType
|
1096
|
+
UCM = 45
|
1097
|
+
# Constant RM for EServerType
|
1098
|
+
RM = 46
|
1099
|
+
# Constant FS for EServerType
|
1100
|
+
FS = 47
|
1101
|
+
# Constant ECON for EServerType
|
1102
|
+
ECON = 48
|
1103
|
+
# Constant BACKPACK for EServerType
|
1104
|
+
BACKPACK = 49
|
1105
|
+
# Constant UGS for EServerType
|
1106
|
+
UGS = 50
|
1107
|
+
# Constant STORE for EServerType
|
1108
|
+
STORE = 51
|
1109
|
+
# Constant MONEY_STATS for EServerType
|
1110
|
+
MONEY_STATS = 52
|
1111
|
+
# Constant CRE for EServerType
|
1112
|
+
CRE = 53
|
1113
|
+
# Constant UMQ for EServerType
|
1114
|
+
UMQ = 54
|
1115
|
+
# Constant WORKSHOP for EServerType
|
1116
|
+
WORKSHOP = 55
|
1117
|
+
# Constant BRP for EServerType
|
1118
|
+
BRP = 56
|
1119
|
+
# Constant GCH for EServerType
|
1120
|
+
GCH = 57
|
1121
|
+
# Constant MPAS for EServerType
|
1122
|
+
MPAS = 58
|
1123
|
+
# Constant TRADE for EServerType
|
1124
|
+
TRADE = 59
|
1125
|
+
# Constant SECRETS for EServerType
|
1126
|
+
SECRETS = 60
|
1127
|
+
# Constant LOGSINK for EServerType
|
1128
|
+
LOGSINK = 61
|
1129
|
+
# Constant MARKET for EServerType
|
1130
|
+
MARKET = 62
|
1131
|
+
# Constant QUEST for EServerType
|
1132
|
+
QUEST = 63
|
1133
|
+
# Constant WDS for EServerType
|
1134
|
+
WDS = 64
|
1135
|
+
# Constant ACS for EServerType
|
1136
|
+
ACS = 65
|
1137
|
+
# Constant PNP for EServerType
|
1138
|
+
PNP = 66
|
1139
|
+
# Constant MAX for EServerType
|
1140
|
+
MAX = 67
|
1141
|
+
end
|
1142
|
+
|
1143
|
+
# Represents the EBillingType enum
|
1144
|
+
class EBillingType
|
1145
|
+
# Data type of EBillingType
|
1146
|
+
DATA_TYPE = 'int'
|
1147
|
+
# Constant NO_COST for EBillingType
|
1148
|
+
NO_COST = 0
|
1149
|
+
# Constant BILL_ONCE_ONLY for EBillingType
|
1150
|
+
BILL_ONCE_ONLY = 1
|
1151
|
+
# Constant BILL_MONTHLY for EBillingType
|
1152
|
+
BILL_MONTHLY = 2
|
1153
|
+
# Constant PROOF_OF_PREPURCHASE_ONLY for EBillingType
|
1154
|
+
PROOF_OF_PREPURCHASE_ONLY = 3
|
1155
|
+
# Constant GUEST_PASS for EBillingType
|
1156
|
+
GUEST_PASS = 4
|
1157
|
+
# Constant HARDWARE_PROMO for EBillingType
|
1158
|
+
HARDWARE_PROMO = 5
|
1159
|
+
# Constant GIFT for EBillingType
|
1160
|
+
GIFT = 6
|
1161
|
+
# Constant AUTO_GRANT for EBillingType
|
1162
|
+
AUTO_GRANT = 7
|
1163
|
+
# Constant OEM_TICKET for EBillingType
|
1164
|
+
OEM_TICKET = 8
|
1165
|
+
# Constant RECURRING_OPTION for EBillingType
|
1166
|
+
RECURRING_OPTION = 9
|
1167
|
+
# Constant NUM_BILLING_TYPES for EBillingType
|
1168
|
+
NUM_BILLING_TYPES = 10
|
1169
|
+
end
|
1170
|
+
|
1171
|
+
# Represents the EActivationCodeClass enum
|
1172
|
+
class EActivationCodeClass
|
1173
|
+
# Data type of EActivationCodeClass
|
1174
|
+
DATA_TYPE = 'uint'
|
1175
|
+
# Constant WON_CD_KEY for EActivationCodeClass
|
1176
|
+
WON_CD_KEY = 0
|
1177
|
+
# Constant VALVE_CD_KEY for EActivationCodeClass
|
1178
|
+
VALVE_CD_KEY = 1
|
1179
|
+
# Constant DOOM3_CD_KEY for EActivationCodeClass
|
1180
|
+
DOOM3_CD_KEY = 2
|
1181
|
+
# Constant DB_LOOKUP for EActivationCodeClass
|
1182
|
+
DB_LOOKUP = 3
|
1183
|
+
# Constant STEAM2010_KEY for EActivationCodeClass
|
1184
|
+
STEAM2010_KEY = 4
|
1185
|
+
# Constant MAX for EActivationCodeClass
|
1186
|
+
MAX = 5
|
1187
|
+
# Constant TEST for EActivationCodeClass
|
1188
|
+
TEST = 2147483647
|
1189
|
+
# Constant INVALID for EActivationCodeClass
|
1190
|
+
INVALID = 4294967295
|
1191
|
+
end
|
1192
|
+
|
1193
|
+
# Represents the EChatMemberStateChange enum
|
1194
|
+
class EChatMemberStateChange
|
1195
|
+
# Data type of EChatMemberStateChange
|
1196
|
+
DATA_TYPE = 'flags'
|
1197
|
+
# Constant ENTERED for EChatMemberStateChange
|
1198
|
+
ENTERED = 0X01
|
1199
|
+
# Constant LEFT for EChatMemberStateChange
|
1200
|
+
LEFT = 0X02
|
1201
|
+
# Constant DISCONNECTED for EChatMemberStateChange
|
1202
|
+
DISCONNECTED = 0X04
|
1203
|
+
# Constant KICKED for EChatMemberStateChange
|
1204
|
+
KICKED = 0X08
|
1205
|
+
# Constant BANNED for EChatMemberStateChange
|
1206
|
+
BANNED = 0X10
|
1207
|
+
# Constant VOICE_SPEAKING for EChatMemberStateChange
|
1208
|
+
VOICE_SPEAKING = 0X1000
|
1209
|
+
# Constant VOICE_DONE_SPEAKING for EChatMemberStateChange
|
1210
|
+
VOICE_DONE_SPEAKING = 0X2000
|
1211
|
+
end
|
1212
|
+
|
1213
|
+
# Represents the ERegionCode enum
|
1214
|
+
class ERegionCode
|
1215
|
+
# Data type of ERegionCode
|
1216
|
+
DATA_TYPE = 'byte'
|
1217
|
+
# Constant US_EAST for ERegionCode
|
1218
|
+
US_EAST = 0x00
|
1219
|
+
# Constant US_WEST for ERegionCode
|
1220
|
+
US_WEST = 0x01
|
1221
|
+
# Constant SOUTH_AMERICA for ERegionCode
|
1222
|
+
SOUTH_AMERICA = 0x02
|
1223
|
+
# Constant EUROPE for ERegionCode
|
1224
|
+
EUROPE = 0x03
|
1225
|
+
# Constant ASIA for ERegionCode
|
1226
|
+
ASIA = 0x04
|
1227
|
+
# Constant AUSTRALIA for ERegionCode
|
1228
|
+
AUSTRALIA = 0x05
|
1229
|
+
# Constant MIDDLE_EAST for ERegionCode
|
1230
|
+
MIDDLE_EAST = 0x06
|
1231
|
+
# Constant AFRICA for ERegionCode
|
1232
|
+
AFRICA = 0x07
|
1233
|
+
# Constant WORLD for ERegionCode
|
1234
|
+
WORLD = 0xFF
|
1235
|
+
end
|
1236
|
+
|
1237
|
+
# Represents the ECurrencyCode enum
|
1238
|
+
class ECurrencyCode
|
1239
|
+
# Data type of ECurrencyCode
|
1240
|
+
DATA_TYPE = 'int'
|
1241
|
+
# Constant INVALID for ECurrencyCode
|
1242
|
+
INVALID = 0
|
1243
|
+
# Constant USD for ECurrencyCode
|
1244
|
+
USD = 1
|
1245
|
+
# Constant GBP for ECurrencyCode
|
1246
|
+
GBP = 2
|
1247
|
+
# Constant EUR for ECurrencyCode
|
1248
|
+
EUR = 3
|
1249
|
+
# Constant CHF for ECurrencyCode
|
1250
|
+
CHF = 4
|
1251
|
+
# Constant RUB for ECurrencyCode
|
1252
|
+
RUB = 5
|
1253
|
+
# Constant PLN for ECurrencyCode
|
1254
|
+
PLN = 6
|
1255
|
+
# Constant BRL for ECurrencyCode
|
1256
|
+
BRL = 7
|
1257
|
+
# Constant JPY for ECurrencyCode
|
1258
|
+
JPY = 8
|
1259
|
+
# Constant NOK for ECurrencyCode
|
1260
|
+
NOK = 9
|
1261
|
+
# Constant IDR for ECurrencyCode
|
1262
|
+
IDR = 10
|
1263
|
+
# Constant MYR for ECurrencyCode
|
1264
|
+
MYR = 11
|
1265
|
+
# Constant PHP for ECurrencyCode
|
1266
|
+
PHP = 12
|
1267
|
+
# Constant SGD for ECurrencyCode
|
1268
|
+
SGD = 13
|
1269
|
+
# Constant THB for ECurrencyCode
|
1270
|
+
THB = 14
|
1271
|
+
# Constant VND for ECurrencyCode
|
1272
|
+
VND = 15
|
1273
|
+
# Constant KRW for ECurrencyCode
|
1274
|
+
KRW = 16
|
1275
|
+
# Constant TRY for ECurrencyCode
|
1276
|
+
TRY = 17
|
1277
|
+
# Constant UAH for ECurrencyCode
|
1278
|
+
UAH = 18
|
1279
|
+
# Constant MXN for ECurrencyCode
|
1280
|
+
MXN = 19
|
1281
|
+
# Constant CAD for ECurrencyCode
|
1282
|
+
CAD = 20
|
1283
|
+
# Constant AUD for ECurrencyCode
|
1284
|
+
AUD = 21
|
1285
|
+
# Constant NZD for ECurrencyCode
|
1286
|
+
NZD = 22
|
1287
|
+
# Constant CNY for ECurrencyCode
|
1288
|
+
CNY = 23
|
1289
|
+
# Constant INR for ECurrencyCode
|
1290
|
+
INR = 24
|
1291
|
+
# Constant CLP for ECurrencyCode
|
1292
|
+
CLP = 25
|
1293
|
+
# Constant PEN for ECurrencyCode
|
1294
|
+
PEN = 26
|
1295
|
+
# Constant COP for ECurrencyCode
|
1296
|
+
COP = 27
|
1297
|
+
# Constant ZAR for ECurrencyCode
|
1298
|
+
ZAR = 28
|
1299
|
+
# Constant HKD for ECurrencyCode
|
1300
|
+
HKD = 29
|
1301
|
+
# Constant TWD for ECurrencyCode
|
1302
|
+
TWD = 30
|
1303
|
+
# Constant SAR for ECurrencyCode
|
1304
|
+
SAR = 31
|
1305
|
+
# Constant AED for ECurrencyCode
|
1306
|
+
AED = 32
|
1307
|
+
# Constant MAX for ECurrencyCode
|
1308
|
+
MAX = 33
|
1309
|
+
end
|
1310
|
+
|
1311
|
+
# Represents the EDepotFileFlag enum
|
1312
|
+
class EDepotFileFlag
|
1313
|
+
# Data type of EDepotFileFlag
|
1314
|
+
DATA_TYPE = 'flags'
|
1315
|
+
# Constant USER_CONFIG for EDepotFileFlag
|
1316
|
+
USER_CONFIG = 1
|
1317
|
+
# Constant VERSIONED_USER_CONFIG for EDepotFileFlag
|
1318
|
+
VERSIONED_USER_CONFIG = 2
|
1319
|
+
# Constant ENCRYPTED for EDepotFileFlag
|
1320
|
+
ENCRYPTED = 4
|
1321
|
+
# Constant READ_ONLY for EDepotFileFlag
|
1322
|
+
READ_ONLY = 8
|
1323
|
+
# Constant HIDDEN for EDepotFileFlag
|
1324
|
+
HIDDEN = 16
|
1325
|
+
# Constant EXECUTABLE for EDepotFileFlag
|
1326
|
+
EXECUTABLE = 32
|
1327
|
+
# Constant DIRECTORY for EDepotFileFlag
|
1328
|
+
DIRECTORY = 64
|
1329
|
+
# Constant CUSTOM_EXECUTABLE for EDepotFileFlag
|
1330
|
+
CUSTOM_EXECUTABLE = 128
|
1331
|
+
# Constant INSTALL_SCRIPT for EDepotFileFlag
|
1332
|
+
INSTALL_SCRIPT = 256
|
1333
|
+
end
|
1334
|
+
|
1335
|
+
# Represents the EWorkshopEnumerationType enum
|
1336
|
+
class EWorkshopEnumerationType
|
1337
|
+
# Data type of EWorkshopEnumerationType
|
1338
|
+
DATA_TYPE = 'int'
|
1339
|
+
# Constant RANKED_BY_VOTE for EWorkshopEnumerationType
|
1340
|
+
RANKED_BY_VOTE = 0
|
1341
|
+
# Constant RECENT for EWorkshopEnumerationType
|
1342
|
+
RECENT = 1
|
1343
|
+
# Constant TRENDING for EWorkshopEnumerationType
|
1344
|
+
TRENDING = 2
|
1345
|
+
# Constant FAVORITE_OF_FRIENDS for EWorkshopEnumerationType
|
1346
|
+
FAVORITE_OF_FRIENDS = 3
|
1347
|
+
# Constant VOTED_BY_FRIENDS for EWorkshopEnumerationType
|
1348
|
+
VOTED_BY_FRIENDS = 4
|
1349
|
+
# Constant CONTENT_BY_FRIENDS for EWorkshopEnumerationType
|
1350
|
+
CONTENT_BY_FRIENDS = 5
|
1351
|
+
# Constant RECENT_FROM_FOLLOWED_USERS for EWorkshopEnumerationType
|
1352
|
+
RECENT_FROM_FOLLOWED_USERS = 6
|
1353
|
+
end
|
1354
|
+
|
1355
|
+
# Represents the EPublishedFileVisibility enum
|
1356
|
+
class EPublishedFileVisibility
|
1357
|
+
# Data type of EPublishedFileVisibility
|
1358
|
+
DATA_TYPE = 'int'
|
1359
|
+
# Constant PUBLIC for EPublishedFileVisibility
|
1360
|
+
PUBLIC = 0
|
1361
|
+
# Constant FRIENDS_ONLY for EPublishedFileVisibility
|
1362
|
+
FRIENDS_ONLY = 1
|
1363
|
+
# Constant PRIVATE for EPublishedFileVisibility
|
1364
|
+
PRIVATE = 2
|
1365
|
+
end
|
1366
|
+
|
1367
|
+
# Represents the EWorkshopFileType enum
|
1368
|
+
class EWorkshopFileType
|
1369
|
+
# Data type of EWorkshopFileType
|
1370
|
+
DATA_TYPE = 'int'
|
1371
|
+
# Constant FIRST for EWorkshopFileType
|
1372
|
+
FIRST = 0
|
1373
|
+
# Constant COMMUNITY for EWorkshopFileType
|
1374
|
+
COMMUNITY = 0
|
1375
|
+
# Constant MICROTRANSACTION for EWorkshopFileType
|
1376
|
+
MICROTRANSACTION = 1
|
1377
|
+
# Constant COLLECTION for EWorkshopFileType
|
1378
|
+
COLLECTION = 2
|
1379
|
+
# Constant ART for EWorkshopFileType
|
1380
|
+
ART = 3
|
1381
|
+
# Constant VIDEO for EWorkshopFileType
|
1382
|
+
VIDEO = 4
|
1383
|
+
# Constant SCREENSHOT for EWorkshopFileType
|
1384
|
+
SCREENSHOT = 5
|
1385
|
+
# Constant GAME for EWorkshopFileType
|
1386
|
+
GAME = 6
|
1387
|
+
# Constant SOFTWARE for EWorkshopFileType
|
1388
|
+
SOFTWARE = 7
|
1389
|
+
# Constant CONCEPT for EWorkshopFileType
|
1390
|
+
CONCEPT = 8
|
1391
|
+
# Constant WEB_GUIDE for EWorkshopFileType
|
1392
|
+
WEB_GUIDE = 9
|
1393
|
+
# Constant INTEGRATED_GUIDE for EWorkshopFileType
|
1394
|
+
INTEGRATED_GUIDE = 10
|
1395
|
+
# Constant MERCH for EWorkshopFileType
|
1396
|
+
MERCH = 11
|
1397
|
+
# Constant CONTROLLER_BINDING for EWorkshopFileType
|
1398
|
+
CONTROLLER_BINDING = 12
|
1399
|
+
# Constant STEAMWORKS_ACCESS_INVITE for EWorkshopFileType
|
1400
|
+
STEAMWORKS_ACCESS_INVITE = 13
|
1401
|
+
# Constant STEAM_VIDEO for EWorkshopFileType
|
1402
|
+
STEAM_VIDEO = 14
|
1403
|
+
# Constant GAME_MANAGED_ITEM for EWorkshopFileType
|
1404
|
+
GAME_MANAGED_ITEM = 15
|
1405
|
+
# Constant MAX for EWorkshopFileType
|
1406
|
+
MAX = 16
|
1407
|
+
end
|
1408
|
+
|
1409
|
+
# Represents the EWorkshopFileAction enum
|
1410
|
+
class EWorkshopFileAction
|
1411
|
+
# Data type of EWorkshopFileAction
|
1412
|
+
DATA_TYPE = 'int'
|
1413
|
+
# Constant PLAYED for EWorkshopFileAction
|
1414
|
+
PLAYED = 0
|
1415
|
+
# Constant COMPLETED for EWorkshopFileAction
|
1416
|
+
COMPLETED = 1
|
1417
|
+
end
|
1418
|
+
|
1419
|
+
# Represents the EEconTradeResponse enum
|
1420
|
+
class EEconTradeResponse
|
1421
|
+
# Data type of EEconTradeResponse
|
1422
|
+
DATA_TYPE = 'int'
|
1423
|
+
# Constant ACCEPTED for EEconTradeResponse
|
1424
|
+
ACCEPTED = 0
|
1425
|
+
# Constant DECLINED for EEconTradeResponse
|
1426
|
+
DECLINED = 1
|
1427
|
+
# Constant TRADE_BANNED_INITIATOR for EEconTradeResponse
|
1428
|
+
TRADE_BANNED_INITIATOR = 2
|
1429
|
+
# Constant TRADE_BANNED_TARGET for EEconTradeResponse
|
1430
|
+
TRADE_BANNED_TARGET = 3
|
1431
|
+
# Constant TARGET_ALREADY_TRADING for EEconTradeResponse
|
1432
|
+
TARGET_ALREADY_TRADING = 4
|
1433
|
+
# Constant DISABLED for EEconTradeResponse
|
1434
|
+
DISABLED = 5
|
1435
|
+
# Constant NOT_LOGGED_IN for EEconTradeResponse
|
1436
|
+
NOT_LOGGED_IN = 6
|
1437
|
+
# Constant CANCEL for EEconTradeResponse
|
1438
|
+
CANCEL = 7
|
1439
|
+
# Constant TOO_SOON for EEconTradeResponse
|
1440
|
+
TOO_SOON = 8
|
1441
|
+
# Constant TOO_SOON_PENALTY for EEconTradeResponse
|
1442
|
+
TOO_SOON_PENALTY = 9
|
1443
|
+
# Constant CONNECTION_FAILED for EEconTradeResponse
|
1444
|
+
CONNECTION_FAILED = 10
|
1445
|
+
# Constant ALREADY_TRADING for EEconTradeResponse
|
1446
|
+
ALREADY_TRADING = 11
|
1447
|
+
# Constant ALREADY_HAS_TRADE_REQUEST for EEconTradeResponse
|
1448
|
+
ALREADY_HAS_TRADE_REQUEST = 12
|
1449
|
+
# Constant NO_RESPONSE for EEconTradeResponse
|
1450
|
+
NO_RESPONSE = 13
|
1451
|
+
# Constant CYBER_CAFE_INITIATOR for EEconTradeResponse
|
1452
|
+
CYBER_CAFE_INITIATOR = 14
|
1453
|
+
# Constant CYBER_CAFE_TARGET for EEconTradeResponse
|
1454
|
+
CYBER_CAFE_TARGET = 15
|
1455
|
+
# Constant SCHOOL_LAB_INITIATOR for EEconTradeResponse
|
1456
|
+
SCHOOL_LAB_INITIATOR = 16
|
1457
|
+
# Constant SCHOOL_LAB_TARGET for EEconTradeResponse
|
1458
|
+
SCHOOL_LAB_TARGET = 16
|
1459
|
+
# Constant INITIATOR_BLOCKED_TARGET for EEconTradeResponse
|
1460
|
+
INITIATOR_BLOCKED_TARGET = 18
|
1461
|
+
# Constant INITIATOR_NEEDS_VERIFIED_EMAIL for EEconTradeResponse
|
1462
|
+
INITIATOR_NEEDS_VERIFIED_EMAIL = 20
|
1463
|
+
# Constant INITIATOR_NEEDS_STEAM_GUARD for EEconTradeResponse
|
1464
|
+
INITIATOR_NEEDS_STEAM_GUARD = 21
|
1465
|
+
# Constant TARGET_ACCOUNT_CANNOT_TRADE for EEconTradeResponse
|
1466
|
+
TARGET_ACCOUNT_CANNOT_TRADE = 22
|
1467
|
+
# Constant INITIATOR_STEAM_GUARD_DURATION for EEconTradeResponse
|
1468
|
+
INITIATOR_STEAM_GUARD_DURATION = 23
|
1469
|
+
# Constant INITIATOR_PASSWORD_RESET_PROBATION for EEconTradeResponse
|
1470
|
+
INITIATOR_PASSWORD_RESET_PROBATION = 24
|
1471
|
+
# Constant INITIATOR_NEW_DEVICE_COOLDOWN for EEconTradeResponse
|
1472
|
+
INITIATOR_NEW_DEVICE_COOLDOWN = 25
|
1473
|
+
# Constant OK_TO_DELIVER for EEconTradeResponse
|
1474
|
+
OK_TO_DELIVER = 50
|
1475
|
+
end
|
1476
|
+
|
1477
|
+
# Represents the EMarketingMessageFlags enum
|
1478
|
+
class EMarketingMessageFlags
|
1479
|
+
# Data type of EMarketingMessageFlags
|
1480
|
+
DATA_TYPE = 'flags'
|
1481
|
+
# Constant NONE for EMarketingMessageFlags
|
1482
|
+
NONE = 0
|
1483
|
+
# Constant HIGH_PRIORITY for EMarketingMessageFlags
|
1484
|
+
HIGH_PRIORITY = 1
|
1485
|
+
# Constant PLATFORM_WINDOWS for EMarketingMessageFlags
|
1486
|
+
PLATFORM_WINDOWS = 2
|
1487
|
+
# Constant PLATFORM_MAC for EMarketingMessageFlags
|
1488
|
+
PLATFORM_MAC = 4
|
1489
|
+
# Constant PLATFORM_LINUX for EMarketingMessageFlags
|
1490
|
+
PLATFORM_LINUX = 8
|
1491
|
+
# Constant PLATFORM_RESTRICTIONS for EMarketingMessageFlags
|
1492
|
+
PLATFORM_RESTRICTIONS = PLATFORM_WINDOWS | PLATFORM_MAC | PLATFORM_LINUX
|
1493
|
+
end
|
1494
|
+
|
1495
|
+
# Represents the ENewsUpdateType enum
|
1496
|
+
class ENewsUpdateType
|
1497
|
+
# Data type of ENewsUpdateType
|
1498
|
+
DATA_TYPE = 'int'
|
1499
|
+
# Constant APP_NEWS for ENewsUpdateType
|
1500
|
+
APP_NEWS = 0
|
1501
|
+
# Constant STEAM_ADS for ENewsUpdateType
|
1502
|
+
STEAM_ADS = 1
|
1503
|
+
# Constant STEAM_NEWS for ENewsUpdateType
|
1504
|
+
STEAM_NEWS = 2
|
1505
|
+
# Constant CDDB_UPDATE for ENewsUpdateType
|
1506
|
+
CDDB_UPDATE = 3
|
1507
|
+
# Constant CLIENT_UPDATE for ENewsUpdateType
|
1508
|
+
CLIENT_UPDATE = 4
|
1509
|
+
end
|
1510
|
+
|
1511
|
+
# Represents the ESystemIMType enum
|
1512
|
+
class ESystemIMType
|
1513
|
+
# Data type of ESystemIMType
|
1514
|
+
DATA_TYPE = 'int'
|
1515
|
+
# Constant RAW_TEXT for ESystemIMType
|
1516
|
+
RAW_TEXT = 0
|
1517
|
+
# Constant INVALID_CARD for ESystemIMType
|
1518
|
+
INVALID_CARD = 1
|
1519
|
+
# Constant RECURRING_PURCHASE_FAILED for ESystemIMType
|
1520
|
+
RECURRING_PURCHASE_FAILED = 2
|
1521
|
+
# Constant CARD_WILL_EXPIRE for ESystemIMType
|
1522
|
+
CARD_WILL_EXPIRE = 3
|
1523
|
+
# Constant SUBSCRIPTION_EXPIRED for ESystemIMType
|
1524
|
+
SUBSCRIPTION_EXPIRED = 4
|
1525
|
+
# Constant GUEST_PASS_RECEIVED for ESystemIMType
|
1526
|
+
GUEST_PASS_RECEIVED = 5
|
1527
|
+
# Constant GUEST_PASS_GRANTED for ESystemIMType
|
1528
|
+
GUEST_PASS_GRANTED = 6
|
1529
|
+
# Constant GIFT_REVOKED for ESystemIMType
|
1530
|
+
GIFT_REVOKED = 7
|
1531
|
+
# Constant SUPPORT_MESSAGE for ESystemIMType
|
1532
|
+
SUPPORT_MESSAGE = 8
|
1533
|
+
# Constant SUPPORT_MESSAGE_CLEAR_ALERT for ESystemIMType
|
1534
|
+
SUPPORT_MESSAGE_CLEAR_ALERT = 9
|
1535
|
+
# Constant MAX for ESystemIMType
|
1536
|
+
MAX = 10
|
1537
|
+
end
|
1538
|
+
|
1539
|
+
# Represents the EChatFlags enum
|
1540
|
+
class EChatFlags
|
1541
|
+
# Data type of EChatFlags
|
1542
|
+
DATA_TYPE = 'flags'
|
1543
|
+
# Constant LOCKED for EChatFlags
|
1544
|
+
LOCKED = 1
|
1545
|
+
# Constant INVISIBLE_TO_FRIENDS for EChatFlags
|
1546
|
+
INVISIBLE_TO_FRIENDS = 2
|
1547
|
+
# Constant MODERATED for EChatFlags
|
1548
|
+
MODERATED = 4
|
1549
|
+
# Constant UNJOINABLE for EChatFlags
|
1550
|
+
UNJOINABLE = 8
|
1551
|
+
end
|
1552
|
+
|
1553
|
+
# Represents the ERemoteStoragePlatform enum
|
1554
|
+
class ERemoteStoragePlatform
|
1555
|
+
# Data type of ERemoteStoragePlatform
|
1556
|
+
DATA_TYPE = 'flags'
|
1557
|
+
# Constant NONE for ERemoteStoragePlatform
|
1558
|
+
NONE = 0
|
1559
|
+
# Constant WINDOWS for ERemoteStoragePlatform
|
1560
|
+
WINDOWS = 1
|
1561
|
+
# Constant OSX for ERemoteStoragePlatform
|
1562
|
+
OSX = 2
|
1563
|
+
# Constant PS3 for ERemoteStoragePlatform
|
1564
|
+
PS3 = 4
|
1565
|
+
# Constant LINUX for ERemoteStoragePlatform
|
1566
|
+
LINUX = 8
|
1567
|
+
# Constant RESERVED1 for ERemoteStoragePlatform
|
1568
|
+
RESERVED1 = 8
|
1569
|
+
# Constant RESERVED2 for ERemoteStoragePlatform
|
1570
|
+
RESERVED2 = 16
|
1571
|
+
# Constant ALL for ERemoteStoragePlatform
|
1572
|
+
ALL = -1
|
1573
|
+
end
|
1574
|
+
|
1575
|
+
# Represents the EDRMBlobDownloadType enum
|
1576
|
+
class EDRMBlobDownloadType
|
1577
|
+
# Data type of EDRMBlobDownloadType
|
1578
|
+
DATA_TYPE = 'flags'
|
1579
|
+
# Constant ERROR for EDRMBlobDownloadType
|
1580
|
+
ERROR = 0
|
1581
|
+
# Constant FILE for EDRMBlobDownloadType
|
1582
|
+
FILE = 1
|
1583
|
+
# Constant PARTS for EDRMBlobDownloadType
|
1584
|
+
PARTS = 2
|
1585
|
+
# Constant COMPRESSED for EDRMBlobDownloadType
|
1586
|
+
COMPRESSED = 4
|
1587
|
+
# Constant ALL_MASK for EDRMBlobDownloadType
|
1588
|
+
ALL_MASK = 7
|
1589
|
+
# Constant IS_JOB for EDRMBlobDownloadType
|
1590
|
+
IS_JOB = 8
|
1591
|
+
# Constant HIGH_PRIORITY for EDRMBlobDownloadType
|
1592
|
+
HIGH_PRIORITY = 16
|
1593
|
+
# Constant ADD_TIMESTAMP for EDRMBlobDownloadType
|
1594
|
+
ADD_TIMESTAMP = 32
|
1595
|
+
# Constant LOW_PRIORITY for EDRMBlobDownloadType
|
1596
|
+
LOW_PRIORITY = 64
|
1597
|
+
end
|
1598
|
+
|
1599
|
+
# Represents the EDRMBlobDownloadErrorDetail enum
|
1600
|
+
class EDRMBlobDownloadErrorDetail
|
1601
|
+
# Data type of EDRMBlobDownloadErrorDetail
|
1602
|
+
DATA_TYPE = 'int'
|
1603
|
+
# Constant NONE for EDRMBlobDownloadErrorDetail
|
1604
|
+
NONE = 0
|
1605
|
+
# Constant DOWNLOAD_FAILED for EDRMBlobDownloadErrorDetail
|
1606
|
+
DOWNLOAD_FAILED = 1
|
1607
|
+
# Constant TARGET_LOCKED for EDRMBlobDownloadErrorDetail
|
1608
|
+
TARGET_LOCKED = 2
|
1609
|
+
# Constant OPEN_ZIP for EDRMBlobDownloadErrorDetail
|
1610
|
+
OPEN_ZIP = 3
|
1611
|
+
# Constant READ_ZIP_DIRECTORY for EDRMBlobDownloadErrorDetail
|
1612
|
+
READ_ZIP_DIRECTORY = 4
|
1613
|
+
# Constant UNEXPECTED_ZIP_ENTRY for EDRMBlobDownloadErrorDetail
|
1614
|
+
UNEXPECTED_ZIP_ENTRY = 5
|
1615
|
+
# Constant UNZIP_FULL_FILE for EDRMBlobDownloadErrorDetail
|
1616
|
+
UNZIP_FULL_FILE = 6
|
1617
|
+
# Constant UNKNOWN_BLOB_TYPE for EDRMBlobDownloadErrorDetail
|
1618
|
+
UNKNOWN_BLOB_TYPE = 7
|
1619
|
+
# Constant UNZIP_STRIPS for EDRMBlobDownloadErrorDetail
|
1620
|
+
UNZIP_STRIPS = 8
|
1621
|
+
# Constant UNZIP_MERGE_GUID for EDRMBlobDownloadErrorDetail
|
1622
|
+
UNZIP_MERGE_GUID = 9
|
1623
|
+
# Constant UNZIP_SIGNATURE for EDRMBlobDownloadErrorDetail
|
1624
|
+
UNZIP_SIGNATURE = 10
|
1625
|
+
# Constant APPLY_STRIPS for EDRMBlobDownloadErrorDetail
|
1626
|
+
APPLY_STRIPS = 11
|
1627
|
+
# Constant APPLY_MERGE_GUID for EDRMBlobDownloadErrorDetail
|
1628
|
+
APPLY_MERGE_GUID = 12
|
1629
|
+
# Constant APPLY_SIGNATURE for EDRMBlobDownloadErrorDetail
|
1630
|
+
APPLY_SIGNATURE = 13
|
1631
|
+
# Constant APP_ID_MISMATCH for EDRMBlobDownloadErrorDetail
|
1632
|
+
APP_ID_MISMATCH = 14
|
1633
|
+
# Constant APP_ID_UNEXPECTED for EDRMBlobDownloadErrorDetail
|
1634
|
+
APP_ID_UNEXPECTED = 15
|
1635
|
+
# Constant APPLIED_SIGNATURE_CORRUPT for EDRMBlobDownloadErrorDetail
|
1636
|
+
APPLIED_SIGNATURE_CORRUPT = 16
|
1637
|
+
# Constant APPLY_VALVE_SIGNATURE_HEADER for EDRMBlobDownloadErrorDetail
|
1638
|
+
APPLY_VALVE_SIGNATURE_HEADER = 17
|
1639
|
+
# Constant UNZIP_VALVE_SIGNATURE_HEADER for EDRMBlobDownloadErrorDetail
|
1640
|
+
UNZIP_VALVE_SIGNATURE_HEADER = 18
|
1641
|
+
# Constant PATH_MANIPULATION_ERROR for EDRMBlobDownloadErrorDetail
|
1642
|
+
PATH_MANIPULATION_ERROR = 19
|
1643
|
+
# Constant TARGET_LOCKED_BASE for EDRMBlobDownloadErrorDetail
|
1644
|
+
TARGET_LOCKED_BASE = 65536
|
1645
|
+
# Constant TARGET_LOCKED_MAX for EDRMBlobDownloadErrorDetail
|
1646
|
+
TARGET_LOCKED_MAX = 131071
|
1647
|
+
# Constant NEXT_BASE for EDRMBlobDownloadErrorDetail
|
1648
|
+
NEXT_BASE = 131072
|
1649
|
+
end
|
1650
|
+
|
1651
|
+
# Represents the EClientStat enum
|
1652
|
+
class EClientStat
|
1653
|
+
# Data type of EClientStat
|
1654
|
+
DATA_TYPE = 'int'
|
1655
|
+
# Constant P2_P_CONNECTIONS_UDP for EClientStat
|
1656
|
+
P2_P_CONNECTIONS_UDP = 0
|
1657
|
+
# Constant P2_P_CONNECTIONS_RELAY for EClientStat
|
1658
|
+
P2_P_CONNECTIONS_RELAY = 1
|
1659
|
+
# Constant P2_P_GAME_CONNECTIONS for EClientStat
|
1660
|
+
P2_P_GAME_CONNECTIONS = 2
|
1661
|
+
# Constant P2_P_VOICE_CONNECTIONS for EClientStat
|
1662
|
+
P2_P_VOICE_CONNECTIONS = 3
|
1663
|
+
# Constant BYTES_DOWNLOADED for EClientStat
|
1664
|
+
BYTES_DOWNLOADED = 4
|
1665
|
+
# Constant MAX for EClientStat
|
1666
|
+
MAX = 5
|
1667
|
+
end
|
1668
|
+
|
1669
|
+
# Represents the EClientStatAggregateMethod enum
|
1670
|
+
class EClientStatAggregateMethod
|
1671
|
+
# Data type of EClientStatAggregateMethod
|
1672
|
+
DATA_TYPE = 'int'
|
1673
|
+
# Constant LATEST_ONLY for EClientStatAggregateMethod
|
1674
|
+
LATEST_ONLY = 0
|
1675
|
+
# Constant SUM for EClientStatAggregateMethod
|
1676
|
+
SUM = 1
|
1677
|
+
# Constant EVENT for EClientStatAggregateMethod
|
1678
|
+
EVENT = 2
|
1679
|
+
# Constant SCALAR for EClientStatAggregateMethod
|
1680
|
+
SCALAR = 3
|
1681
|
+
end
|
1682
|
+
|
1683
|
+
# Represents the ELeaderboardDataRequest enum
|
1684
|
+
class ELeaderboardDataRequest
|
1685
|
+
# Data type of ELeaderboardDataRequest
|
1686
|
+
DATA_TYPE = 'int'
|
1687
|
+
# Constant GLOBAL for ELeaderboardDataRequest
|
1688
|
+
GLOBAL = 0
|
1689
|
+
# Constant GLOBAL_AROUND_USER for ELeaderboardDataRequest
|
1690
|
+
GLOBAL_AROUND_USER = 1
|
1691
|
+
# Constant FRIENDS for ELeaderboardDataRequest
|
1692
|
+
FRIENDS = 2
|
1693
|
+
# Constant USERS for ELeaderboardDataRequest
|
1694
|
+
USERS = 3
|
1695
|
+
end
|
1696
|
+
|
1697
|
+
# Represents the ELeaderboardSortMethod enum
|
1698
|
+
class ELeaderboardSortMethod
|
1699
|
+
# Data type of ELeaderboardSortMethod
|
1700
|
+
DATA_TYPE = 'int'
|
1701
|
+
# Constant NONE for ELeaderboardSortMethod
|
1702
|
+
NONE = 0
|
1703
|
+
# Constant ASCENDING for ELeaderboardSortMethod
|
1704
|
+
ASCENDING = 1
|
1705
|
+
# Constant DESCENDING for ELeaderboardSortMethod
|
1706
|
+
DESCENDING = 2
|
1707
|
+
end
|
1708
|
+
|
1709
|
+
# Represents the ELeaderboardDisplayType enum
|
1710
|
+
class ELeaderboardDisplayType
|
1711
|
+
# Data type of ELeaderboardDisplayType
|
1712
|
+
DATA_TYPE = 'int'
|
1713
|
+
# Constant NONE for ELeaderboardDisplayType
|
1714
|
+
NONE = 0
|
1715
|
+
# Constant NUMERIC for ELeaderboardDisplayType
|
1716
|
+
NUMERIC = 1
|
1717
|
+
# Constant TIME_SECONDS for ELeaderboardDisplayType
|
1718
|
+
TIME_SECONDS = 2
|
1719
|
+
# Constant TIME_MILLI_SECONDS for ELeaderboardDisplayType
|
1720
|
+
TIME_MILLI_SECONDS = 3
|
1721
|
+
end
|
1722
|
+
|
1723
|
+
# Represents the ELeaderboardUploadScoreMethod enum
|
1724
|
+
class ELeaderboardUploadScoreMethod
|
1725
|
+
# Data type of ELeaderboardUploadScoreMethod
|
1726
|
+
DATA_TYPE = 'int'
|
1727
|
+
# Constant NONE for ELeaderboardUploadScoreMethod
|
1728
|
+
NONE = 0
|
1729
|
+
# Constant KEEP_BEST for ELeaderboardUploadScoreMethod
|
1730
|
+
KEEP_BEST = 1
|
1731
|
+
# Constant FORCE_UPDATE for ELeaderboardUploadScoreMethod
|
1732
|
+
FORCE_UPDATE = 2
|
1733
|
+
end
|
1734
|
+
|
1735
|
+
# Represents the EUCMFilePrivacyState enum
|
1736
|
+
class EUCMFilePrivacyState
|
1737
|
+
# Data type of EUCMFilePrivacyState
|
1738
|
+
DATA_TYPE = 'flags'
|
1739
|
+
# Constant INVALID for EUCMFilePrivacyState
|
1740
|
+
INVALID = -1
|
1741
|
+
# Constant PRIVATE for EUCMFilePrivacyState
|
1742
|
+
PRIVATE = 2
|
1743
|
+
# Constant FRIENDS_ONLY for EUCMFilePrivacyState
|
1744
|
+
FRIENDS_ONLY = 4
|
1745
|
+
# Constant PUBLIC for EUCMFilePrivacyState
|
1746
|
+
PUBLIC = 8
|
1747
|
+
# Constant ALL for EUCMFilePrivacyState
|
1748
|
+
ALL = PUBLIC | FRIENDS_ONLY | PRIVATE
|
1749
|
+
end
|
1750
|
+
|