-
Notifications
You must be signed in to change notification settings - Fork 17
/
namegen.cpp
7404 lines (7358 loc) · 391 KB
/
namegen.cpp
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
#include <string>
#include <sstream>
#include <iomanip>
// TODO: allow using namegen from an external file instead?
// eg. x360_imports.idc ala xorlosers loader?
const char* connectxNameGen(int id)
{
if (id == 0x00000001) return "CxGetVersion";
if (id == 0x00000002) return "NbtNetbios";
if (id == 0x00000003) return "SmbCloseHandle";
if (id == 0x00000004) return "SmbCreateDirectoryW";
if (id == 0x00000005) return "SmbCreateFileW";
if (id == 0x00000006) return "SmbDeleteFileW";
if (id == 0x00000007) return "SmbFindClose";
if (id == 0x00000008) return "SmbFindFirstFileW";
if (id == 0x00000009) return "SmbFindNextFile";
if (id == 0x0000000A) return "SmbFlushFileBuffers";
if (id == 0x0000000B) return "SmbGetDiskFreeSpaceW";
if (id == 0x0000000C) return "SmbGetFileAttributesW";
if (id == 0x0000000D) return "SmbGetFileInformationByHandle";
if (id == 0x0000000E) return "SmbGetFileSize";
if (id == 0x0000000F) return "SmbGetFileTime";
if (id == 0x00000010) return "SmbMoveFileW";
if (id == 0x00000011) return "SmbReadFile";
if (id == 0x00000012) return "SmbRemoveDirectoryW";
if (id == 0x00000013) return "SmbSetEndOfFile";
if (id == 0x00000014) return "SmbSetFileAttributesW";
if (id == 0x00000015) return "SmbSetFilePointer";
if (id == 0x00000016) return "SmbSetFileTime";
if (id == 0x00000017) return "SmbStartup";
if (id == 0x00000018) return "SmbWriteFile";
return nullptr;
}
const char* createprofileNameGen(int id)
{
if (id == 0x00000001) return "CreateProfile_Register";
if (id == 0x00000002) return "CreateProfile_Unregister";
return nullptr;
}
const char* vkNameGen(int id)
{
if (id == 0x00000001) return "RegisterXuiClasses";
if (id == 0x00000002) return "VK_UnInit";
if (id == 0x00000003) return "VK_CreateScene";
if (id == 0x00000004) return "VK_GetUserCancelled";
return nullptr;
}
const char* xamNameGen_1640(int id)
{
if (id == 0x00000002) return "XSolidFiller_Finalize";
if (id == 0x00000003) return "DbgInit";
if (id == 0x00000004) return "XSolidFiller_Finalize2";
if (id == 0x00000005) return "DbgAssertSzFmt";
if (id == 0x0000000A) return "XamInputGetCapabilities";
if (id == 0x0000000B) return "XamInputGetState";
if (id == 0x0000000C) return "XamInputSetState";
if (id == 0x0000000D) return "XamInputGetKeystroke";
if (id == 0x0000000E) return "XamInputEnableAutobind";
if (id == 0x0000000F) return "?XamInputRawState@@YAKKKHPAU_XINPUT_RAW@@@Z";
if (id == 0x00000010) return "XamEnableSystemAppInput";
if (id == 0x00000011) return "XamInputGetDeviceStats";
if (id == 0x00000012) return "XamInputGetKeystrokeEx";
if (id == 0x00000014) return "XLaunchNewImage";
if (id == 0x00000015) return "XLaunchNewImageEx";
if (id == 0x00000016) return "XSetLaunchData";
if (id == 0x00000017) return "XGetLaunchDataSize";
if (id == 0x00000018) return "XGetLaunchData";
if (id == 0x00000019) return "XamTerminateTitle";
if (id == 0x0000001D) return "XamExecutingOnBehalfOfTitle";
if (id == 0x0000001E) return "XamTaskCreateQueue";
if (id == 0x0000001F) return "XamTaskSchedule";
if (id == 0x00000020) return "XamTaskReschedule";
if (id == 0x00000021) return "XamTaskCloseHandle";
if (id == 0x00000022) return "XamTaskCancel";
if (id == 0x00000023) return "XamTaskShouldExit";
if (id == 0x00000024) return "XamTaskWaitOnCompletion";
if (id == 0x00000025) return "XamTaskModify";
if (id == 0x00000026) return "XamTaskGetCurrentTask";
if (id == 0x00000027) return "XamTaskGetAttributes";
if (id == 0x00000028) return "XamApplySkin";
if (id == 0x00000029) return "XamGetRootObj";
if (id == 0x0000002A) return "XamFormatMessage";
if (id == 0x0000002B) return "XamBuildResourceLocator";
if (id == 0x0000002C) return "XamShowMessageBox";
if (id == 0x0000002D) return "XCustomGetBannerImage";
if (id == 0x0000002E) return "XCustomSetBannerImage";
if (id == 0x0000002F) return "XCustomSetAction";
if (id == 0x00000030) return "XCustomGetLastActionPress";
if (id == 0x00000031) return "XCustomGetActionSetting";
if (id == 0x00000032) return "XCustomBroadcastActionEvent";
if (id == 0x00000033) return "XamGetBkgndDefault";
if (id == 0x00000037) return "XamAlloc";
if (id == 0x00000038) return "XamAllocEx";
if (id == 0x00000039) return "XamFree";
if (id == 0x0000003A) return "XamAllocSize";
if (id == 0x0000003C) return "XMsgInProcessCall";
if (id == 0x0000003D) return "XMsgCompleteIORequest";
if (id == 0x0000003E) return "XMsgSystemProcessCall";
if (id == 0x0000003F) return "XMsgStartIORequest";
if (id == 0x00000040) return "XMsgCancelIORequest";
if (id == 0x00000041) return "XMsgAcquireAsyncMessageFromOverlapped";
if (id == 0x00000042) return "XMsgReleaseAsyncMessageToOverlapped";
if (id == 0x00000043) return "XamGetOverlappedResult";
if (id == 0x00000046) return "XamUserGetDeviceContext";
if (id == 0x00000047) return "XamUserLookupDevice";
if (id == 0x00000048) return "XamUserGetXUID";
if (id == 0x00000049) return "XamUserLogon";
if (id == 0x0000004A) return "XamUserGetGamerTag";
if (id == 0x0000004B) return "XamUserGetUserIndexMask";
if (id == 0x0000004C) return "XamUserGetName";
if (id == 0x0000004E) return "XamUserGetSigninState";
if (id == 0x0000004F) return "XamUserGetIndexFromXUID";
if (id == 0x00000050) return "XamUserCheckPrivilege";
if (id == 0x00000051) return "XamUserAreUsersFriends";
if (id == 0x00000052) return "XamSetUserPresetPresenceState";
if (id == 0x00000053) return "XamGetUserPresetPresenceState";
if (id == 0x00000054) return "XamUserGetUserFlagsFromXUID";
if (id == 0x00000055) return "XamUserGetMembershipTierFromXUID";
if (id == 0x00000056) return "XamUserGetOnlineCountryFromXUID";
if (id == 0x00000057) return "XamUserReadProfileSettings";
if (id == 0x00000058) return "XamUserWriteProfileSettings";
if (id == 0x00000059) return "XamUserGetMembershipTier";
if (id == 0x0000005A) return "XamUserGetUserFlags";
if (id == 0x0000005B) return "XamUserGetRequestedUserIndexMask";
if (id == 0x0000005C) return "XamUserIsGuest";
if (id == 0x00000064) return "XamProfileCreate";
if (id == 0x00000065) return "XamProfileCreateEnumerator";
if (id == 0x00000066) return "XamProfileEnumerate";
if (id == 0x00000067) return "XamProfileEnumerateCD";
if (id == 0x00000068) return "XamProfileDelete";
if (id == 0x00000069) return "XamProfileGetCreationStatus";
if (id == 0x0000006A) return "XamProfileFindAccount";
if (id == 0x0000006B) return "XamProfileRenameAccount";
if (id == 0x0000006C) return "XamProfileOpen";
if (id == 0x0000006D) return "XamProfileClose";
if (id == 0x0000006E) return "XamAppLoad";
if (id == 0x00000070) return "XamAppUnloadSelf";
if (id == 0x00000071) return "XamAppUnloadStack";
if (id == 0x00000072) return "XamSendMessageToLoadedApps";
if (id == 0x00000073) return "XamAppRequestLoad";
if (id == 0x00000074) return "XamAppUnrequestLoad";
if (id == 0x00000075) return "XamNavigate";
if (id == 0x00000078) return "?XamVoiceCreate@@YAJKKPAPAX@Z";
if (id == 0x00000079) return "?XamVoiceSubmitPacket@@YAJPAXHPAUXMEDIAPACKET@@@Z";
if (id == 0x0000007A) return "?XamVoiceClose@@YAHPAX@Z";
if (id == 0x00000082) return "XamContentCreate";
if (id == 0x00000083) return "XamContentDelete";
if (id == 0x00000084) return "XamContentClose";
if (id == 0x00000085) return "XamContentCreateEnumerator";
if (id == 0x00000086) return "XamContentCreateDeviceEnumerator";
if (id == 0x00000087) return "XamContentGetDeviceData";
if (id == 0x00000088) return "XamContentGetDeviceName";
if (id == 0x00000089) return "XamContentCopyInternal";
if (id == 0x0000008A) return "XamContentMoveInternal";
if (id == 0x0000008B) return "XamContentGetMetaDataInternal";
if (id == 0x0000008C) return "XamContentCreateEnumeratorInternal";
if (id == 0x0000008D) return "XamContentAggregateCreateEnumerator";
if (id == 0x0000008E) return "XamContentDeleteInternal";
if (id == 0x0000008F) return "XamContentCreateInternal";
if (id == 0x00000090) return "XamContentCreatePackage";
if (id == 0x00000096) return "XamNotifyCreateListener";
if (id == 0x00000097) return "XNotifyGetNext";
if (id == 0x00000098) return "XNotifyPositionUI";
if (id == 0x00000099) return "XNotifyDelayUI";
if (id == 0x0000009A) return "XNotifyBroadcast";
if (id == 0x0000009B) return "XNotifyRegisterArea";
if (id == 0x0000009C) return "XNotifyQueueUI";
if (id == 0x0000009D) return "XamNotifyCreateListenerInternal";
if (id == 0x0000009E) return "XNotifyUISetOptions";
if (id == 0x0000009F) return "XNotifyUIGetOptions";
if (id == 0x000000A0) return "XamEnableInactivityProcessing";
if (id == 0x000000A1) return "XamSetInactivityTime";
if (id == 0x000000A4) return "XamCreateEnumeratorHandle";
if (id == 0x000000A5) return "XamGetPrivateEnumStructureFromHandle";
if (id == 0x000000A6) return "XamEnumerate";
if (id == 0x000000AA) return "XamUpdateStart";
if (id == 0x000000AB) return "XamUpdateGetProgress";
if (id == 0x000000AC) return "XamUpdateGetExtenderInstance";
if (id == 0x000000AD) return "XamUpdateFinish";
if (id == 0x000000C9) return "XamShowSigninUI";
if (id == 0x000000CA) return "XamShowSigninUIp";
if (id == 0x000000CB) return "XamShowFriendsUI";
if (id == 0x000000CC) return "XamShowMessagesUI";
if (id == 0x000000CD) return "XamShowKeyboardUI";
if (id == 0x000000CE) return "XamShowQuickChatUI";
if (id == 0x000000CF) return "XamShowVoiceMailUI";
if (id == 0x000000D0) return "XamShowGamerCardUI";
if (id == 0x000000D1) return "XamShowAchievementsUI";
if (id == 0x000000D2) return "XamShowPlayerReviewUI";
if (id == 0x000000D3) return "XamShowMarketplaceUI";
if (id == 0x000000D4) return "XamShowPlayersUI";
if (id == 0x000000D5) return "XamShowUpdaterUI";
if (id == 0x000000D6) return "XamShowMessageBoxUI";
if (id == 0x000000D7) return "XamShowDeviceSelectorUI";
if (id == 0x000000D8) return "XamShowMessageComposeUI";
if (id == 0x000000D9) return "XamShowGameInviteUI";
if (id == 0x000000DA) return "XamShowFriendRequestUI";
if (id == 0x000000DB) return "XamShowCreateProfileUI";
if (id == 0x000000DC) return "XamShowGamesUI";
if (id == 0x000000DD) return "XamShowLiveSignupUI";
if (id == 0x000000DE) return "XamShowFriendsUIp";
if (id == 0x000000DF) return "XamShowComplaintUI";
if (id == 0x000000E0) return "XamShowReputationUI";
if (id == 0x000000E1) return "XamShowGamerCardUIForXUID";
if (id == 0x000000FA) return "XamUserCreateAchievementEnumerator";
if (id == 0x000000FB) return "XamReadTile";
if (id == 0x000000FC) return "XamWriteGamerTile";
if (id == 0x000000FD) return "XamWriteTile";
if (id == 0x000000FE) return "?XamReadImage@@YAJW4XTILETYPE@@KK_KPAPAU_XUIBRUSH@@@Z";
if (id == 0x000000FF) return "XamUserCreateTitlesPlayedEnumerator";
if (id == 0x00000100) return "XamDecompressPNGToTexture";
if (id == 0x00000101) return "XamReadTileToTexture";
if (id == 0x00000102) return "XamReadString";
if (id == 0x00000103) return "XamUserCreateStatsEnumerator";
if (id == 0x00000104) return "XamUserAddRecentPlayer";
if (id == 0x00000105) return "XamUserUpdateRecentPlayer";
if (id == 0x00000106) return "XamUserCreatePlayerEnumerator";
if (id == 0x00000107) return "XamParseGamerTileKey";
if (id == 0x0000012C) return "XamCacheStoreFile";
if (id == 0x0000012D) return "XamCacheFetchFile";
if (id == 0x0000012E) return "XamCacheOpenFile";
if (id == 0x0000012F) return "XamCacheCloseFile";
if (id == 0x00000130) return "XamGetCachedTitleName";
if (id == 0x000001F4) return "XuiAnimRun";
if (id == 0x000001F5) return "XuiApplyLocale";
if (id == 0x000001F6) return "XuiBubbleMessage";
if (id == 0x000001F7) return "XuiControlIsBackButton";
if (id == 0x000001F8) return "XuiControlIsNavButton";
if (id == 0x000001F9) return "XuiCreateObject";
if (id == 0x000001FA) return "XuiDestroyObject";
if (id == 0x000001FB) return "XuiDynamicCast";
if (id == 0x000001FC) return "XuiElementAddChild";
if (id == 0x000001FD) return "XuiElementFindNamedFrame";
if (id == 0x000001FE) return "XuiElementGetChildById";
if (id == 0x000001FF) return "XuiElementGetFirstChild";
if (id == 0x00000200) return "XuiElementGetFocus";
if (id == 0x00000201) return "XuiElementGetFocusUser";
if (id == 0x00000202) return "XuiElementGetId";
if (id == 0x00000203) return "XuiElementGetLastChild";
if (id == 0x00000204) return "XuiElementGetNext";
if (id == 0x00000205) return "XuiElementGetParent";
if (id == 0x00000206) return "XuiElementGetUserFocus";
if (id == 0x00000207) return "XuiElementInitFocus";
if (id == 0x00000208) return "XuiElementInitUserFocus";
if (id == 0x00000209) return "XuiElementPlayTimeline";
if (id == 0x0000020A) return "XuiElementSetBounds";
if (id == 0x0000020B) return "XuiElementSetFocus";
if (id == 0x0000020C) return "XuiElementSetUserFocus";
if (id == 0x0000020D) return "XuiElementTreeGetFocus";
if (id == 0x0000020E) return "XuiFindClass";
if (id == 0x0000020F) return "XuiFreeStringTable";
if (id == 0x00000210) return "XuiGetBaseObject";
if (id == 0x00000211) return "XuiGetClass";
if (id == 0x00000212) return "XuiGetObjectClass";
if (id == 0x00000213) return "XuiGetOuter";
if (id == 0x00000214) return "XuiInit";
if (id == 0x00000215) return "XuiLoadFromBinary";
if (id == 0x00000216) return "XuiLoadStringTableFromFile";
if (id == 0x00000217) return "XuiVisualGetBasePath";
if (id == 0x00000218) return "XuiLookupStringTable";
if (id == 0x00000219) return "XuiNavButtonGetPressPath";
if (id == 0x0000021A) return "XuiObjectFromHandle";
if (id == 0x0000021B) return "XuiObjectGetProperty";
if (id == 0x0000021C) return "XuiObjectGetPropertyId";
if (id == 0x0000021D) return "XuiProcessInput";
if (id == 0x0000021E) return "XuiRegisterClass";
if (id == 0x0000021F) return "XuiRenderBegin";
if (id == 0x00000220) return "XuiRenderCreateDC";
if (id == 0x00000221) return "XuiRenderDCDeviceChanged";
if (id == 0x00000222) return "XuiRenderDestroyDC";
if (id == 0x00000223) return "XuiRenderEnd";
if (id == 0x00000224) return "XuiRenderGetBackBufferSize";
if (id == 0x00000225) return "XuiRenderInit";
if (id == 0x00000226) return "XuiRenderInitShared";
if (id == 0x00000227) return "XuiRenderPresent";
if (id == 0x00000228) return "XuiRenderSetViewTransform";
if (id == 0x00000229) return "XuiRenderUninit";
if (id == 0x0000022B) return "XuiSceneCreate";
if (id == 0x0000022C) return "XuiSceneNavigateBack";
if (id == 0x0000022D) return "XuiSceneNavigateFirst";
if (id == 0x0000022E) return "XuiSceneNavigateForward";
if (id == 0x0000022F) return "XuiScenePlayBackFromTransition";
if (id == 0x00000230) return "XuiScenePlayBackToTransition";
if (id == 0x00000231) return "XuiScenePlayFromTransition";
if (id == 0x00000232) return "XuiScenePlayToTransition";
if (id == 0x00000233) return "XuiSendMessage";
if (id == 0x00000234) return "XuiSetLocale";
if (id == 0x00000235) return "XuiUninit";
if (id == 0x00000236) return "XuiUnregisterClass";
if (id == 0x00000237) return "XuiTextElementSetText";
if (id == 0x00000238) return "XuiSetTimer";
if (id == 0x00000239) return "XuiTimersRun";
if (id == 0x0000023A) return "XuiTextElementGetText";
if (id == 0x0000023B) return "XuiVisualSetBasePath";
if (id == 0x0000023C) return "XuiHandleIsValid";
if (id == 0x0000023D) return "XuiAlloc";
if (id == 0x0000023E) return "XuiFree";
if (id == 0x0000023F) return "XuiDefault_True";
if (id == 0x00000240) return "XuiDefault_EmptyString";
if (id == 0x00000241) return "XuiDefault_IntegerZero";
if (id == 0x00000242) return "XuiCopyString";
if (id == 0x00000243) return "XuiRealloc";
if (id == 0x00000244) return "XuiControlPlayOptionalVisual";
if (id == 0x00000245) return "XuiKillTimer";
if (id == 0x00000246) return "XuiElementEnableInput";
if (id == 0x00000247) return "XuiElementInputEnabled";
if (id == 0x00000248) return "XuiIsInstanceOf";
if (id == 0x00000249) return "XuiResourceComposeLocator";
if (id == 0x0000024A) return "XuiResourceLocatorIsAbsolute";
if (id == 0x0000024B) return "XuiBroadcastMessage";
if (id == 0x0000024C) return "XuiElementDisallowRecursiveTimelineControl";
if (id == 0x0000024D) return "XUIElementPropVal_Construct";
if (id == 0x0000024E) return "XUIElementPropVal_Destruct";
if (id == 0x0000024F) return "XUIElementPropVal_SetString";
if (id == 0x00000250) return "XuiObjectSetProperty";
if (id == 0x00000251) return "XuiElementGetOpacity";
if (id == 0x00000252) return "XuiElementSetOpacity";
if (id == 0x00000253) return "XuiEditSetTextLimit";
if (id == 0x00000254) return "XuiEditGetTextLimit";
if (id == 0x00000255) return "XuiSliderSetValue";
if (id == 0x00000256) return "XuiSliderGetValue";
if (id == 0x00000257) return "XuiSliderSetRange";
if (id == 0x00000258) return "XuiElementUnlink";
if (id == 0x00000259) return "XuiElementInsertChild";
if (id == 0x0000025A) return "XuiSceneNavigateBackToFirst";
if (id == 0x0000025B) return "XuiProgressBarSetRange";
if (id == 0x0000025C) return "XuiProgressBarSetValue";
if (id == 0x0000025D) return "XuiProgressBarGetValue";
if (id == 0x0000025E) return "XuiControlAttachVisual";
if (id == 0x0000025F) return "XuiCreateTextureBrush";
if (id == 0x00000260) return "XuiDestroyBrush";
if (id == 0x00000261) return "XUIElementPropVal_SetColorFromUint";
if (id == 0x00000262) return "XuiFigureSetFill";
if (id == 0x00000263) return "XuiSliderGetRange";
if (id == 0x00000264) return "XuiFigureSetTexture";
if (id == 0x00000265) return "XuiControlGetItemAssociation";
if (id == 0x00000266) return "XuiResourceLoadAll";
if (id == 0x00000267) return "XuiImageElementSetImagePath";
if (id == 0x00000268) return "XuiImageElementGetImagePath";
if (id == 0x00000269) return "XuiControlGetVisual";
if (id == 0x0000026A) return "XuiControlGetNavigation";
if (id == 0x0000026B) return "XuiLookupStringTableByIndex";
if (id == 0x0000026C) return "XUIElementPropVal_SetBool";
if (id == 0x0000026D) return "XuiElementHasFocus";
if (id == 0x0000026E) return "XUIElementPropVal_SetUint";
if (id == 0x0000026F) return "XUIElementPropVal_Clear";
if (id == 0x00000270) return "XuiEditSetTextFormatInfo";
if (id == 0x00000271) return "XuiCreateSolidBrush";
if (id == 0x00000272) return "XuiSceneInterruptTransitions";
if (id == 0x00000273) return "XuiResourceOpen";
if (id == 0x00000274) return "XuiResourceRead";
if (id == 0x00000275) return "XuiResourceClose";
if (id == 0x000002BC) return "XGetAudioFlags";
if (id == 0x000002BD) return "XGetAVPack";
if (id == 0x000002BE) return "XGetGameRegion";
if (id == 0x000002BF) return "XGetLanguage";
if (id == 0x000002C0) return "XGetParentalControlSetting";
if (id == 0x000002C1) return "XGetVideoFlags";
if (id == 0x000002C2) return "XGetVideoStandard";
if (id == 0x000002C3) return "XGetVideoMode";
if (id == 0x000002D0) return "XamSetDashContext";
if (id == 0x000002D1) return "XamGetDashContext";
if (id == 0x00000320) return "XamSetAutomation";
if (id == 0x00000321) return "XAutomationpBindController";
if (id == 0x00000322) return "XAutomationpUnbindController";
if (id == 0x00000323) return "XAutomationpInputXenonButton";
if (id == 0x00000324) return "XAutomationpInputPress";
if (id == 0x00000325) return "XAutomationpInputSetState";
if (id == 0x00000326) return "XamEnableOverdraw";
if (id == 0x0000032A) return "g_XuiAutomation";
if (id == 0x00000384) return "XamGetExecutionId";
if (id == 0x00000385) return "XamGetSPAName";
if (id == 0x0000038E) return "XamGetWCNConfigFile";
if (id == 0x000003E8) return "RtlFindFirstFile";
if (id == 0x000003E9) return "RtlFindNextFile";
if (id == 0x000003EA) return "RtlGetModuleFileName";
if (id == 0x000003EB) return "RtlOutputDebugString";
if (id == 0x000003EC) return "RtlRemoveDirectory";
if (id == 0x000003ED) return "RtlSleep";
if (id == 0x000003EE) return "RtlGetLastError";
if (id == 0x000003EF) return "RtlSetLastError";
if (id == 0x000003F0) return "RtlSetLastNTError";
if (id == 0x000003F7) return "RtlGetAttributesOnHeapAlloc";
if (id == 0x000003F8) return "RtlSetAttributesOnHeapAlloc";
if (id == 0x000003FA) return "RtlCreateHeap";
if (id == 0x000003FB) return "RtlDestroyHeap";
if (id == 0x000003FC) return "RtlAllocateHeap";
if (id == 0x000003FD) return "RtlAllocateHeapSlowly";
if (id == 0x000003FE) return "RtlReAllocateHeap";
if (id == 0x000003FF) return "RtlFreeHeap";
if (id == 0x00000400) return "RtlFreeHeapSlowly";
if (id == 0x00000401) return "RtlSizeHeap";
if (id == 0x00000402) return "RtlZeroHeap";
if (id == 0x0000040E) return "OutputDebugStringA";
if (id == 0x0000040F) return "DebugBreak";
if (id == 0x00000410) return "GetCurrentThreadId";
if (id == 0x00000414) return "CloseHandle";
if (id == 0x00000415) return "GetTickCount";
if (id == 0x00000416) return "GetLastError";
if (id == 0x00000417) return "SetFilePointer";
if (id == 0x00000418) return "SetFilePointerEx";
if (id == 0x00000419) return "SetLastError";
if (id == 0x0000041A) return "MultiByteToWideChar";
if (id == 0x0000041B) return "WideCharToMultiByte";
if (id == 0x0000041C) return "ReadFile";
if (id == 0x0000041D) return "FlushFileBuffers";
if (id == 0x0000041E) return "WriteFile";
if (id == 0x0000041F) return "OutputDebugStringW";
if (id == 0x00000420) return "SetEvent";
if (id == 0x00000421) return "XapiFormatTimeOut";
if (id == 0x00000422) return "CreateMutexA";
if (id == 0x00000423) return "OpenMutexA";
if (id == 0x00000424) return "ReleaseMutex";
if (id == 0x00000425) return "WaitForSingleObject";
if (id == 0x00000426) return "WaitForSingleObjectEx";
if (id == 0x00000427) return "GetFileSize";
if (id == 0x00000428) return "GetFileSizeEx";
if (id == 0x00000429) return "XapiDirectoryInformationToFindData";
if (id == 0x0000042A) return "XapiFormatObjectAttributes";
if (id == 0x0000042B) return "ResetEvent";
if (id == 0x0000042C) return "wsprintfA";
if (id == 0x0000042D) return "wsprintfW";
if (id == 0x0000042E) return "GetOverlappedResult";
if (id == 0x0000042F) return "QueryPerformanceCounter";
if (id == 0x00000430) return "QueryPerformanceFrequency";
if (id == 0x00000431) return "LocalAlloc";
if (id == 0x00000432) return "LocalFree";
if (id == 0x00000433) return "RaiseException";
if (id == 0x00000434) return "RtlUniform";
if (id == 0x00000435) return "RtlRandom";
if (id == 0x00000436) return "Sleep";
if (id == 0x00000437) return "SleepEx";
if (id == 0x00000438) return "XMemSet";
if (id == 0x00000439) return "XRegisterThreadNotifyRoutine";
if (id == 0x0000043A) return "XGetOverlappedExtendedError";
if (id == 0x0000043B) return "XGetOverlappedResult";
if (id == 0x0000043C) return "CreateThread";
if (id == 0x0000043D) return "ResumeThread";
if (id == 0x0000043E) return "ExitThread";
if (id == 0x0000043F) return "GetTimeZoneInformation";
if (id == 0x00000440) return "GetSystemTimeAsFileTime";
if (id == 0x00000441) return "SystemTimeToFileTime";
if (id == 0x00000442) return "FileTimeToSystemTime";
if (id == 0x00000443) return "GetSystemTime";
if (id == 0x00000444) return "GetLocalTime";
if (id == 0x00000445) return "CreateDirectoryA";
if (id == 0x00000446) return "CreateEventA";
if (id == 0x00000447) return "CreateFileA";
if (id == 0x00000448) return "DeleteFileA";
if (id == 0x00000449) return "FindFirstFileA";
if (id == 0x0000044A) return "FindNextFileA";
if (id == 0x0000044B) return "GetFileAttributesA";
if (id == 0x0000044D) return "GetFileAttributesExA";
if (id == 0x0000044E) return "GetModuleHandleA";
if (id == 0x0000044F) return "GetDiskFreeSpaceExA";
if (id == 0x00000450) return "PIXAddEvent";
if (id == 0x00000451) return "PIXBeginEvent";
if (id == 0x00000452) return "PIXEndEvent";
if (id == 0x00000453) return "PIXBeginCapture";
if (id == 0x00000454) return "PIXEndCapture";
if (id == 0x00000455) return "PIXAddCounter";
if (id == 0x00000456) return "PIXWriteData";
if (id == 0x00000457) return "SetWaitableTimer";
if (id == 0x00000458) return "CancelWaitableTimer";
if (id == 0x00000459) return "CreateWaitableTimerA";
if (id == 0x0000045A) return "DuplicateHandle";
if (id == 0x0000045B) return "XapipCreateThread";
if (id == 0x0000045C) return "lstrcpyA";
if (id == 0x0000045D) return "lstrcpyW";
if (id == 0x0000045E) return "lstrcpynA";
if (id == 0x0000045F) return "lstrcpynW";
if (id == 0x00000460) return "lstrcatA";
if (id == 0x00000461) return "lstrcatW";
if (id == 0x00000462) return "lstrlenA";
if (id == 0x00000463) return "lstrlenW";
if (id == 0x00000464) return "IsBadReadPtr";
if (id == 0x00000465) return "IsBadWritePtr";
if (id == 0x000007D2) return "GetProcessHeap";
if (id == 0x000007D3) return "UnhandledExceptionFilter";
if (id == 0x000007D4) return "SetUnhandledExceptionFilter";
return nullptr;
}
const char* xamNameGen_1746(int id)
{
if (id == 0x00000001) return "NetDll_WSAStartup";
if (id == 0x00000002) return "NetDll_WSACleanup";
if (id == 0x00000003) return "NetDll_socket";
if (id == 0x00000004) return "NetDll_closesocket";
if (id == 0x00000005) return "NetDll_shutdown";
if (id == 0x00000006) return "NetDll_ioctlsocket";
if (id == 0x00000007) return "NetDll_setsockopt";
if (id == 0x00000008) return "NetDll_getsockopt";
if (id == 0x00000009) return "NetDll_getsockname";
if (id == 0x0000000A) return "NetDll_getpeername";
if (id == 0x0000000B) return "NetDll_bind";
if (id == 0x0000000C) return "NetDll_connect";
if (id == 0x0000000D) return "NetDll_listen";
if (id == 0x0000000E) return "NetDll_accept";
if (id == 0x0000000F) return "NetDll_select";
if (id == 0x00000010) return "NetDll_WSAGetOverlappedResult";
if (id == 0x00000011) return "NetDll_WSACancelOverlappedIO";
if (id == 0x00000012) return "NetDll_recv";
if (id == 0x00000013) return "NetDll_WSARecv";
if (id == 0x00000014) return "NetDll_recvfrom";
if (id == 0x00000015) return "NetDll_WSARecvFrom";
if (id == 0x00000016) return "NetDll_send";
if (id == 0x00000017) return "NetDll_WSASend";
if (id == 0x00000018) return "NetDll_sendto";
if (id == 0x00000019) return "NetDll_WSASendTo";
if (id == 0x0000001A) return "NetDll_inet_addr";
if (id == 0x0000001B) return "NetDll_WSAGetLastError";
if (id == 0x0000001C) return "NetDll_WSASetLastError";
if (id == 0x0000001D) return "NetDll_WSACreateEvent";
if (id == 0x0000001E) return "NetDll_WSACloseEvent";
if (id == 0x0000001F) return "NetDll_WSASetEvent";
if (id == 0x00000020) return "NetDll_WSAResetEvent";
if (id == 0x00000021) return "NetDll_WSAWaitForMultipleEvents";
if (id == 0x00000022) return "NetDll___WSAFDIsSet";
if (id == 0x00000023) return "NetDll_WSAEventSelect";
if (id == 0x00000033) return "NetDll_XNetStartup";
if (id == 0x00000034) return "NetDll_XNetCleanup";
if (id == 0x00000035) return "NetDll_XNetRandom";
if (id == 0x00000036) return "NetDll_XNetCreateKey";
if (id == 0x00000037) return "NetDll_XNetRegisterKey";
if (id == 0x00000038) return "NetDll_XNetUnregisterKey";
if (id == 0x00000039) return "NetDll_XNetXnAddrToInAddr";
if (id == 0x0000003A) return "NetDll_XNetServerToInAddr";
if (id == 0x0000003B) return "NetDll_XNetTsAddrToInAddr";
if (id == 0x0000003C) return "NetDll_XNetInAddrToXnAddr";
if (id == 0x0000003D) return "NetDll_XNetInAddrToServer";
if (id == 0x0000003E) return "NetDll_XNetInAddrToString";
if (id == 0x0000003F) return "NetDll_XNetUnregisterInAddr";
if (id == 0x00000040) return "NetDll_XNetXnAddrToMachineId";
if (id == 0x00000041) return "NetDll_XNetConnect";
if (id == 0x00000042) return "NetDll_XNetGetConnectStatus";
if (id == 0x00000043) return "NetDll_XNetDnsLookup";
if (id == 0x00000044) return "NetDll_XNetDnsRelease";
if (id == 0x00000045) return "NetDll_XNetQosListen";
if (id == 0x00000046) return "NetDll_XNetQosLookup";
if (id == 0x00000047) return "NetDll_XNetQosServiceLookup";
if (id == 0x00000048) return "NetDll_XNetQosRelease";
if (id == 0x00000049) return "NetDll_XNetGetTitleXnAddr";
if (id == 0x0000004A) return "NetDll_XNetGetDebugXnAddr";
if (id == 0x0000004B) return "NetDll_XNetGetEthernetLinkStatus";
if (id == 0x0000004C) return "NetDll_XNetGetBroadcastVersionStatus";
if (id == 0x0000004D) return "NetDll_XNetQosGetListenStats";
if (id == 0x0000004E) return "NetDll_XNetGetOpt";
if (id == 0x0000004F) return "NetDll_XNetSetOpt";
if (id == 0x00000065) return "NetDll_XnpLoadConfigParams";
if (id == 0x00000066) return "NetDll_XnpSaveConfigParams";
if (id == 0x00000067) return "NetDll_XnpConfigUPnP";
if (id == 0x00000068) return "NetDll_XnpConfig";
if (id == 0x00000069) return "NetDll_XnpGetConfigStatus";
if (id == 0x0000006A) return "NetDll_XnpLoadMachineAccount";
if (id == 0x0000006B) return "NetDll_XnpSaveMachineAccount";
if (id == 0x0000006C) return "NetDll_XnpCapture";
if (id == 0x0000006D) return "NetDll_XnpEthernetInterceptSetCallbacks";
if (id == 0x0000006E) return "NetDll_XnpEthernetInterceptXmit";
if (id == 0x0000006F) return "NetDll_XnpEthernetInterceptRecv";
if (id == 0x00000070) return "NetDll_XnpLogonGetStatus";
if (id == 0x00000071) return "NetDll_XnpLogonGetQFlags";
if (id == 0x00000072) return "NetDll_XnpLogonSetQFlags";
if (id == 0x00000073) return "NetDll_XnpLogonSetQEvent";
if (id == 0x00000074) return "NetDll_XnpLogonClearQEvent";
if (id == 0x00000075) return "NetDll_XnpLogonGetQVals";
if (id == 0x00000076) return "NetDll_XnpLogonSetQVals";
if (id == 0x00000077) return "NetDll_XnpLogonSetPState";
if (id == 0x00000078) return "NetDll_XnpGetVlanXboxName";
if (id == 0x00000079) return "NetDll_XnpSetVlanXboxName";
if (id == 0x0000007A) return "NetDll_XnpGetActiveSocketList";
if (id == 0x0000007B) return "NetDll_XnpNoteSystemTime";
if (id == 0x0000007C) return "NetDll_XnpUpdateInAddrServiceId";
if (id == 0x00000097) return "NetDll_XmlDownloadStart";
if (id == 0x00000098) return "NetDll_XmlDownloadContinue";
if (id == 0x00000099) return "NetDll_XmlDownloadStop";
if (id == 0x000000C7) return "?D3DDevice_GetRenderState_Wrap10@D3D@@YAKPAUD3DDevice@@@Z";
if (id == 0x000000C9) return "NetDll_XHttpStartup";
if (id == 0x000000CA) return "NetDll_XHttpShutdown";
if (id == 0x000000CB) return "NetDll_XHttpOpen";
if (id == 0x000000CC) return "NetDll_XHttpCloseHandle";
if (id == 0x000000CD) return "NetDll_XHttpConnect";
if (id == 0x000000CE) return "NetDll_XHttpSetStatusCallback";
if (id == 0x000000CF) return "NetDll_XHttpOpenRequest";
if (id == 0x000000D0) return "NetDll_XHttpOpenRequestUsingMemory";
if (id == 0x000000D1) return "NetDll_XHttpSendRequest";
if (id == 0x000000D2) return "NetDll_XHttpReceiveResponse";
if (id == 0x000000D3) return "NetDll_XHttpQueryHeaders";
if (id == 0x000000D4) return "NetDll_XHttpReadData";
if (id == 0x000000D5) return "NetDll_XHttpWriteData";
if (id == 0x000000D6) return "NetDll_XHttpQueryOption";
if (id == 0x000000D7) return "NetDll_XHttpSetOption";
if (id == 0x000000D8) return "NetDll_XHttpDoWork";
if (id == 0x000000FB) return "NetDll_UpnpStartup";
if (id == 0x000000FC) return "NetDll_UpnpCleanup";
if (id == 0x000000FD) return "NetDll_UpnpSearchCreate";
if (id == 0x000000FE) return "NetDll_UpnpSearchGetDevices";
if (id == 0x000000FF) return "NetDll_UpnpDescribeCreate";
if (id == 0x00000100) return "NetDll_UpnpDescribeGetResults";
if (id == 0x00000101) return "NetDll_UpnpActionCreate";
if (id == 0x00000102) return "NetDll_UpnpActionGetResults";
if (id == 0x00000103) return "NetDll_UpnpEventCreate";
if (id == 0x00000104) return "NetDll_UpnpEventGetCurrentState";
if (id == 0x00000105) return "NetDll_UpnpEventUnsubscribe";
if (id == 0x00000106) return "NetDll_UpnpDoWork";
if (id == 0x00000107) return "NetDll_UpnpCloseHandle";
if (id == 0x0000012D) return "XNetLogonGetLoggedOnUsers";
if (id == 0x0000012E) return "XNetLogonGetNatType";
if (id == 0x0000012F) return "XNetLogonTaskStart";
if (id == 0x00000130) return "XNetLogonTaskClose";
if (id == 0x00000131) return "XNetLogonTaskContinue";
if (id == 0x00000132) return "XNetLogonGetServiceInfo";
if (id == 0x00000133) return "XNetLogonGetUserPrivileges";
if (id == 0x00000134) return "?XNetLogonSetConsoleCertificate@@YAHPBU_CONSOLE_CERTIFICATE@@@Z";
if (id == 0x00000135) return "XNetLogonGetMachineID";
if (id == 0x00000136) return "XNetLogonGetTitleID";
if (id == 0x00000137) return "XNetLogonGetTitleVersion";
if (id == 0x00000138) return "XNetLogonGetServiceNetworkID";
if (id == 0x00000139) return "XNetLogonGetDnsString";
if (id == 0x0000013A) return "XNetLogonSetTitleID";
if (id == 0x00000190) return "XamInputGetCapabilities";
if (id == 0x00000191) return "XamInputGetState";
if (id == 0x00000192) return "XamInputSetState";
if (id == 0x00000193) return "XamInputGetKeystroke";
if (id == 0x00000194) return "XamInputEnableAutobind";
if (id == 0x00000195) return "?XamInputRawState@@YAKKKHPAU_XINPUT_RAW@@@Z";
if (id == 0x00000196) return "XamEnableSystemAppInput";
if (id == 0x00000197) return "XamInputGetDeviceStats";
if (id == 0x00000198) return "XamInputGetKeystrokeEx";
if (id == 0x00000199) return "XamInputGetKeystrokeHud";
if (id == 0x0000019A) return "XamInputSetLayoutKeyboard";
if (id == 0x0000019B) return "XamInputToggleKeyLocks";
if (id == 0x000001A4) return "XLaunchNewImage";
if (id == 0x000001A5) return "XLaunchNewImageEx";
if (id == 0x000001A6) return "XSetLaunchData";
if (id == 0x000001A7) return "XGetLaunchDataSize";
if (id == 0x000001A8) return "XGetLaunchData";
if (id == 0x000001A9) return "XamTerminateTitle";
if (id == 0x000001AA) return "XGetTrayState";
if (id == 0x000001AB) return "XamGetGameInfo";
if (id == 0x000001AC) return "XLaunchMedia";
if (id == 0x000001AE) return "XamTaskCreateQueue";
if (id == 0x000001AF) return "XamTaskSchedule";
if (id == 0x000001B0) return "XamTaskReschedule";
if (id == 0x000001B1) return "XamTaskCloseHandle";
if (id == 0x000001B2) return "XamTaskCancel";
if (id == 0x000001B3) return "XamTaskShouldExit";
if (id == 0x000001B4) return "XamTaskWaitOnCompletion";
if (id == 0x000001B5) return "XamTaskModify";
if (id == 0x000001B6) return "XamTaskGetCurrentTask";
if (id == 0x000001B7) return "XamTaskGetAttributes";
if (id == 0x000001B8) return "XamExecutingOnBehalfOfTitle";
if (id == 0x000001C2) return "XamApplySkin";
if (id == 0x000001C3) return "XamGetRootObj";
if (id == 0x000001C4) return "XamFormatMessage";
if (id == 0x000001C5) return "XamBuildResourceLocator";
if (id == 0x000001C6) return "XamBuildSharedSystemResourceLocator";
if (id == 0x000001C7) return "XamShowMessageBox";
if (id == 0x000001C8) return "XCustomGetBannerImage";
if (id == 0x000001C9) return "XCustomSetBannerImage";
if (id == 0x000001CA) return "XCustomSetAction";
if (id == 0x000001CB) return "XCustomGetLastActionPress";
if (id == 0x000001CC) return "XCustomGetActionSetting";
if (id == 0x000001CD) return "XCustomBroadcastActionEvent";
if (id == 0x000001CE) return "XamGetBkgndDefault";
if (id == 0x000001CF) return "XamGetDefaultSystemImage";
if (id == 0x000001D0) return "XamFormatTimeString";
if (id == 0x000001D2) return "XamFormatDateString";
if (id == 0x000001D3) return "?D3DDevice_GetRenderState_Wrap10@D3D@@YAKPAUD3DDevice@@@Z";
if (id == 0x000001D4) return "XamEnableInactivityProcessing";
if (id == 0x000001D5) return "XamSetInactivityTime";
if (id == 0x000001D6) return "XamSetDashContext";
if (id == 0x000001D7) return "XamGetDashContext";
if (id == 0x000001D8) return "XamGetCurrentTitleId";
if (id == 0x000001D9) return "XamGetWCNConfigFile";
if (id == 0x000001EA) return "XamAlloc";
if (id == 0x000001EB) return "XamAllocEx";
if (id == 0x000001EC) return "XamFree";
if (id == 0x000001ED) return "XamAllocSize";
if (id == 0x000001F4) return "XMsgInProcessCall";
if (id == 0x000001F5) return "XMsgCompleteIORequest";
if (id == 0x000001F6) return "XMsgSystemProcessCall";
if (id == 0x000001F7) return "XMsgStartIORequest";
if (id == 0x000001F8) return "XMsgCancelIORequest";
if (id == 0x000001F9) return "XMsgAcquireAsyncMessageFromOverlapped";
if (id == 0x000001FA) return "XMsgReleaseAsyncMessageToOverlapped";
if (id == 0x000001FB) return "XamGetOverlappedResult";
if (id == 0x000001FC) return "XMsgStartIORequestEx";
if (id == 0x00000208) return "XamUserGetDeviceContext";
if (id == 0x00000209) return "XamUserLookupDevice";
if (id == 0x0000020A) return "XamUserGetXUID";
if (id == 0x0000020B) return "XamUserLogon";
if (id == 0x0000020C) return "XamUserGetGamerTag";
if (id == 0x0000020D) return "XamUserGetUserIndexMask";
if (id == 0x0000020E) return "XamUserGetName";
if (id == 0x00000210) return "XamUserGetSigninState";
if (id == 0x00000211) return "XamUserGetIndexFromXUID";
if (id == 0x00000212) return "XamUserCheckPrivilege";
if (id == 0x00000213) return "XamUserAreUsersFriends";
if (id == 0x00000214) return "XamSetUserPresetPresenceState";
if (id == 0x00000215) return "XamGetUserPresetPresenceState";
if (id == 0x00000216) return "XamUserGetUserFlagsFromXUID";
if (id == 0x00000217) return "XamUserGetMembershipTierFromXUID";
if (id == 0x00000218) return "XamUserGetOnlineCountryFromXUID";
if (id == 0x00000219) return "XamUserReadProfileSettings";
if (id == 0x0000021A) return "XamUserWriteProfileSettings";
if (id == 0x0000021B) return "XamUserGetMembershipTier";
if (id == 0x0000021C) return "XamUserGetUserFlags";
if (id == 0x0000021D) return "XamUserGetRequestedUserIndexMask";
if (id == 0x0000021E) return "XamUserIsGuest";
if (id == 0x0000021F) return "XamUserProfileSync";
if (id == 0x00000220) return "XamUserFlushLogonQueue";
if (id == 0x00000221) return "XamUserIsOnlineEnabled";
if (id == 0x00000230) return "XamProfileCreate";
if (id == 0x00000231) return "XamProfileCreateEnumerator";
if (id == 0x00000232) return "XamProfileEnumerate";
if (id == 0x00000233) return "XamProfileDelete";
if (id == 0x00000234) return "XamProfileGetCreationStatus";
if (id == 0x00000235) return "XamProfileFindAccount";
if (id == 0x00000236) return "XamProfileRenameAccount";
if (id == 0x00000237) return "XamProfileOpen";
if (id == 0x00000238) return "XamProfileClose";
if (id == 0x00000239) return "XamProfileSaveAccountInfo";
if (id == 0x0000023A) return "XamProfileLoadAccountInfo";
if (id == 0x00000244) return "XamAppLoad";
if (id == 0x00000245) return "XamAppUnloadSelf";
if (id == 0x00000246) return "XamAppUnloadStack";
if (id == 0x00000247) return "XamSendMessageToLoadedApps";
if (id == 0x00000248) return "XamAppRequestLoad";
if (id == 0x00000249) return "XamAppUnrequestLoad";
if (id == 0x0000024A) return "XamNavigate";
if (id == 0x0000024B) return "XamRegisterSysApp";
if (id == 0x0000024C) return "XamUnregisterSysApp";
if (id == 0x00000258) return "XamContentCreate";
if (id == 0x00000259) return "XamContentDelete";
if (id == 0x0000025A) return "XamContentClose";
if (id == 0x0000025B) return "XamContentCreateEnumerator";
if (id == 0x0000025C) return "XamContentCreateDeviceEnumerator";
if (id == 0x0000025D) return "XamContentGetDeviceData";
if (id == 0x0000025E) return "XamContentGetDeviceName";
if (id == 0x0000025F) return "XamContentSetThumbnail";
if (id == 0x00000260) return "XamCreateEnumeratorHandle";
if (id == 0x00000261) return "XamGetPrivateEnumStructureFromHandle";
if (id == 0x00000262) return "XamEnumerate";
if (id == 0x00000263) return "XamContentGetThumbnail";
if (id == 0x00000264) return "XamContentGetCreator";
if (id == 0x00000265) return "XamContentLaunchImage";
if (id == 0x0000026C) return "XamContentCopyInternal";
if (id == 0x0000026D) return "XamContentMoveInternal";
if (id == 0x0000026E) return "XamContentGetMetaDataInternal";
if (id == 0x0000026F) return "XamContentCreateEnumeratorInternal";
if (id == 0x00000270) return "XamContentAggregateCreateEnumerator";
if (id == 0x00000271) return "XamContentDeleteInternal";
if (id == 0x00000272) return "XamContentCreateInternal";
if (id == 0x00000273) return "XamContentCreateAndMountPackage";
if (id == 0x00000274) return "XamContentSetThumbnailInternal";
if (id == 0x00000275) return "XamContentLaunchImageInternal";
if (id == 0x00000276) return "XamContentOpenPackageFile";
if (id == 0x00000277) return "XamContentMountPackage";
if (id == 0x00000278) return "XamContentWritePackageHeader";
if (id == 0x00000279) return "XamContentFlushPackage";
if (id == 0x0000027A) return "XamContentDismountAndClosePackage";
if (id == 0x0000027B) return "XamContentClosePackageFile";
if (id == 0x00000280) return "XamGetExecutionId";
if (id == 0x00000281) return "XamGetSPAName";
if (id == 0x0000028A) return "XamNotifyCreateListener";
if (id == 0x0000028B) return "XNotifyGetNext";
if (id == 0x0000028C) return "XNotifyPositionUI";
if (id == 0x0000028D) return "XNotifyDelayUI";
if (id == 0x0000028E) return "XNotifyBroadcast";
if (id == 0x0000028F) return "XNotifyRegisterArea";
if (id == 0x00000290) return "XNotifyQueueUI";
if (id == 0x00000291) return "XamNotifyCreateListenerInternal";
if (id == 0x00000292) return "XNotifyUISetOptions";
if (id == 0x00000293) return "XNotifyUIGetOptions";
if (id == 0x0000029E) return "XamUpdateStart";
if (id == 0x0000029F) return "XamUpdateGetProgress";
if (id == 0x000002A0) return "XamUpdateGetExtenderInstance";
if (id == 0x000002A1) return "XamUpdateFinish";
if (id == 0x000002A2) return "XamUpdateAttachExtenderInstance";
if (id == 0x000002B2) return "XamCacheStoreFile";
if (id == 0x000002B3) return "XamCacheFetchFile";
if (id == 0x000002B4) return "XamCacheOpenFile";
if (id == 0x000002B5) return "XamCacheCloseFile";
if (id == 0x000002B6) return "XamGetCachedTitleName";
if (id == 0x000002B7) return "XamCacheReset";
if (id == 0x000002BD) return "XamShowSigninUI";
if (id == 0x000002BE) return "XamShowSigninUIp";
if (id == 0x000002BF) return "XamShowFriendsUI";
if (id == 0x000002C0) return "XamShowMessagesUI";
if (id == 0x000002C1) return "XamShowKeyboardUI";
if (id == 0x000002C2) return "XamShowQuickChatUI";
if (id == 0x000002C3) return "XamShowVoiceMailUI";
if (id == 0x000002C4) return "XamShowGamerCardUI";
if (id == 0x000002C5) return "XamShowAchievementsUI";
if (id == 0x000002C6) return "XamShowPlayerReviewUI";
if (id == 0x000002C7) return "XamShowMarketplaceUI";
if (id == 0x000002C8) return "XamShowPlayersUI";
if (id == 0x000002C9) return "XamShowUpdaterUI";
if (id == 0x000002CA) return "XamShowMessageBoxUI";
if (id == 0x000002CB) return "XamShowDeviceSelectorUI";
if (id == 0x000002CC) return "XamShowMessageComposeUI";
if (id == 0x000002CD) return "XamShowGameInviteUI";
if (id == 0x000002CE) return "XamShowFriendRequestUI";
if (id == 0x000002CF) return "XamShowCreateProfileUI";
if (id == 0x000002D0) return "XamShowGamesUI";
if (id == 0x000002D1) return "XamShowLiveSignupUI";
if (id == 0x000002D2) return "XamShowFriendsUIp";
if (id == 0x000002D3) return "XamShowComplaintUI";
if (id == 0x000002D4) return "XamShowReputationUI";
if (id == 0x000002D5) return "XamShowGamerCardUIForXUID";
if (id == 0x000002D6) return "XamShowForcedNameChangeUI";
if (id == 0x000002D7) return "XamShowLiveUpsellUI";
if (id == 0x000002D8) return "XamShowSigninUIEx";
if (id == 0x000002EE) return "XamUserCreateAchievementEnumerator";
if (id == 0x000002EF) return "XamReadTile";
if (id == 0x000002F0) return "XamWriteGamerTile";
if (id == 0x000002F1) return "XamWriteTile";
if (id == 0x000002F2) return "?XamReadImage@@YAJW4XTILETYPE@@KK_KPAPAU_XUIBRUSH@@@Z";
if (id == 0x000002F3) return "XamUserCreateTitlesPlayedEnumerator";
if (id == 0x000002F4) return "XamDecompressPNGToTexture";
if (id == 0x000002F5) return "XamReadTileToTexture";
if (id == 0x000002F6) return "XamReadString";
if (id == 0x000002F7) return "XamUserCreateStatsEnumerator";
if (id == 0x00000302) return "XamUserAddRecentPlayer";
if (id == 0x00000303) return "XamUserUpdateRecentPlayer";
if (id == 0x00000304) return "XamUserCreatePlayerEnumerator";
if (id == 0x00000305) return "XamParseGamerTileKey";
if (id == 0x0000030C) return "XamVoiceCreate";
if (id == 0x0000030D) return "XamVoiceSubmitPacket";
if (id == 0x0000030E) return "XamVoiceClose";
if (id == 0x00000320) return "XuiAnimRun";
if (id == 0x00000321) return "XuiApplyLocale";
if (id == 0x00000322) return "XuiBubbleMessage";
if (id == 0x00000323) return "XuiControlIsBackButton";
if (id == 0x00000324) return "XuiControlIsNavButton";
if (id == 0x00000325) return "XuiCreateObject";
if (id == 0x00000326) return "XuiDestroyObject";
if (id == 0x00000327) return "XuiDynamicCast";
if (id == 0x00000328) return "XuiElementAddChild";
if (id == 0x00000329) return "XuiElementFindNamedFrame";
if (id == 0x0000032A) return "XuiElementGetChildById";
if (id == 0x0000032B) return "XuiElementGetFirstChild";
if (id == 0x0000032C) return "XuiElementGetFocus";
if (id == 0x0000032D) return "XuiElementGetFocusUser";
if (id == 0x0000032E) return "XuiElementGetId";
if (id == 0x0000032F) return "XuiElementGetLastChild";
if (id == 0x00000330) return "XuiElementGetNext";
if (id == 0x00000331) return "XuiElementGetParent";
if (id == 0x00000332) return "XuiElementGetUserFocus";
if (id == 0x00000333) return "XuiElementInitFocus";
if (id == 0x00000334) return "XuiElementInitUserFocus";
if (id == 0x00000335) return "XuiElementPlayTimeline";
if (id == 0x00000336) return "XuiElementSetBounds";
if (id == 0x00000337) return "XuiElementSetFocus";
if (id == 0x00000338) return "XuiElementSetUserFocus";
if (id == 0x00000339) return "XuiElementTreeGetFocus";
if (id == 0x0000033A) return "XuiFindClass";
if (id == 0x0000033B) return "XuiFreeStringTable";
if (id == 0x0000033C) return "XuiGetBaseObject";
if (id == 0x0000033D) return "XuiGetClass";
if (id == 0x0000033E) return "XuiGetObjectClass";
if (id == 0x0000033F) return "XuiGetOuter";
if (id == 0x00000340) return "XuiInit";
if (id == 0x00000341) return "XuiLoadFromBinary";
if (id == 0x00000342) return "XuiLoadStringTableFromFile";
if (id == 0x00000343) return "XuiVisualGetBasePath";
if (id == 0x00000344) return "XuiLookupStringTable";
if (id == 0x00000345) return "XuiNavButtonGetPressPath";
if (id == 0x00000346) return "XuiObjectFromHandle";
if (id == 0x00000347) return "XuiObjectGetProperty";
if (id == 0x00000348) return "XuiObjectGetPropertyId";
if (id == 0x00000349) return "XuiProcessInput";
if (id == 0x0000034A) return "XuiRegisterClass";
if (id == 0x0000034B) return "XuiRenderBegin";
if (id == 0x0000034C) return "XuiRenderCreateDC";
if (id == 0x0000034D) return "XuiRenderDCDeviceChanged";
if (id == 0x0000034E) return "XuiRenderDestroyDC";
if (id == 0x0000034F) return "XuiRenderEnd";
if (id == 0x00000350) return "XuiRenderGetBackBufferSize";
if (id == 0x00000351) return "XuiRenderInit";
if (id == 0x00000352) return "XuiRenderInitShared";
if (id == 0x00000353) return "XuiRenderPresent";
if (id == 0x00000354) return "XuiRenderSetViewTransform";
if (id == 0x00000355) return "XuiRenderUninit";
if (id == 0x00000357) return "XuiSceneCreate";
if (id == 0x00000358) return "XuiSceneNavigateBack";
if (id == 0x00000359) return "XuiSceneNavigateFirst";
if (id == 0x0000035A) return "XuiSceneNavigateForward";
if (id == 0x0000035B) return "XuiScenePlayBackFromTransition";
if (id == 0x0000035C) return "XuiScenePlayBackToTransition";
if (id == 0x0000035D) return "XuiScenePlayFromTransition";
if (id == 0x0000035E) return "XuiScenePlayToTransition";
if (id == 0x0000035F) return "XuiSendMessage";
if (id == 0x00000360) return "XuiSetLocale";
if (id == 0x00000361) return "XuiUninit";
if (id == 0x00000362) return "XuiUnregisterClass";
if (id == 0x00000363) return "XuiTextElementSetText";
if (id == 0x00000364) return "XuiSetTimer";
if (id == 0x00000365) return "XuiTimersRun";
if (id == 0x00000366) return "XuiTextElementGetText";
if (id == 0x00000367) return "XuiVisualSetBasePath";
if (id == 0x00000368) return "XuiHandleIsValid";
if (id == 0x00000369) return "XuiAlloc";
if (id == 0x0000036A) return "XuiFree";
if (id == 0x0000036B) return "XuiDefault_True";
if (id == 0x0000036C) return "XuiDefault_EmptyString";
if (id == 0x0000036D) return "XuiDefault_IntegerZero";
if (id == 0x0000036E) return "XuiCopyString";
if (id == 0x0000036F) return "XuiRealloc";
if (id == 0x00000370) return "XuiControlPlayOptionalVisual";
if (id == 0x00000371) return "XuiKillTimer";
if (id == 0x00000372) return "XuiElementEnableInput";
if (id == 0x00000373) return "XuiElementInputEnabled";
if (id == 0x00000374) return "XuiIsInstanceOf";
if (id == 0x00000375) return "XuiResourceComposeLocator";
if (id == 0x00000376) return "XuiResourceLocatorIsAbsolute";
if (id == 0x00000377) return "XuiBroadcastMessage";
if (id == 0x00000378) return "XuiElementDisallowRecursiveTimelineControl";
if (id == 0x00000379) return "XUIElementPropVal_Construct";
if (id == 0x0000037A) return "XUIElementPropVal_Destruct";
if (id == 0x0000037B) return "XUIElementPropVal_SetString";
if (id == 0x0000037C) return "XuiObjectSetProperty";
if (id == 0x0000037D) return "XuiElementGetOpacity";
if (id == 0x0000037E) return "XuiElementSetOpacity";
if (id == 0x0000037F) return "XuiEditSetTextLimit";
if (id == 0x00000380) return "XuiEditGetTextLimit";
if (id == 0x00000381) return "XuiSliderSetValue";
if (id == 0x00000382) return "XuiSliderGetValue";
if (id == 0x00000383) return "XuiSliderSetRange";
if (id == 0x00000384) return "XuiElementUnlink";
if (id == 0x00000385) return "XuiElementInsertChild";
if (id == 0x00000386) return "XuiSceneNavigateBackToFirst";
if (id == 0x00000387) return "XuiProgressBarSetRange";
if (id == 0x00000388) return "XuiProgressBarSetValue";
if (id == 0x00000389) return "XuiProgressBarGetValue";
if (id == 0x0000038A) return "XuiControlAttachVisual";
if (id == 0x0000038B) return "XuiCreateTextureBrush";
if (id == 0x0000038C) return "XuiDestroyBrush";
if (id == 0x0000038D) return "XUIElementPropVal_SetColorFromUint";
if (id == 0x0000038E) return "XuiFigureSetFill";
if (id == 0x0000038F) return "XuiSliderGetRange";
if (id == 0x00000390) return "XuiFigureSetTexture";
if (id == 0x00000391) return "XuiControlGetItemAssociation";
if (id == 0x00000392) return "XuiResourceLoadAll";
if (id == 0x00000393) return "XuiImageElementSetImagePath";
if (id == 0x00000394) return "XuiImageElementGetImagePath";
if (id == 0x00000395) return "XuiControlGetVisual";
if (id == 0x00000396) return "XuiControlGetNavigation";
if (id == 0x00000397) return "XuiLookupStringTableByIndex";
if (id == 0x00000398) return "XUIElementPropVal_SetBool";
if (id == 0x00000399) return "XuiElementHasFocus";
if (id == 0x0000039A) return "XUIElementPropVal_SetUint";
if (id == 0x0000039B) return "XUIElementPropVal_Clear";
if (id == 0x0000039C) return "XuiEditSetTextFormatInfo";
if (id == 0x0000039D) return "XuiCreateSolidBrush";
if (id == 0x0000039E) return "XuiSceneInterruptTransitions";
if (id == 0x0000039F) return "XuiResourceOpen";
if (id == 0x000003A0) return "XuiResourceRead";
if (id == 0x000003A1) return "XuiResourceClose";
if (id == 0x000003A2) return "XuiVisualCreateInstance";
if (id == 0x000003A3) return "XuiElementGetTimeline";
if (id == 0x000003A4) return "?GetCodecVersion@CCalMediaInfo@@UBAKXZ";
if (id == 0x000003A5) return "XuiElementIsDescendant";
if (id == 0x000003A6) return "XuiSetMessageFilter";
if (id == 0x000003A7) return "XamContentGetDeviceState";
if (id == 0x000003CA) return "XGetAudioFlags";
if (id == 0x000003CB) return "XGetAVPack";
if (id == 0x000003CC) return "XGetGameRegion";
if (id == 0x000003CD) return "XGetLanguage";
if (id == 0x000003CE) return "XGetParentalControlSetting";
if (id == 0x000003CF) return "XGetVideoFlags";
if (id == 0x000003D0) return "XGetVideoStandard";
if (id == 0x000003D1) return "XGetVideoMode";
if (id == 0x000003D2) return "XGetLocale";
if (id == 0x000003D4) return "XamSetAutomation";
if (id == 0x000003D5) return "XAutomationpBindController";
if (id == 0x000003D6) return "XAutomationpUnbindController";
if (id == 0x000003D7) return "XAutomationpInputXenonButton";
if (id == 0x000003D8) return "XAutomationpInputPress";
if (id == 0x000003D9) return "XAutomationpInputSetState";
if (id == 0x000003DA) return "XamEnableOverdraw";
if (id == 0x000003DB) return "g_XuiAutomation";
if (id == 0x000003E8) return "RtlFindFirstFile";
if (id == 0x000003E9) return "RtlFindNextFile";
if (id == 0x000003EA) return "RtlGetModuleFileName";
if (id == 0x000003EB) return "RtlOutputDebugString";
if (id == 0x000003EC) return "RtlRemoveDirectory";
if (id == 0x000003ED) return "RtlSleep";
if (id == 0x000003EE) return "RtlGetLastError";
if (id == 0x000003EF) return "RtlSetLastError";