-
Notifications
You must be signed in to change notification settings - Fork 0
/
DLLFunctionsReference.jl
1081 lines (1077 loc) · 48.6 KB
/
DLLFunctionsReference.jl
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
# ALL OF THE AVAILABLE FUNCTIONS FROM STEAM_API64.DLL
#g_pSteamClientGameServer
#GetHSteamPipe
#GetHSteamUser
#SteamAPI_gameserveritem_t_Construct
#SteamAPI_gameserveritem_t_GetName
#SteamAPI_gameserveritem_t_SetName
#SteamAPI_GetHSteamPipe
#SteamAPI_GetHSteamUser
#SteamAPI_GetSteamInstallPath
#SteamAPI_InitAnonymousUser
#SteamAPI_InitSafe
#SteamAPI_IsSteamRunning
#SteamAPI_ISteamAppList_GetAppBuildId
#SteamAPI_ISteamAppList_GetAppInstallDir
#SteamAPI_ISteamAppList_GetAppName
#SteamAPI_ISteamAppList_GetInstalledApps
#SteamAPI_ISteamAppList_GetNumInstalledApps
#SteamAPI_ISteamApps_BGetDLCDataByIndex
#SteamAPI_ISteamApps_BIsAppInstalled
#SteamAPI_ISteamApps_BIsCybercafe
#SteamAPI_ISteamApps_BIsDlcInstalled
#SteamAPI_ISteamApps_BIsLowViolence
#SteamAPI_ISteamApps_BIsSubscribed
#SteamAPI_ISteamApps_BIsSubscribedApp
#SteamAPI_ISteamApps_BIsSubscribedFromFamilySharing
#SteamAPI_ISteamApps_BIsSubscribedFromFreeWeekend
#SteamAPI_ISteamApps_BIsTimedTrial
#SteamAPI_ISteamApps_BIsVACBanned
#SteamAPI_ISteamApps_GetAppBuildId
#SteamAPI_ISteamApps_GetAppInstallDir
#SteamAPI_ISteamApps_GetAppOwner
#SteamAPI_ISteamApps_GetAvailableGameLanguages
#SteamAPI_ISteamApps_GetCurrentBetaName
#SteamAPI_ISteamApps_GetCurrentGameLanguage
#SteamAPI_ISteamApps_GetDLCCount
#SteamAPI_ISteamApps_GetDlcDownloadProgress
#SteamAPI_ISteamApps_GetEarliestPurchaseUnixTime
#SteamAPI_ISteamApps_GetFileDetails
#SteamAPI_ISteamApps_GetInstalledDepots
#SteamAPI_ISteamApps_GetLaunchCommandLine
#SteamAPI_ISteamApps_GetLaunchQueryParam
#SteamAPI_ISteamApps_InstallDLC
#SteamAPI_ISteamApps_MarkContentCorrupt
#SteamAPI_ISteamApps_RequestAllProofOfPurchaseKeys
#SteamAPI_ISteamApps_RequestAppProofOfPurchaseKey
#SteamAPI_ISteamApps_SetDlcContext
#SteamAPI_ISteamApps_UninstallDLC
#SteamAPI_ISteamClient_BReleaseSteamPipe
#SteamAPI_ISteamClient_BShutdownIfAllPipesClosed
#SteamAPI_ISteamClient_ConnectToGlobalUser
#SteamAPI_ISteamClient_CreateLocalUser
#SteamAPI_ISteamClient_CreateSteamPipe
#SteamAPI_ISteamClient_GetIPCCallCount
#SteamAPI_ISteamClient_GetISteamAppList
#SteamAPI_ISteamClient_GetISteamApps
#SteamAPI_ISteamClient_GetISteamController
#SteamAPI_ISteamClient_GetISteamFriends
#SteamAPI_ISteamClient_GetISteamGameSearch
#SteamAPI_ISteamClient_GetISteamGameServer
#SteamAPI_ISteamClient_GetISteamGameServerStats
#SteamAPI_ISteamClient_GetISteamGenericInterface
#SteamAPI_ISteamClient_GetISteamHTMLSurface
#SteamAPI_ISteamClient_GetISteamHTTP
#SteamAPI_ISteamClient_GetISteamInput
#SteamAPI_ISteamClient_GetISteamInventory
#SteamAPI_ISteamClient_GetISteamMatchmaking
#SteamAPI_ISteamClient_GetISteamMatchmakingServers
#SteamAPI_ISteamClient_GetISteamMusic
#SteamAPI_ISteamClient_GetISteamMusicRemote
#SteamAPI_ISteamClient_GetISteamNetworking
#SteamAPI_ISteamClient_GetISteamParentalSettings
#SteamAPI_ISteamClient_GetISteamParties
#SteamAPI_ISteamClient_GetISteamRemotePlay
#SteamAPI_ISteamClient_GetISteamRemoteStorage
#SteamAPI_ISteamClient_GetISteamScreenshots
#SteamAPI_ISteamClient_GetISteamUGC
#SteamAPI_ISteamClient_GetISteamUser
#SteamAPI_ISteamClient_GetISteamUserStats
#SteamAPI_ISteamClient_GetISteamUtils
#SteamAPI_ISteamClient_GetISteamVideo
#SteamAPI_ISteamClient_ReleaseUser
#SteamAPI_ISteamClient_SetLocalIPBinding
#SteamAPI_ISteamClient_SetWarningMessageHook
#SteamAPI_ISteamController_ActivateActionSet
#SteamAPI_ISteamController_ActivateActionSetLayer
#SteamAPI_ISteamController_DeactivateActionSetLayer
#SteamAPI_ISteamController_DeactivateAllActionSetLayers
#SteamAPI_ISteamController_GetActionOriginFromXboxOrigin
#SteamAPI_ISteamController_GetActionSetHandle
#SteamAPI_ISteamController_GetActiveActionSetLayers
#SteamAPI_ISteamController_GetAnalogActionData
#SteamAPI_ISteamController_GetAnalogActionHandle
#SteamAPI_ISteamController_GetAnalogActionOrigins
#SteamAPI_ISteamController_GetConnectedControllers
#SteamAPI_ISteamController_GetControllerBindingRevision
#SteamAPI_ISteamController_GetControllerForGamepadIndex
#SteamAPI_ISteamController_GetCurrentActionSet
#SteamAPI_ISteamController_GetDigitalActionData
#SteamAPI_ISteamController_GetDigitalActionHandle
#SteamAPI_ISteamController_GetDigitalActionOrigins
#SteamAPI_ISteamController_GetGamepadIndexForController
#SteamAPI_ISteamController_GetGlyphForActionOrigin
#SteamAPI_ISteamController_GetGlyphForXboxOrigin
#SteamAPI_ISteamController_GetInputTypeForHandle
#SteamAPI_ISteamController_GetMotionData
#SteamAPI_ISteamController_GetStringForActionOrigin
#SteamAPI_ISteamController_GetStringForXboxOrigin
#SteamAPI_ISteamController_Init
#SteamAPI_ISteamController_RunFrame
#SteamAPI_ISteamController_SetLEDColor
#SteamAPI_ISteamController_ShowBindingPanel
#SteamAPI_ISteamController_Shutdown
#SteamAPI_ISteamController_StopAnalogActionMomentum
#SteamAPI_ISteamController_TranslateActionOrigin
#SteamAPI_ISteamController_TriggerHapticPulse
#SteamAPI_ISteamController_TriggerRepeatedHapticPulse
#SteamAPI_ISteamController_TriggerVibration
#SteamAPI_ISteamFriends_ActivateGameOverlay
#SteamAPI_ISteamFriends_ActivateGameOverlayInviteDialog
#SteamAPI_ISteamFriends_ActivateGameOverlayInviteDialogConnectString
#SteamAPI_ISteamFriends_ActivateGameOverlayRemotePlayTogetherInviteDialog
#SteamAPI_ISteamFriends_ActivateGameOverlayToStore
#SteamAPI_ISteamFriends_ActivateGameOverlayToUser
#SteamAPI_ISteamFriends_ActivateGameOverlayToWebPage
#SteamAPI_ISteamFriends_BHasEquippedProfileItem
#SteamAPI_ISteamFriends_ClearRichPresence
#SteamAPI_ISteamFriends_CloseClanChatWindowInSteam
#SteamAPI_ISteamFriends_DownloadClanActivityCounts
#SteamAPI_ISteamFriends_EnumerateFollowingList
#SteamAPI_ISteamFriends_GetChatMemberByIndex
#SteamAPI_ISteamFriends_GetClanActivityCounts
#SteamAPI_ISteamFriends_GetClanByIndex
#SteamAPI_ISteamFriends_GetClanChatMemberCount
#SteamAPI_ISteamFriends_GetClanChatMessage
#SteamAPI_ISteamFriends_GetClanCount
#SteamAPI_ISteamFriends_GetClanName
#SteamAPI_ISteamFriends_GetClanOfficerByIndex
#SteamAPI_ISteamFriends_GetClanOfficerCount
#SteamAPI_ISteamFriends_GetClanOwner
#SteamAPI_ISteamFriends_GetClanTag
#SteamAPI_ISteamFriends_GetCoplayFriend
#SteamAPI_ISteamFriends_GetCoplayFriendCount
#SteamAPI_ISteamFriends_GetFollowerCount
#SteamAPI_ISteamFriends_GetFriendByIndex
#SteamAPI_ISteamFriends_GetFriendCoplayGame
#SteamAPI_ISteamFriends_GetFriendCoplayTime
#SteamAPI_ISteamFriends_GetFriendCount
#SteamAPI_ISteamFriends_GetFriendCountFromSource
#SteamAPI_ISteamFriends_GetFriendFromSourceByIndex
#SteamAPI_ISteamFriends_GetFriendGamePlayed
#SteamAPI_ISteamFriends_GetFriendMessage
#SteamAPI_ISteamFriends_GetFriendPersonaName
#SteamAPI_ISteamFriends_GetFriendPersonaNameHistory
#SteamAPI_ISteamFriends_GetFriendPersonaState
#SteamAPI_ISteamFriends_GetFriendRelationship
#SteamAPI_ISteamFriends_GetFriendRichPresence
#SteamAPI_ISteamFriends_GetFriendRichPresenceKeyByIndex
#SteamAPI_ISteamFriends_GetFriendRichPresenceKeyCount
#SteamAPI_ISteamFriends_GetFriendsGroupCount
#SteamAPI_ISteamFriends_GetFriendsGroupIDByIndex
#SteamAPI_ISteamFriends_GetFriendsGroupMembersCount
#SteamAPI_ISteamFriends_GetFriendsGroupMembersList
#SteamAPI_ISteamFriends_GetFriendsGroupName
#SteamAPI_ISteamFriends_GetFriendSteamLevel
#SteamAPI_ISteamFriends_GetLargeFriendAvatar
#SteamAPI_ISteamFriends_GetMediumFriendAvatar
#SteamAPI_ISteamFriends_GetNumChatsWithUnreadPriorityMessages
#SteamAPI_ISteamFriends_GetPersonaName
#SteamAPI_ISteamFriends_GetPersonaState
#SteamAPI_ISteamFriends_GetPlayerNickname
#SteamAPI_ISteamFriends_GetProfileItemPropertyString
#SteamAPI_ISteamFriends_GetProfileItemPropertyUint
#SteamAPI_ISteamFriends_GetSmallFriendAvatar
#SteamAPI_ISteamFriends_GetUserRestrictions
#SteamAPI_ISteamFriends_HasFriend
#SteamAPI_ISteamFriends_InviteUserToGame
#SteamAPI_ISteamFriends_IsClanChatAdmin
#SteamAPI_ISteamFriends_IsClanChatWindowOpenInSteam
#SteamAPI_ISteamFriends_IsClanOfficialGameGroup
#SteamAPI_ISteamFriends_IsClanPublic
#SteamAPI_ISteamFriends_IsFollowing
#SteamAPI_ISteamFriends_IsUserInSource
#SteamAPI_ISteamFriends_JoinClanChatRoom
#SteamAPI_ISteamFriends_LeaveClanChatRoom
#SteamAPI_ISteamFriends_OpenClanChatWindowInSteam
#SteamAPI_ISteamFriends_RegisterProtocolInOverlayBrowser
#SteamAPI_ISteamFriends_ReplyToFriendMessage
#SteamAPI_ISteamFriends_RequestClanOfficerList
#SteamAPI_ISteamFriends_RequestEquippedProfileItems
#SteamAPI_ISteamFriends_RequestFriendRichPresence
#SteamAPI_ISteamFriends_RequestUserInformation
#SteamAPI_ISteamFriends_SendClanChatMessage
#SteamAPI_ISteamFriends_SetInGameVoiceSpeaking
#SteamAPI_ISteamFriends_SetListenForFriendsMessages
#SteamAPI_ISteamFriends_SetPersonaName
#SteamAPI_ISteamFriends_SetPlayedWith
#SteamAPI_ISteamFriends_SetRichPresence
#SteamAPI_ISteamGameSearch_AcceptGame
#SteamAPI_ISteamGameSearch_AddGameSearchParams
#SteamAPI_ISteamGameSearch_CancelRequestPlayersForGame
#SteamAPI_ISteamGameSearch_DeclineGame
#SteamAPI_ISteamGameSearch_EndGame
#SteamAPI_ISteamGameSearch_EndGameSearch
#SteamAPI_ISteamGameSearch_HostConfirmGameStart
#SteamAPI_ISteamGameSearch_RequestPlayersForGame
#SteamAPI_ISteamGameSearch_RetrieveConnectionDetails
#SteamAPI_ISteamGameSearch_SearchForGameSolo
#SteamAPI_ISteamGameSearch_SearchForGameWithLobby
#SteamAPI_ISteamGameSearch_SetConnectionDetails
#SteamAPI_ISteamGameSearch_SetGameHostParams
#SteamAPI_ISteamGameSearch_SubmitPlayerResult
#SteamAPI_ISteamGameServer_AssociateWithClan
#SteamAPI_ISteamGameServer_BeginAuthSession
#SteamAPI_ISteamGameServer_BLoggedOn
#SteamAPI_ISteamGameServer_BSecure
#SteamAPI_ISteamGameServer_BUpdateUserData
#SteamAPI_ISteamGameServer_CancelAuthTicket
#SteamAPI_ISteamGameServer_ClearAllKeyValues
#SteamAPI_ISteamGameServer_ComputeNewPlayerCompatibility
#SteamAPI_ISteamGameServer_CreateUnauthenticatedUserConnection
#SteamAPI_ISteamGameServer_EndAuthSession
#SteamAPI_ISteamGameServer_GetAuthSessionTicket
#SteamAPI_ISteamGameServer_GetGameplayStats
#SteamAPI_ISteamGameServer_GetNextOutgoingPacket
#SteamAPI_ISteamGameServer_GetPublicIP
#SteamAPI_ISteamGameServer_GetServerReputation
#SteamAPI_ISteamGameServer_GetSteamID
#SteamAPI_ISteamGameServer_HandleIncomingPacket
#SteamAPI_ISteamGameServer_LogOff
#SteamAPI_ISteamGameServer_LogOn
#SteamAPI_ISteamGameServer_LogOnAnonymous
#SteamAPI_ISteamGameServer_RequestUserGroupStatus
#SteamAPI_ISteamGameServer_SendUserConnectAndAuthenticate_DEPRECATED
#SteamAPI_ISteamGameServer_SendUserDisconnect_DEPRECATED
#SteamAPI_ISteamGameServer_SetAdvertiseServerActive
#SteamAPI_ISteamGameServer_SetBotPlayerCount
#SteamAPI_ISteamGameServer_SetDedicatedServer
#SteamAPI_ISteamGameServer_SetGameData
#SteamAPI_ISteamGameServer_SetGameDescription
#SteamAPI_ISteamGameServer_SetGameTags
#SteamAPI_ISteamGameServer_SetKeyValue
#SteamAPI_ISteamGameServer_SetMapName
#SteamAPI_ISteamGameServer_SetMaxPlayerCount
#SteamAPI_ISteamGameServer_SetModDir
#SteamAPI_ISteamGameServer_SetPasswordProtected
#SteamAPI_ISteamGameServer_SetProduct
#SteamAPI_ISteamGameServer_SetRegion
#SteamAPI_ISteamGameServer_SetServerName
#SteamAPI_ISteamGameServer_SetSpectatorPort
#SteamAPI_ISteamGameServer_SetSpectatorServerName
#SteamAPI_ISteamGameServer_UserHasLicenseForApp
#SteamAPI_ISteamGameServer_WasRestartRequested
#SteamAPI_ISteamGameServerStats_ClearUserAchievement
#SteamAPI_ISteamGameServerStats_GetUserAchievement
#SteamAPI_ISteamGameServerStats_GetUserStatFloat
#SteamAPI_ISteamGameServerStats_GetUserStatInt32
#SteamAPI_ISteamGameServerStats_RequestUserStats
#SteamAPI_ISteamGameServerStats_SetUserAchievement
#SteamAPI_ISteamGameServerStats_SetUserStatFloat
#SteamAPI_ISteamGameServerStats_SetUserStatInt32
#SteamAPI_ISteamGameServerStats_StoreUserStats
#SteamAPI_ISteamGameServerStats_UpdateUserAvgRateStat
#SteamAPI_ISteamHTMLSurface_AddHeader
#SteamAPI_ISteamHTMLSurface_AllowStartRequest
#SteamAPI_ISteamHTMLSurface_CopyToClipboard
#SteamAPI_ISteamHTMLSurface_CreateBrowser
#SteamAPI_ISteamHTMLSurface_ExecuteJavascript
#SteamAPI_ISteamHTMLSurface_FileLoadDialogResponse
#SteamAPI_ISteamHTMLSurface_Find
#SteamAPI_ISteamHTMLSurface_GetLinkAtPosition
#SteamAPI_ISteamHTMLSurface_GoBack
#SteamAPI_ISteamHTMLSurface_GoForward
#SteamAPI_ISteamHTMLSurface_Init
#SteamAPI_ISteamHTMLSurface_JSDialogResponse
#SteamAPI_ISteamHTMLSurface_KeyChar
#SteamAPI_ISteamHTMLSurface_KeyDown
#SteamAPI_ISteamHTMLSurface_KeyUp
#SteamAPI_ISteamHTMLSurface_LoadURL
#SteamAPI_ISteamHTMLSurface_MouseDoubleClick
#SteamAPI_ISteamHTMLSurface_MouseDown
#SteamAPI_ISteamHTMLSurface_MouseMove
#SteamAPI_ISteamHTMLSurface_MouseUp
#SteamAPI_ISteamHTMLSurface_MouseWheel
#SteamAPI_ISteamHTMLSurface_OpenDeveloperTools
#SteamAPI_ISteamHTMLSurface_PasteFromClipboard
#SteamAPI_ISteamHTMLSurface_Reload
#SteamAPI_ISteamHTMLSurface_RemoveBrowser
#SteamAPI_ISteamHTMLSurface_SetBackgroundMode
#SteamAPI_ISteamHTMLSurface_SetCookie
#SteamAPI_ISteamHTMLSurface_SetDPIScalingFactor
#SteamAPI_ISteamHTMLSurface_SetHorizontalScroll
#SteamAPI_ISteamHTMLSurface_SetKeyFocus
#SteamAPI_ISteamHTMLSurface_SetPageScaleFactor
#SteamAPI_ISteamHTMLSurface_SetSize
#SteamAPI_ISteamHTMLSurface_SetVerticalScroll
#SteamAPI_ISteamHTMLSurface_Shutdown
#SteamAPI_ISteamHTMLSurface_StopFind
#SteamAPI_ISteamHTMLSurface_StopLoad
#SteamAPI_ISteamHTMLSurface_ViewSource
#SteamAPI_ISteamHTTP_CreateCookieContainer
#SteamAPI_ISteamHTTP_CreateHTTPRequest
#SteamAPI_ISteamHTTP_DeferHTTPRequest
#SteamAPI_ISteamHTTP_GetHTTPDownloadProgressPct
#SteamAPI_ISteamHTTP_GetHTTPRequestWasTimedOut
#SteamAPI_ISteamHTTP_GetHTTPResponseBodyData
#SteamAPI_ISteamHTTP_GetHTTPResponseBodySize
#SteamAPI_ISteamHTTP_GetHTTPResponseHeaderSize
#SteamAPI_ISteamHTTP_GetHTTPResponseHeaderValue
#SteamAPI_ISteamHTTP_GetHTTPStreamingResponseBodyData
#SteamAPI_ISteamHTTP_PrioritizeHTTPRequest
#SteamAPI_ISteamHTTP_ReleaseCookieContainer
#SteamAPI_ISteamHTTP_ReleaseHTTPRequest
#SteamAPI_ISteamHTTP_SendHTTPRequest
#SteamAPI_ISteamHTTP_SendHTTPRequestAndStreamResponse
#SteamAPI_ISteamHTTP_SetCookie
#SteamAPI_ISteamHTTP_SetHTTPRequestAbsoluteTimeoutMS
#SteamAPI_ISteamHTTP_SetHTTPRequestContextValue
#SteamAPI_ISteamHTTP_SetHTTPRequestCookieContainer
#SteamAPI_ISteamHTTP_SetHTTPRequestGetOrPostParameter
#SteamAPI_ISteamHTTP_SetHTTPRequestHeaderValue
#SteamAPI_ISteamHTTP_SetHTTPRequestNetworkActivityTimeout
#SteamAPI_ISteamHTTP_SetHTTPRequestRawPostBody
#SteamAPI_ISteamHTTP_SetHTTPRequestRequiresVerifiedCertificate
#SteamAPI_ISteamHTTP_SetHTTPRequestUserAgentInfo
#SteamAPI_ISteamInput_ActivateActionSet
#SteamAPI_ISteamInput_ActivateActionSetLayer
#SteamAPI_ISteamInput_BNewDataAvailable
#SteamAPI_ISteamInput_BWaitForData
#SteamAPI_ISteamInput_DeactivateActionSetLayer
#SteamAPI_ISteamInput_DeactivateAllActionSetLayers
#SteamAPI_ISteamInput_EnableActionEventCallbacks
#SteamAPI_ISteamInput_EnableDeviceCallbacks
#SteamAPI_ISteamInput_GetActionOriginFromXboxOrigin
#SteamAPI_ISteamInput_GetActionSetHandle
#SteamAPI_ISteamInput_GetActiveActionSetLayers
#SteamAPI_ISteamInput_GetAnalogActionData
#SteamAPI_ISteamInput_GetAnalogActionHandle
#SteamAPI_ISteamInput_GetAnalogActionOrigins
#SteamAPI_ISteamInput_GetConnectedControllers
#SteamAPI_ISteamInput_GetControllerForGamepadIndex
#SteamAPI_ISteamInput_GetCurrentActionSet
#SteamAPI_ISteamInput_GetDeviceBindingRevision
#SteamAPI_ISteamInput_GetDigitalActionData
#SteamAPI_ISteamInput_GetDigitalActionHandle
#SteamAPI_ISteamInput_GetDigitalActionOrigins
#SteamAPI_ISteamInput_GetGamepadIndexForController
#SteamAPI_ISteamInput_GetGlyphForActionOrigin_Legacy
#SteamAPI_ISteamInput_GetGlyphForXboxOrigin
#SteamAPI_ISteamInput_GetGlyphPNGForActionOrigin
#SteamAPI_ISteamInput_GetGlyphSVGForActionOrigin
#SteamAPI_ISteamInput_GetInputTypeForHandle
#SteamAPI_ISteamInput_GetMotionData
#SteamAPI_ISteamInput_GetRemotePlaySessionID
#SteamAPI_ISteamInput_GetSessionInputConfigurationSettings
#SteamAPI_ISteamInput_GetStringForActionOrigin
#SteamAPI_ISteamInput_GetStringForAnalogActionName
#SteamAPI_ISteamInput_GetStringForDigitalActionName
#SteamAPI_ISteamInput_GetStringForXboxOrigin
#SteamAPI_ISteamInput_Init
#SteamAPI_ISteamInput_Legacy_TriggerHapticPulse
#SteamAPI_ISteamInput_Legacy_TriggerRepeatedHapticPulse
#SteamAPI_ISteamInput_RunFrame
#SteamAPI_ISteamInput_SetDualSenseTriggerEffect
#SteamAPI_ISteamInput_SetInputActionManifestFilePath
#SteamAPI_ISteamInput_SetLEDColor
#SteamAPI_ISteamInput_ShowBindingPanel
#SteamAPI_ISteamInput_Shutdown
#SteamAPI_ISteamInput_StopAnalogActionMomentum
#SteamAPI_ISteamInput_TranslateActionOrigin
#SteamAPI_ISteamInput_TriggerSimpleHapticEvent
#SteamAPI_ISteamInput_TriggerVibration
#SteamAPI_ISteamInput_TriggerVibrationExtended
#SteamAPI_ISteamInventory_AddPromoItem
#SteamAPI_ISteamInventory_AddPromoItems
#SteamAPI_ISteamInventory_CheckResultSteamID
#SteamAPI_ISteamInventory_ConsumeItem
#SteamAPI_ISteamInventory_DeserializeResult
#SteamAPI_ISteamInventory_DestroyResult
#SteamAPI_ISteamInventory_ExchangeItems
#SteamAPI_ISteamInventory_GenerateItems
#SteamAPI_ISteamInventory_GetAllItems
#SteamAPI_ISteamInventory_GetEligiblePromoItemDefinitionIDs
#SteamAPI_ISteamInventory_GetItemDefinitionIDs
#SteamAPI_ISteamInventory_GetItemDefinitionProperty
#SteamAPI_ISteamInventory_GetItemPrice
#SteamAPI_ISteamInventory_GetItemsByID
#SteamAPI_ISteamInventory_GetItemsWithPrices
#SteamAPI_ISteamInventory_GetNumItemsWithPrices
#SteamAPI_ISteamInventory_GetResultItemProperty
#SteamAPI_ISteamInventory_GetResultItems
#SteamAPI_ISteamInventory_GetResultStatus
#SteamAPI_ISteamInventory_GetResultTimestamp
#SteamAPI_ISteamInventory_GrantPromoItems
#SteamAPI_ISteamInventory_InspectItem
#SteamAPI_ISteamInventory_LoadItemDefinitions
#SteamAPI_ISteamInventory_RemoveProperty
#SteamAPI_ISteamInventory_RequestEligiblePromoItemDefinitionsIDs
#SteamAPI_ISteamInventory_RequestPrices
#SteamAPI_ISteamInventory_SendItemDropHeartbeat
#SteamAPI_ISteamInventory_SerializeResult
#SteamAPI_ISteamInventory_SetPropertyBool
#SteamAPI_ISteamInventory_SetPropertyFloat
#SteamAPI_ISteamInventory_SetPropertyInt64
#SteamAPI_ISteamInventory_SetPropertyString
#SteamAPI_ISteamInventory_StartPurchase
#SteamAPI_ISteamInventory_StartUpdateProperties
#SteamAPI_ISteamInventory_SubmitUpdateProperties
#SteamAPI_ISteamInventory_TradeItems
#SteamAPI_ISteamInventory_TransferItemQuantity
#SteamAPI_ISteamInventory_TriggerItemDrop
#SteamAPI_ISteamMatchmaking_AddFavoriteGame
#SteamAPI_ISteamMatchmaking_AddRequestLobbyListCompatibleMembersFilter
#SteamAPI_ISteamMatchmaking_AddRequestLobbyListDistanceFilter
#SteamAPI_ISteamMatchmaking_AddRequestLobbyListFilterSlotsAvailable
#SteamAPI_ISteamMatchmaking_AddRequestLobbyListNearValueFilter
#SteamAPI_ISteamMatchmaking_AddRequestLobbyListNumericalFilter
#SteamAPI_ISteamMatchmaking_AddRequestLobbyListResultCountFilter
#SteamAPI_ISteamMatchmaking_AddRequestLobbyListStringFilter
#SteamAPI_ISteamMatchmaking_CreateLobby
#SteamAPI_ISteamMatchmaking_DeleteLobbyData
#SteamAPI_ISteamMatchmaking_GetFavoriteGame
#SteamAPI_ISteamMatchmaking_GetFavoriteGameCount
#SteamAPI_ISteamMatchmaking_GetLobbyByIndex
#SteamAPI_ISteamMatchmaking_GetLobbyChatEntry
#SteamAPI_ISteamMatchmaking_GetLobbyData
#SteamAPI_ISteamMatchmaking_GetLobbyDataByIndex
#SteamAPI_ISteamMatchmaking_GetLobbyDataCount
#SteamAPI_ISteamMatchmaking_GetLobbyGameServer
#SteamAPI_ISteamMatchmaking_GetLobbyMemberByIndex
#SteamAPI_ISteamMatchmaking_GetLobbyMemberData
#SteamAPI_ISteamMatchmaking_GetLobbyMemberLimit
#SteamAPI_ISteamMatchmaking_GetLobbyOwner
#SteamAPI_ISteamMatchmaking_GetNumLobbyMembers
#SteamAPI_ISteamMatchmaking_InviteUserToLobby
#SteamAPI_ISteamMatchmaking_JoinLobby
#SteamAPI_ISteamMatchmaking_LeaveLobby
#SteamAPI_ISteamMatchmaking_RemoveFavoriteGame
#SteamAPI_ISteamMatchmaking_RequestLobbyData
#SteamAPI_ISteamMatchmaking_RequestLobbyList
#SteamAPI_ISteamMatchmaking_SendLobbyChatMsg
#SteamAPI_ISteamMatchmaking_SetLinkedLobby
#SteamAPI_ISteamMatchmaking_SetLobbyData
#SteamAPI_ISteamMatchmaking_SetLobbyGameServer
#SteamAPI_ISteamMatchmaking_SetLobbyJoinable
#SteamAPI_ISteamMatchmaking_SetLobbyMemberData
#SteamAPI_ISteamMatchmaking_SetLobbyMemberLimit
#SteamAPI_ISteamMatchmaking_SetLobbyOwner
#SteamAPI_ISteamMatchmaking_SetLobbyType
#SteamAPI_ISteamMatchmakingPingResponse_ServerFailedToRespond
#SteamAPI_ISteamMatchmakingPingResponse_ServerResponded
#SteamAPI_ISteamMatchmakingPlayersResponse_AddPlayerToList
#SteamAPI_ISteamMatchmakingPlayersResponse_PlayersFailedToRespond
#SteamAPI_ISteamMatchmakingPlayersResponse_PlayersRefreshComplete
#SteamAPI_ISteamMatchmakingRulesResponse_RulesFailedToRespond
#SteamAPI_ISteamMatchmakingRulesResponse_RulesRefreshComplete
#SteamAPI_ISteamMatchmakingRulesResponse_RulesResponded
#SteamAPI_ISteamMatchmakingServerListResponse_RefreshComplete
#SteamAPI_ISteamMatchmakingServerListResponse_ServerFailedToRespond
#SteamAPI_ISteamMatchmakingServerListResponse_ServerResponded
#SteamAPI_ISteamMatchmakingServers_CancelQuery
#SteamAPI_ISteamMatchmakingServers_CancelServerQuery
#SteamAPI_ISteamMatchmakingServers_GetServerCount
#SteamAPI_ISteamMatchmakingServers_GetServerDetails
#SteamAPI_ISteamMatchmakingServers_IsRefreshing
#SteamAPI_ISteamMatchmakingServers_PingServer
#SteamAPI_ISteamMatchmakingServers_PlayerDetails
#SteamAPI_ISteamMatchmakingServers_RefreshQuery
#SteamAPI_ISteamMatchmakingServers_RefreshServer
#SteamAPI_ISteamMatchmakingServers_ReleaseRequest
#SteamAPI_ISteamMatchmakingServers_RequestFavoritesServerList
#SteamAPI_ISteamMatchmakingServers_RequestFriendsServerList
#SteamAPI_ISteamMatchmakingServers_RequestHistoryServerList
#SteamAPI_ISteamMatchmakingServers_RequestInternetServerList
#SteamAPI_ISteamMatchmakingServers_RequestLANServerList
#SteamAPI_ISteamMatchmakingServers_RequestSpectatorServerList
#SteamAPI_ISteamMatchmakingServers_ServerRules
#SteamAPI_ISteamMusic_BIsEnabled
#SteamAPI_ISteamMusic_BIsPlaying
#SteamAPI_ISteamMusic_GetPlaybackStatus
#SteamAPI_ISteamMusic_GetVolume
#SteamAPI_ISteamMusic_Pause
#SteamAPI_ISteamMusic_Play
#SteamAPI_ISteamMusic_PlayNext
#SteamAPI_ISteamMusic_PlayPrevious
#SteamAPI_ISteamMusic_SetVolume
#SteamAPI_ISteamMusicRemote_BActivationSuccess
#SteamAPI_ISteamMusicRemote_BIsCurrentMusicRemote
#SteamAPI_ISteamMusicRemote_CurrentEntryDidChange
#SteamAPI_ISteamMusicRemote_CurrentEntryIsAvailable
#SteamAPI_ISteamMusicRemote_CurrentEntryWillChange
#SteamAPI_ISteamMusicRemote_DeregisterSteamMusicRemote
#SteamAPI_ISteamMusicRemote_EnableLooped
#SteamAPI_ISteamMusicRemote_EnablePlaylists
#SteamAPI_ISteamMusicRemote_EnablePlayNext
#SteamAPI_ISteamMusicRemote_EnablePlayPrevious
#SteamAPI_ISteamMusicRemote_EnableQueue
#SteamAPI_ISteamMusicRemote_EnableShuffled
#SteamAPI_ISteamMusicRemote_PlaylistDidChange
#SteamAPI_ISteamMusicRemote_PlaylistWillChange
#SteamAPI_ISteamMusicRemote_QueueDidChange
#SteamAPI_ISteamMusicRemote_QueueWillChange
#SteamAPI_ISteamMusicRemote_RegisterSteamMusicRemote
#SteamAPI_ISteamMusicRemote_ResetPlaylistEntries
#SteamAPI_ISteamMusicRemote_ResetQueueEntries
#SteamAPI_ISteamMusicRemote_SetCurrentPlaylistEntry
#SteamAPI_ISteamMusicRemote_SetCurrentQueueEntry
#SteamAPI_ISteamMusicRemote_SetDisplayName
#SteamAPI_ISteamMusicRemote_SetPlaylistEntry
#SteamAPI_ISteamMusicRemote_SetPNGIcon_64x64
#SteamAPI_ISteamMusicRemote_SetQueueEntry
#SteamAPI_ISteamMusicRemote_UpdateCurrentEntryCoverArt
#SteamAPI_ISteamMusicRemote_UpdateCurrentEntryElapsedSeconds
#SteamAPI_ISteamMusicRemote_UpdateCurrentEntryText
#SteamAPI_ISteamMusicRemote_UpdateLooped
#SteamAPI_ISteamMusicRemote_UpdatePlaybackStatus
#SteamAPI_ISteamMusicRemote_UpdateShuffled
#SteamAPI_ISteamMusicRemote_UpdateVolume
#SteamAPI_ISteamNetworking_AcceptP2PSessionWithUser
#SteamAPI_ISteamNetworking_AllowP2PPacketRelay
#SteamAPI_ISteamNetworking_CloseP2PChannelWithUser
#SteamAPI_ISteamNetworking_CloseP2PSessionWithUser
#SteamAPI_ISteamNetworking_CreateConnectionSocket
#SteamAPI_ISteamNetworking_CreateListenSocket
#SteamAPI_ISteamNetworking_CreateP2PConnectionSocket
#SteamAPI_ISteamNetworking_DestroyListenSocket
#SteamAPI_ISteamNetworking_DestroySocket
#SteamAPI_ISteamNetworking_GetListenSocketInfo
#SteamAPI_ISteamNetworking_GetMaxPacketSize
#SteamAPI_ISteamNetworking_GetP2PSessionState
#SteamAPI_ISteamNetworking_GetSocketConnectionType
#SteamAPI_ISteamNetworking_GetSocketInfo
#SteamAPI_ISteamNetworking_IsDataAvailable
#SteamAPI_ISteamNetworking_IsDataAvailableOnSocket
#SteamAPI_ISteamNetworking_IsP2PPacketAvailable
#SteamAPI_ISteamNetworking_ReadP2PPacket
#SteamAPI_ISteamNetworking_RetrieveData
#SteamAPI_ISteamNetworking_RetrieveDataFromSocket
#SteamAPI_ISteamNetworking_SendDataOnSocket
#SteamAPI_ISteamNetworking_SendP2PPacket
#SteamAPI_ISteamNetworkingFakeUDPPort_DestroyFakeUDPPort
#SteamAPI_ISteamNetworkingFakeUDPPort_ReceiveMessages
#SteamAPI_ISteamNetworkingFakeUDPPort_ScheduleCleanup
#SteamAPI_ISteamNetworkingFakeUDPPort_SendMessageToFakeIP
#SteamAPI_ISteamNetworkingMessages_AcceptSessionWithUser
#SteamAPI_ISteamNetworkingMessages_CloseChannelWithUser
#SteamAPI_ISteamNetworkingMessages_CloseSessionWithUser
#SteamAPI_ISteamNetworkingMessages_GetSessionConnectionInfo
#SteamAPI_ISteamNetworkingMessages_ReceiveMessagesOnChannel
#SteamAPI_ISteamNetworkingMessages_SendMessageToUser
#SteamAPI_ISteamNetworkingSockets_AcceptConnection
#SteamAPI_ISteamNetworkingSockets_BeginAsyncRequestFakeIP
#SteamAPI_ISteamNetworkingSockets_CloseConnection
#SteamAPI_ISteamNetworkingSockets_CloseListenSocket
#SteamAPI_ISteamNetworkingSockets_ConfigureConnectionLanes
#SteamAPI_ISteamNetworkingSockets_ConnectByIPAddress
#SteamAPI_ISteamNetworkingSockets_ConnectP2P
#SteamAPI_ISteamNetworkingSockets_ConnectP2PCustomSignaling
#SteamAPI_ISteamNetworkingSockets_ConnectToHostedDedicatedServer
#SteamAPI_ISteamNetworkingSockets_CreateFakeUDPPort
#SteamAPI_ISteamNetworkingSockets_CreateHostedDedicatedServerListenSocket
#SteamAPI_ISteamNetworkingSockets_CreateListenSocketIP
#SteamAPI_ISteamNetworkingSockets_CreateListenSocketP2P
#SteamAPI_ISteamNetworkingSockets_CreateListenSocketP2PFakeIP
#SteamAPI_ISteamNetworkingSockets_CreatePollGroup
#SteamAPI_ISteamNetworkingSockets_CreateSocketPair
#SteamAPI_ISteamNetworkingSockets_DestroyPollGroup
#SteamAPI_ISteamNetworkingSockets_FindRelayAuthTicketForServer
#SteamAPI_ISteamNetworkingSockets_FlushMessagesOnConnection
#SteamAPI_ISteamNetworkingSockets_GetAuthenticationStatus
#SteamAPI_ISteamNetworkingSockets_GetCertificateRequest
#SteamAPI_ISteamNetworkingSockets_GetConnectionInfo
#SteamAPI_ISteamNetworkingSockets_GetConnectionName
#SteamAPI_ISteamNetworkingSockets_GetConnectionRealTimeStatus
#SteamAPI_ISteamNetworkingSockets_GetConnectionUserData
#SteamAPI_ISteamNetworkingSockets_GetDetailedConnectionStatus
#SteamAPI_ISteamNetworkingSockets_GetFakeIP
#SteamAPI_ISteamNetworkingSockets_GetGameCoordinatorServerLogin
#SteamAPI_ISteamNetworkingSockets_GetHostedDedicatedServerAddress
#SteamAPI_ISteamNetworkingSockets_GetHostedDedicatedServerPOPID
#SteamAPI_ISteamNetworkingSockets_GetHostedDedicatedServerPort
#SteamAPI_ISteamNetworkingSockets_GetIdentity
#SteamAPI_ISteamNetworkingSockets_GetListenSocketAddress
#SteamAPI_ISteamNetworkingSockets_GetRemoteFakeIPForConnection
#SteamAPI_ISteamNetworkingSockets_InitAuthentication
#SteamAPI_ISteamNetworkingSockets_ReceivedP2PCustomSignal
#SteamAPI_ISteamNetworkingSockets_ReceivedRelayAuthTicket
#SteamAPI_ISteamNetworkingSockets_ReceiveMessagesOnConnection
#SteamAPI_ISteamNetworkingSockets_ReceiveMessagesOnPollGroup
#SteamAPI_ISteamNetworkingSockets_ResetIdentity
#SteamAPI_ISteamNetworkingSockets_RunCallbacks
#SteamAPI_ISteamNetworkingSockets_SendMessages
#SteamAPI_ISteamNetworkingSockets_SendMessageToConnection
#SteamAPI_ISteamNetworkingSockets_SetCertificate
#SteamAPI_ISteamNetworkingSockets_SetConnectionName
#SteamAPI_ISteamNetworkingSockets_SetConnectionPollGroup
#SteamAPI_ISteamNetworkingSockets_SetConnectionUserData
#SteamAPI_ISteamNetworkingUtils_AllocateMessage
#SteamAPI_ISteamNetworkingUtils_CheckPingDataUpToDate
#SteamAPI_ISteamNetworkingUtils_ConvertPingLocationToString
#SteamAPI_ISteamNetworkingUtils_EstimatePingTimeBetweenTwoLocations
#SteamAPI_ISteamNetworkingUtils_EstimatePingTimeFromLocalHost
#SteamAPI_ISteamNetworkingUtils_GetConfigValue
#SteamAPI_ISteamNetworkingUtils_GetConfigValueInfo
#SteamAPI_ISteamNetworkingUtils_GetDirectPingToPOP
#SteamAPI_ISteamNetworkingUtils_GetIPv4FakeIPType
#SteamAPI_ISteamNetworkingUtils_GetLocalPingLocation
#SteamAPI_ISteamNetworkingUtils_GetLocalTimestamp
#SteamAPI_ISteamNetworkingUtils_GetPingToDataCenter
#SteamAPI_ISteamNetworkingUtils_GetPOPCount
#SteamAPI_ISteamNetworkingUtils_GetPOPList
#SteamAPI_ISteamNetworkingUtils_GetRealIdentityForFakeIP
#SteamAPI_ISteamNetworkingUtils_GetRelayNetworkStatus
#SteamAPI_ISteamNetworkingUtils_InitRelayNetworkAccess
#SteamAPI_ISteamNetworkingUtils_IsFakeIPv4
#SteamAPI_ISteamNetworkingUtils_IterateGenericEditableConfigValues
#SteamAPI_ISteamNetworkingUtils_ParsePingLocationString
#SteamAPI_ISteamNetworkingUtils_SetConfigValue
#SteamAPI_ISteamNetworkingUtils_SetConfigValueStruct
#SteamAPI_ISteamNetworkingUtils_SetConnectionConfigValueFloat
#SteamAPI_ISteamNetworkingUtils_SetConnectionConfigValueInt32
#SteamAPI_ISteamNetworkingUtils_SetConnectionConfigValueString
#SteamAPI_ISteamNetworkingUtils_SetDebugOutputFunction
#SteamAPI_ISteamNetworkingUtils_SetGlobalCallback_FakeIPResult
#SteamAPI_ISteamNetworkingUtils_SetGlobalCallback_MessagesSessionFailed
#SteamAPI_ISteamNetworkingUtils_SetGlobalCallback_MessagesSessionRequest
#SteamAPI_ISteamNetworkingUtils_SetGlobalCallback_SteamNetAuthenticationStatusChanged
#SteamAPI_ISteamNetworkingUtils_SetGlobalCallback_SteamNetConnectionStatusChanged
#SteamAPI_ISteamNetworkingUtils_SetGlobalCallback_SteamRelayNetworkStatusChanged
#SteamAPI_ISteamNetworkingUtils_SetGlobalConfigValueFloat
#SteamAPI_ISteamNetworkingUtils_SetGlobalConfigValueInt32
#SteamAPI_ISteamNetworkingUtils_SetGlobalConfigValuePtr
#SteamAPI_ISteamNetworkingUtils_SetGlobalConfigValueString
#SteamAPI_ISteamNetworkingUtils_SteamNetworkingIdentity_ParseString
#SteamAPI_ISteamNetworkingUtils_SteamNetworkingIdentity_ToString
#SteamAPI_ISteamNetworkingUtils_SteamNetworkingIPAddr_GetFakeIPType
#SteamAPI_ISteamNetworkingUtils_SteamNetworkingIPAddr_ParseString
#SteamAPI_ISteamNetworkingUtils_SteamNetworkingIPAddr_ToString
#SteamAPI_ISteamParentalSettings_BIsAppBlocked
#SteamAPI_ISteamParentalSettings_BIsAppInBlockList
#SteamAPI_ISteamParentalSettings_BIsFeatureBlocked
#SteamAPI_ISteamParentalSettings_BIsFeatureInBlockList
#SteamAPI_ISteamParentalSettings_BIsParentalLockEnabled
#SteamAPI_ISteamParentalSettings_BIsParentalLockLocked
#SteamAPI_ISteamParties_CancelReservation
#SteamAPI_ISteamParties_ChangeNumOpenSlots
#SteamAPI_ISteamParties_CreateBeacon
#SteamAPI_ISteamParties_DestroyBeacon
#SteamAPI_ISteamParties_GetAvailableBeaconLocations
#SteamAPI_ISteamParties_GetBeaconByIndex
#SteamAPI_ISteamParties_GetBeaconDetails
#SteamAPI_ISteamParties_GetBeaconLocationData
#SteamAPI_ISteamParties_GetNumActiveBeacons
#SteamAPI_ISteamParties_GetNumAvailableBeaconLocations
#SteamAPI_ISteamParties_JoinParty
#SteamAPI_ISteamParties_OnReservationCompleted
#SteamAPI_ISteamRemotePlay_BGetSessionClientResolution
#SteamAPI_ISteamRemotePlay_BSendRemotePlayTogetherInvite
#SteamAPI_ISteamRemotePlay_BStartRemotePlayTogether
#SteamAPI_ISteamRemotePlay_GetSessionClientFormFactor
#SteamAPI_ISteamRemotePlay_GetSessionClientName
#SteamAPI_ISteamRemotePlay_GetSessionCount
#SteamAPI_ISteamRemotePlay_GetSessionID
#SteamAPI_ISteamRemotePlay_GetSessionSteamID
#SteamAPI_ISteamRemoteStorage_BeginFileWriteBatch
#SteamAPI_ISteamRemoteStorage_CommitPublishedFileUpdate
#SteamAPI_ISteamRemoteStorage_CreatePublishedFileUpdateRequest
#SteamAPI_ISteamRemoteStorage_DeletePublishedFile
#SteamAPI_ISteamRemoteStorage_EndFileWriteBatch
#SteamAPI_ISteamRemoteStorage_EnumeratePublishedFilesByUserAction
#SteamAPI_ISteamRemoteStorage_EnumeratePublishedWorkshopFiles
#SteamAPI_ISteamRemoteStorage_EnumerateUserPublishedFiles
#SteamAPI_ISteamRemoteStorage_EnumerateUserSharedWorkshopFiles
#SteamAPI_ISteamRemoteStorage_EnumerateUserSubscribedFiles
#SteamAPI_ISteamRemoteStorage_FileDelete
#SteamAPI_ISteamRemoteStorage_FileExists
#SteamAPI_ISteamRemoteStorage_FileForget
#SteamAPI_ISteamRemoteStorage_FilePersisted
#SteamAPI_ISteamRemoteStorage_FileRead
#SteamAPI_ISteamRemoteStorage_FileReadAsync
#SteamAPI_ISteamRemoteStorage_FileReadAsyncComplete
#SteamAPI_ISteamRemoteStorage_FileShare
#SteamAPI_ISteamRemoteStorage_FileWrite
#SteamAPI_ISteamRemoteStorage_FileWriteAsync
#SteamAPI_ISteamRemoteStorage_FileWriteStreamCancel
#SteamAPI_ISteamRemoteStorage_FileWriteStreamClose
#SteamAPI_ISteamRemoteStorage_FileWriteStreamOpen
#SteamAPI_ISteamRemoteStorage_FileWriteStreamWriteChunk
#SteamAPI_ISteamRemoteStorage_GetCachedUGCCount
#SteamAPI_ISteamRemoteStorage_GetCachedUGCHandle
#SteamAPI_ISteamRemoteStorage_GetFileCount
#SteamAPI_ISteamRemoteStorage_GetFileNameAndSize
#SteamAPI_ISteamRemoteStorage_GetFileSize
#SteamAPI_ISteamRemoteStorage_GetFileTimestamp
#SteamAPI_ISteamRemoteStorage_GetLocalFileChange
#SteamAPI_ISteamRemoteStorage_GetLocalFileChangeCount
#SteamAPI_ISteamRemoteStorage_GetPublishedFileDetails
#SteamAPI_ISteamRemoteStorage_GetPublishedItemVoteDetails
#SteamAPI_ISteamRemoteStorage_GetQuota
#SteamAPI_ISteamRemoteStorage_GetSyncPlatforms
#SteamAPI_ISteamRemoteStorage_GetUGCDetails
#SteamAPI_ISteamRemoteStorage_GetUGCDownloadProgress
#SteamAPI_ISteamRemoteStorage_GetUserPublishedItemVoteDetails
#SteamAPI_ISteamRemoteStorage_IsCloudEnabledForAccount
#SteamAPI_ISteamRemoteStorage_IsCloudEnabledForApp
#SteamAPI_ISteamRemoteStorage_PublishVideo
#SteamAPI_ISteamRemoteStorage_PublishWorkshopFile
#SteamAPI_ISteamRemoteStorage_SetCloudEnabledForApp
#SteamAPI_ISteamRemoteStorage_SetSyncPlatforms
#SteamAPI_ISteamRemoteStorage_SetUserPublishedFileAction
#SteamAPI_ISteamRemoteStorage_SubscribePublishedFile
#SteamAPI_ISteamRemoteStorage_UGCDownload
#SteamAPI_ISteamRemoteStorage_UGCDownloadToLocation
#SteamAPI_ISteamRemoteStorage_UGCRead
#SteamAPI_ISteamRemoteStorage_UnsubscribePublishedFile
#SteamAPI_ISteamRemoteStorage_UpdatePublishedFileDescription
#SteamAPI_ISteamRemoteStorage_UpdatePublishedFileFile
#SteamAPI_ISteamRemoteStorage_UpdatePublishedFilePreviewFile
#SteamAPI_ISteamRemoteStorage_UpdatePublishedFileSetChangeDescription
#SteamAPI_ISteamRemoteStorage_UpdatePublishedFileTags
#SteamAPI_ISteamRemoteStorage_UpdatePublishedFileTitle
#SteamAPI_ISteamRemoteStorage_UpdatePublishedFileVisibility
#SteamAPI_ISteamRemoteStorage_UpdateUserPublishedItemVote
#SteamAPI_ISteamScreenshots_AddScreenshotToLibrary
#SteamAPI_ISteamScreenshots_AddVRScreenshotToLibrary
#SteamAPI_ISteamScreenshots_HookScreenshots
#SteamAPI_ISteamScreenshots_IsScreenshotsHooked
#SteamAPI_ISteamScreenshots_SetLocation
#SteamAPI_ISteamScreenshots_TagPublishedFile
#SteamAPI_ISteamScreenshots_TagUser
#SteamAPI_ISteamScreenshots_TriggerScreenshot
#SteamAPI_ISteamScreenshots_WriteScreenshot
#SteamAPI_ISteamUGC_AddAppDependency
#SteamAPI_ISteamUGC_AddContentDescriptor
#SteamAPI_ISteamUGC_AddDependency
#SteamAPI_ISteamUGC_AddExcludedTag
#SteamAPI_ISteamUGC_AddItemKeyValueTag
#SteamAPI_ISteamUGC_AddItemPreviewFile
#SteamAPI_ISteamUGC_AddItemPreviewVideo
#SteamAPI_ISteamUGC_AddItemToFavorites
#SteamAPI_ISteamUGC_AddRequiredKeyValueTag
#SteamAPI_ISteamUGC_AddRequiredTag
#SteamAPI_ISteamUGC_AddRequiredTagGroup
#SteamAPI_ISteamUGC_BInitWorkshopForGameServer
#SteamAPI_ISteamUGC_CreateItem
#SteamAPI_ISteamUGC_CreateQueryAllUGCRequestCursor
#SteamAPI_ISteamUGC_CreateQueryAllUGCRequestPage
#SteamAPI_ISteamUGC_CreateQueryUGCDetailsRequest
#SteamAPI_ISteamUGC_CreateQueryUserUGCRequest
#SteamAPI_ISteamUGC_DeleteItem
#SteamAPI_ISteamUGC_DownloadItem
#SteamAPI_ISteamUGC_GetAppDependencies
#SteamAPI_ISteamUGC_GetItemDownloadInfo
#SteamAPI_ISteamUGC_GetItemInstallInfo
#SteamAPI_ISteamUGC_GetItemState
#SteamAPI_ISteamUGC_GetItemUpdateProgress
#SteamAPI_ISteamUGC_GetNumSubscribedItems
#SteamAPI_ISteamUGC_GetQueryFirstUGCKeyValueTag
#SteamAPI_ISteamUGC_GetQueryUGCAdditionalPreview
#SteamAPI_ISteamUGC_GetQueryUGCChildren
#SteamAPI_ISteamUGC_GetQueryUGCContentDescriptors
#SteamAPI_ISteamUGC_GetQueryUGCKeyValueTag
#SteamAPI_ISteamUGC_GetQueryUGCMetadata
#SteamAPI_ISteamUGC_GetQueryUGCNumAdditionalPreviews
#SteamAPI_ISteamUGC_GetQueryUGCNumKeyValueTags
#SteamAPI_ISteamUGC_GetQueryUGCNumTags
#SteamAPI_ISteamUGC_GetQueryUGCPreviewURL
#SteamAPI_ISteamUGC_GetQueryUGCResult
#SteamAPI_ISteamUGC_GetQueryUGCStatistic
#SteamAPI_ISteamUGC_GetQueryUGCTag
#SteamAPI_ISteamUGC_GetQueryUGCTagDisplayName
#SteamAPI_ISteamUGC_GetSubscribedItems
#SteamAPI_ISteamUGC_GetUserContentDescriptorPreferences
#SteamAPI_ISteamUGC_GetUserItemVote
#SteamAPI_ISteamUGC_GetWorkshopEULAStatus
#SteamAPI_ISteamUGC_ReleaseQueryUGCRequest
#SteamAPI_ISteamUGC_RemoveAllItemKeyValueTags
#SteamAPI_ISteamUGC_RemoveAppDependency
#SteamAPI_ISteamUGC_RemoveContentDescriptor
#SteamAPI_ISteamUGC_RemoveDependency
#SteamAPI_ISteamUGC_RemoveItemFromFavorites
#SteamAPI_ISteamUGC_RemoveItemKeyValueTags
#SteamAPI_ISteamUGC_RemoveItemPreview
#SteamAPI_ISteamUGC_RequestUGCDetails
#SteamAPI_ISteamUGC_SendQueryUGCRequest
#SteamAPI_ISteamUGC_SetAllowCachedResponse
#SteamAPI_ISteamUGC_SetAllowLegacyUpload
#SteamAPI_ISteamUGC_SetCloudFileNameFilter
#SteamAPI_ISteamUGC_SetItemContent
#SteamAPI_ISteamUGC_SetItemDescription
#SteamAPI_ISteamUGC_SetItemMetadata
#SteamAPI_ISteamUGC_SetItemPreview
#SteamAPI_ISteamUGC_SetItemTags
#SteamAPI_ISteamUGC_SetItemTitle
#SteamAPI_ISteamUGC_SetItemUpdateLanguage
#SteamAPI_ISteamUGC_SetItemVisibility
#SteamAPI_ISteamUGC_SetLanguage
#SteamAPI_ISteamUGC_SetMatchAnyTag
#SteamAPI_ISteamUGC_SetRankedByTrendDays
#SteamAPI_ISteamUGC_SetReturnAdditionalPreviews
#SteamAPI_ISteamUGC_SetReturnChildren
#SteamAPI_ISteamUGC_SetReturnKeyValueTags
#SteamAPI_ISteamUGC_SetReturnLongDescription
#SteamAPI_ISteamUGC_SetReturnMetadata
#SteamAPI_ISteamUGC_SetReturnOnlyIDs
#SteamAPI_ISteamUGC_SetReturnPlaytimeStats
#SteamAPI_ISteamUGC_SetReturnTotalOnly
#SteamAPI_ISteamUGC_SetSearchText
#SteamAPI_ISteamUGC_SetTimeCreatedDateRange
#SteamAPI_ISteamUGC_SetTimeUpdatedDateRange
#SteamAPI_ISteamUGC_SetUserItemVote
#SteamAPI_ISteamUGC_ShowWorkshopEULA
#SteamAPI_ISteamUGC_StartItemUpdate
#SteamAPI_ISteamUGC_StartPlaytimeTracking
#SteamAPI_ISteamUGC_StopPlaytimeTracking
#SteamAPI_ISteamUGC_StopPlaytimeTrackingForAllItems
#SteamAPI_ISteamUGC_SubmitItemUpdate
#SteamAPI_ISteamUGC_SubscribeItem
#SteamAPI_ISteamUGC_SuspendDownloads
#SteamAPI_ISteamUGC_UnsubscribeItem
#SteamAPI_ISteamUGC_UpdateItemPreviewFile
#SteamAPI_ISteamUGC_UpdateItemPreviewVideo
#SteamAPI_ISteamUser_AdvertiseGame
#SteamAPI_ISteamUser_BeginAuthSession
#SteamAPI_ISteamUser_BIsBehindNAT
#SteamAPI_ISteamUser_BIsPhoneIdentifying
#SteamAPI_ISteamUser_BIsPhoneRequiringVerification
#SteamAPI_ISteamUser_BIsPhoneVerified
#SteamAPI_ISteamUser_BIsTwoFactorEnabled
#SteamAPI_ISteamUser_BLoggedOn
#SteamAPI_ISteamUser_BSetDurationControlOnlineState
#SteamAPI_ISteamUser_CancelAuthTicket
#SteamAPI_ISteamUser_DecompressVoice
#SteamAPI_ISteamUser_EndAuthSession
#SteamAPI_ISteamUser_GetAuthSessionTicket
#SteamAPI_ISteamUser_GetAuthTicketForWebApi
#SteamAPI_ISteamUser_GetAvailableVoice
#SteamAPI_ISteamUser_GetDurationControl
#SteamAPI_ISteamUser_GetEncryptedAppTicket
#SteamAPI_ISteamUser_GetGameBadgeLevel
#SteamAPI_ISteamUser_GetHSteamUser
#SteamAPI_ISteamUser_GetMarketEligibility
#SteamAPI_ISteamUser_GetPlayerSteamLevel
#SteamAPI_ISteamUser_GetSteamID
#SteamAPI_ISteamUser_GetUserDataFolder
#SteamAPI_ISteamUser_GetVoice
#SteamAPI_ISteamUser_GetVoiceOptimalSampleRate
#SteamAPI_ISteamUser_InitiateGameConnection_DEPRECATED
#SteamAPI_ISteamUser_RequestEncryptedAppTicket
#SteamAPI_ISteamUser_RequestStoreAuthURL
#SteamAPI_ISteamUser_StartVoiceRecording
#SteamAPI_ISteamUser_StopVoiceRecording
#SteamAPI_ISteamUser_TerminateGameConnection_DEPRECATED
#SteamAPI_ISteamUser_TrackAppUsageEvent
#SteamAPI_ISteamUser_UserHasLicenseForApp
#SteamAPI_ISteamUserStats_AttachLeaderboardUGC
#SteamAPI_ISteamUserStats_ClearAchievement
#SteamAPI_ISteamUserStats_DownloadLeaderboardEntries
#SteamAPI_ISteamUserStats_DownloadLeaderboardEntriesForUsers
#SteamAPI_ISteamUserStats_FindLeaderboard
#SteamAPI_ISteamUserStats_FindOrCreateLeaderboard
#SteamAPI_ISteamUserStats_GetAchievement
#SteamAPI_ISteamUserStats_GetAchievementAchievedPercent
#SteamAPI_ISteamUserStats_GetAchievementAndUnlockTime
#SteamAPI_ISteamUserStats_GetAchievementDisplayAttribute
#SteamAPI_ISteamUserStats_GetAchievementIcon
#SteamAPI_ISteamUserStats_GetAchievementName
#SteamAPI_ISteamUserStats_GetAchievementProgressLimitsFloat
#SteamAPI_ISteamUserStats_GetAchievementProgressLimitsInt32
#SteamAPI_ISteamUserStats_GetDownloadedLeaderboardEntry
#SteamAPI_ISteamUserStats_GetGlobalStatDouble
#SteamAPI_ISteamUserStats_GetGlobalStatHistoryDouble
#SteamAPI_ISteamUserStats_GetGlobalStatHistoryInt64
#SteamAPI_ISteamUserStats_GetGlobalStatInt64
#SteamAPI_ISteamUserStats_GetLeaderboardDisplayType
#SteamAPI_ISteamUserStats_GetLeaderboardEntryCount
#SteamAPI_ISteamUserStats_GetLeaderboardName
#SteamAPI_ISteamUserStats_GetLeaderboardSortMethod
#SteamAPI_ISteamUserStats_GetMostAchievedAchievementInfo
#SteamAPI_ISteamUserStats_GetNextMostAchievedAchievementInfo
#SteamAPI_ISteamUserStats_GetNumAchievements
#SteamAPI_ISteamUserStats_GetNumberOfCurrentPlayers
#SteamAPI_ISteamUserStats_GetStatFloat
#SteamAPI_ISteamUserStats_GetStatInt32
#SteamAPI_ISteamUserStats_GetUserAchievement
#SteamAPI_ISteamUserStats_GetUserAchievementAndUnlockTime
#SteamAPI_ISteamUserStats_GetUserStatFloat
#SteamAPI_ISteamUserStats_GetUserStatInt32
#SteamAPI_ISteamUserStats_IndicateAchievementProgress
#SteamAPI_ISteamUserStats_RequestCurrentStats
#SteamAPI_ISteamUserStats_RequestGlobalAchievementPercentages
#SteamAPI_ISteamUserStats_RequestGlobalStats
#SteamAPI_ISteamUserStats_RequestUserStats
#SteamAPI_ISteamUserStats_ResetAllStats
#SteamAPI_ISteamUserStats_SetAchievement
#SteamAPI_ISteamUserStats_SetStatFloat
#SteamAPI_ISteamUserStats_SetStatInt32
#SteamAPI_ISteamUserStats_StoreStats
#SteamAPI_ISteamUserStats_UpdateAvgRateStat
#SteamAPI_ISteamUserStats_UploadLeaderboardScore
#SteamAPI_ISteamUtils_BOverlayNeedsPresent
#SteamAPI_ISteamUtils_CheckFileSignature
#SteamAPI_ISteamUtils_DismissFloatingGamepadTextInput
#SteamAPI_ISteamUtils_FilterText
#SteamAPI_ISteamUtils_GetAPICallFailureReason
#SteamAPI_ISteamUtils_GetAPICallResult
#SteamAPI_ISteamUtils_GetAppID
#SteamAPI_ISteamUtils_GetConnectedUniverse
#SteamAPI_ISteamUtils_GetCurrentBatteryPower
#SteamAPI_ISteamUtils_GetEnteredGamepadTextInput
#SteamAPI_ISteamUtils_GetEnteredGamepadTextLength
#SteamAPI_ISteamUtils_GetImageRGBA
#SteamAPI_ISteamUtils_GetImageSize
#SteamAPI_ISteamUtils_GetIPCCallCount
#SteamAPI_ISteamUtils_GetIPCountry
#SteamAPI_ISteamUtils_GetIPv6ConnectivityState
#SteamAPI_ISteamUtils_GetSecondsSinceAppActive
#SteamAPI_ISteamUtils_GetSecondsSinceComputerActive
#SteamAPI_ISteamUtils_GetServerRealTime
#SteamAPI_ISteamUtils_GetSteamUILanguage
#SteamAPI_ISteamUtils_InitFilterText
#SteamAPI_ISteamUtils_IsAPICallCompleted
#SteamAPI_ISteamUtils_IsOverlayEnabled
#SteamAPI_ISteamUtils_IsSteamChinaLauncher
#SteamAPI_ISteamUtils_IsSteamInBigPictureMode
#SteamAPI_ISteamUtils_IsSteamRunningInVR
#SteamAPI_ISteamUtils_IsSteamRunningOnSteamDeck
#SteamAPI_ISteamUtils_IsVRHeadsetStreamingEnabled
#SteamAPI_ISteamUtils_SetGameLauncherMode
#SteamAPI_ISteamUtils_SetOverlayNotificationInset
#SteamAPI_ISteamUtils_SetOverlayNotificationPosition
#SteamAPI_ISteamUtils_SetVRHeadsetStreamingEnabled
#SteamAPI_ISteamUtils_SetWarningMessageHook
#SteamAPI_ISteamUtils_ShowFloatingGamepadTextInput
#SteamAPI_ISteamUtils_ShowGamepadTextInput
#SteamAPI_ISteamUtils_StartVRDashboard
#SteamAPI_ISteamVideo_AddTimelineHighlightMarker
#SteamAPI_ISteamVideo_AddTimelineRangeEnd
#SteamAPI_ISteamVideo_AddTimelineRangeStart
#SteamAPI_ISteamVideo_AddTimelineTimestamp
#SteamAPI_ISteamVideo_GetOPFSettings
#SteamAPI_ISteamVideo_GetOPFStringForApp
#SteamAPI_ISteamVideo_GetVideoURL
#SteamAPI_ISteamVideo_IsBroadcasting
#SteamAPI_ISteamVideo_SetTimelineGameMode
#SteamAPI_ManualDispatch_FreeLastCallback
#SteamAPI_ManualDispatch_GetAPICallResult
#SteamAPI_ManualDispatch_GetNextCallback
#SteamAPI_ManualDispatch_Init
#SteamAPI_ManualDispatch_RunFrame
#SteamAPI_MatchMakingKeyValuePair_t_Construct
#SteamAPI_RegisterCallback
#SteamAPI_RegisterCallResult
#SteamAPI_ReleaseCurrentThreadMemory
#SteamAPI_RestartAppIfNecessary
#SteamAPI_RunCallbacks
#SteamAPI_servernetadr_t_Assign
#SteamAPI_servernetadr_t_Construct
#SteamAPI_servernetadr_t_GetConnectionAddressString
#SteamAPI_servernetadr_t_GetConnectionPort
#SteamAPI_servernetadr_t_GetIP
#SteamAPI_servernetadr_t_GetQueryAddressString
#SteamAPI_servernetadr_t_GetQueryPort
#SteamAPI_servernetadr_t_Init
#SteamAPI_servernetadr_t_IsLessThan
#SteamAPI_servernetadr_t_SetConnectionPort
#SteamAPI_servernetadr_t_SetIP
#SteamAPI_servernetadr_t_SetQueryPort
#SteamAPI_SetBreakpadAppID
#SteamAPI_SetMiniDumpComment
#SteamAPI_SetTryCatchCallbacks
#SteamAPI_Shutdown
#SteamAPI_SteamAppList_v001
#SteamAPI_SteamApps_v008
#SteamAPI_SteamController_v008
#SteamAPI_SteamDatagramHostedAddress_Clear
#SteamAPI_SteamDatagramHostedAddress_GetPopID
#SteamAPI_SteamDatagramHostedAddress_SetDevAddress
#SteamAPI_SteamFriends_v017
#SteamAPI_SteamGameSearch_v001
#SteamAPI_SteamGameServer_v015
#SteamAPI_SteamGameServerHTTP_v003
#SteamAPI_SteamGameServerInventory_v003
#SteamAPI_SteamGameServerNetworking_v006
#SteamAPI_SteamGameServerNetworkingMessages_SteamAPI_v002
#SteamAPI_SteamGameServerNetworkingSockets_SteamAPI_v012
#SteamAPI_SteamGameServerStats_v001
#SteamAPI_SteamGameServerUGC_v018
#SteamAPI_SteamGameServerUtils_v010
#SteamAPI_SteamHTMLSurface_v005
#SteamAPI_SteamHTTP_v003
#SteamAPI_SteamInput_v006
#SteamAPI_SteamInventory_v003
#SteamAPI_SteamIPAddress_t_IsSet
#SteamAPI_SteamMatchmaking_v009
#SteamAPI_SteamMatchmakingServers_v002