-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmsi.txt
2950 lines (2655 loc) · 106 KB
/
msi.txt
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
==================================================
Function Name : DllCanUnloadNow
Address : 0x0000000180153b60
Relative Address : 0x00153b60
Ordinal : 296 (0x128)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : DllGetClassObject
Address : 0x00000001801056e0
Relative Address : 0x001056e0
Ordinal : 297 (0x129)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : DllGetVersion
Address : 0x0000000180153ba0
Relative Address : 0x00153ba0
Ordinal : 182 (0xb6)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : DllRegisterServer
Address : 0x0000000180160120
Relative Address : 0x00160120
Ordinal : 298 (0x12a)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : DllUnregisterServer
Address : 0x0000000180160550
Relative Address : 0x00160550
Ordinal : 299 (0x12b)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : Migrate10CachedPackagesA
Address : 0x00000001801682a0
Relative Address : 0x001682a0
Ordinal : 235 (0xeb)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : Migrate10CachedPackagesW
Address : 0x0000000180168300
Relative Address : 0x00168300
Ordinal : 236 (0xec)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiAdvertiseProductA
Address : 0x0000000180168360
Relative Address : 0x00168360
Ordinal : 5 (0x5)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiAdvertiseProductExA
Address : 0x0000000180168670
Relative Address : 0x00168670
Ordinal : 227 (0xe3)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiAdvertiseProductExW
Address : 0x00000001801689c0
Relative Address : 0x001689c0
Ordinal : 228 (0xe4)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiAdvertiseProductW
Address : 0x0000000180168bc0
Relative Address : 0x00168bc0
Ordinal : 6 (0x6)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiAdvertiseScriptA
Address : 0x0000000180168d70
Relative Address : 0x00168d70
Ordinal : 176 (0xb0)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiAdvertiseScriptW
Address : 0x0000000180168f30
Relative Address : 0x00168f30
Ordinal : 177 (0xb1)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiApplyMultiplePatchesA
Address : 0x0000000180174c90
Relative Address : 0x00174c90
Ordinal : 239 (0xef)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiApplyMultiplePatchesW
Address : 0x0000000180174ee0
Relative Address : 0x00174ee0
Ordinal : 240 (0xf0)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiApplyPatchA
Address : 0x0000000180169100
Relative Address : 0x00169100
Ordinal : 174 (0xae)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiApplyPatchW
Address : 0x0000000180169390
Relative Address : 0x00169390
Ordinal : 175 (0xaf)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiBeginTransactionA
Address : 0x0000000180175070
Relative Address : 0x00175070
Ordinal : 284 (0x11c)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiBeginTransactionW
Address : 0x00000001801751a0
Relative Address : 0x001751a0
Ordinal : 285 (0x11d)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiCloseAllHandles
Address : 0x000000018017f220
Relative Address : 0x0017f220
Ordinal : 7 (0x7)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiCloseHandle
Address : 0x0000000180020ab0
Relative Address : 0x00020ab0
Ordinal : 8 (0x8)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiCollectUserInfoA
Address : 0x0000000180169510
Relative Address : 0x00169510
Ordinal : 9 (0x9)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiCollectUserInfoW
Address : 0x00000001801696c0
Relative Address : 0x001696c0
Ordinal : 10 (0xa)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiConfigureFeatureA
Address : 0x00000001801697e0
Relative Address : 0x001697e0
Ordinal : 11 (0xb)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiConfigureFeatureFromDescriptorA
Address : 0x0000000180169a20
Relative Address : 0x00169a20
Ordinal : 12 (0xc)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiConfigureFeatureFromDescriptorW
Address : 0x0000000180169c30
Relative Address : 0x00169c30
Ordinal : 13 (0xd)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiConfigureFeatureW
Address : 0x0000000180169e00
Relative Address : 0x00169e00
Ordinal : 14 (0xe)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiConfigureProductA
Address : 0x0000000180169f60
Relative Address : 0x00169f60
Ordinal : 15 (0xf)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiConfigureProductExA
Address : 0x000000018016a040
Relative Address : 0x0016a040
Ordinal : 189 (0xbd)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiConfigureProductExW
Address : 0x000000018016a4e0
Relative Address : 0x0016a4e0
Ordinal : 190 (0xbe)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiConfigureProductW
Address : 0x000000018016a8d0
Relative Address : 0x0016a8d0
Ordinal : 16 (0x10)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiCreateAndVerifyInstallerDirectory
Address : 0x000000018016a9c0
Relative Address : 0x0016a9c0
Ordinal : 222 (0xde)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiCreateRecord
Address : 0x0000000180045330
Relative Address : 0x00045330
Ordinal : 17 (0x11)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiCreateTransformSummaryInfoA
Address : 0x000000018017f2b0
Relative Address : 0x0017f2b0
Ordinal : 185 (0xb9)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiCreateTransformSummaryInfoW
Address : 0x000000018017f350
Relative Address : 0x0017f350
Ordinal : 186 (0xba)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDatabaseApplyTransformA
Address : 0x0000000180180290
Relative Address : 0x00180290
Ordinal : 18 (0x12)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDatabaseApplyTransformW
Address : 0x0000000180180330
Relative Address : 0x00180330
Ordinal : 19 (0x13)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDatabaseCommit
Address : 0x00000001801804f0
Relative Address : 0x001804f0
Ordinal : 20 (0x14)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDatabaseExportA
Address : 0x00000001801805c0
Relative Address : 0x001805c0
Ordinal : 21 (0x15)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDatabaseExportW
Address : 0x0000000180180710
Relative Address : 0x00180710
Ordinal : 22 (0x16)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDatabaseGenerateTransformA
Address : 0x0000000180180890
Relative Address : 0x00180890
Ordinal : 23 (0x17)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDatabaseGenerateTransformW
Address : 0x0000000180180940
Relative Address : 0x00180940
Ordinal : 24 (0x18)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDatabaseGetPrimaryKeysA
Address : 0x0000000180180ae0
Relative Address : 0x00180ae0
Ordinal : 25 (0x19)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDatabaseGetPrimaryKeysW
Address : 0x0000000180045610
Relative Address : 0x00045610
Ordinal : 26 (0x1a)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDatabaseImportA
Address : 0x0000000180180b80
Relative Address : 0x00180b80
Ordinal : 27 (0x1b)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDatabaseImportW
Address : 0x0000000180180c80
Relative Address : 0x00180c80
Ordinal : 28 (0x1c)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDatabaseIsTablePersistentA
Address : 0x0000000180180dd0
Relative Address : 0x00180dd0
Ordinal : 164 (0xa4)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDatabaseIsTablePersistentW
Address : 0x0000000180180e70
Relative Address : 0x00180e70
Ordinal : 165 (0xa5)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDatabaseMergeA
Address : 0x0000000180181010
Relative Address : 0x00181010
Ordinal : 29 (0x1d)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDatabaseMergeW
Address : 0x00000001801810b0
Relative Address : 0x001810b0
Ordinal : 30 (0x1e)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDatabaseOpenViewA
Address : 0x00000001801812e0
Relative Address : 0x001812e0
Ordinal : 31 (0x1f)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDatabaseOpenViewW
Address : 0x00000001800203b0
Relative Address : 0x000203b0
Ordinal : 32 (0x20)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDecomposeDescriptorA
Address : 0x000000018016aa70
Relative Address : 0x0016aa70
Ordinal : 200 (0xc8)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDecomposeDescriptorW
Address : 0x000000018013ecb0
Relative Address : 0x0013ecb0
Ordinal : 201 (0xc9)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDeleteUserDataA
Address : 0x000000018016ab10
Relative Address : 0x0016ab10
Ordinal : 233 (0xe9)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDeleteUserDataW
Address : 0x000000018016ac30
Relative Address : 0x0016ac30
Ordinal : 234 (0xea)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDetermineApplicablePatchesA
Address : 0x0000000180175670
Relative Address : 0x00175670
Ordinal : 277 (0x115)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDetermineApplicablePatchesW
Address : 0x0000000180175a40
Relative Address : 0x00175a40
Ordinal : 278 (0x116)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDeterminePatchSequenceA
Address : 0x0000000180175d50
Relative Address : 0x00175d50
Ordinal : 253 (0xfd)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDeterminePatchSequenceW
Address : 0x0000000180113ef0
Relative Address : 0x00113ef0
Ordinal : 254 (0xfe)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDoActionA
Address : 0x0000000180181380
Relative Address : 0x00181380
Ordinal : 33 (0x21)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiDoActionW
Address : 0x0000000180181410
Relative Address : 0x00181410
Ordinal : 34 (0x22)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnableLogA
Address : 0x000000018016b1b0
Relative Address : 0x0016b1b0
Ordinal : 168 (0xa8)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnableLogW
Address : 0x000000018016b310
Relative Address : 0x0016b310
Ordinal : 169 (0xa9)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnableUIPreview
Address : 0x00000001801814f0
Relative Address : 0x001814f0
Ordinal : 35 (0x23)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEndTransaction
Address : 0x0000000180176160
Relative Address : 0x00176160
Ordinal : 286 (0x11e)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumClientsA
Address : 0x00000001800441d0
Relative Address : 0x000441d0
Ordinal : 36 (0x24)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumClientsExA
Address : 0x0000000180176380
Relative Address : 0x00176380
Ordinal : 291 (0x123)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumClientsExW
Address : 0x0000000180176660
Relative Address : 0x00176660
Ordinal : 292 (0x124)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumClientsW
Address : 0x0000000180070380
Relative Address : 0x00070380
Ordinal : 37 (0x25)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumComponentCostsA
Address : 0x0000000180181670
Relative Address : 0x00181670
Ordinal : 220 (0xdc)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumComponentCostsW
Address : 0x0000000180181900
Relative Address : 0x00181900
Ordinal : 221 (0xdd)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumComponentQualifiersA
Address : 0x000000018016b3e0
Relative Address : 0x0016b3e0
Ordinal : 38 (0x26)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumComponentQualifiersW
Address : 0x000000018006e900
Relative Address : 0x0006e900
Ordinal : 39 (0x27)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumComponentsA
Address : 0x000000018016bb50
Relative Address : 0x0016bb50
Ordinal : 40 (0x28)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumComponentsExA
Address : 0x00000001801767b0
Relative Address : 0x001767b0
Ordinal : 289 (0x121)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumComponentsExW
Address : 0x0000000180176a30
Relative Address : 0x00176a30
Ordinal : 290 (0x122)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumComponentsW
Address : 0x000000018012bf00
Relative Address : 0x0012bf00
Ordinal : 41 (0x29)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumFeaturesA
Address : 0x000000018016bbb0
Relative Address : 0x0016bbb0
Ordinal : 42 (0x2a)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumFeaturesW
Address : 0x00000001800665e0
Relative Address : 0x000665e0
Ordinal : 43 (0x2b)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumPatchesA
Address : 0x0000000180176b60
Relative Address : 0x00176b60
Ordinal : 180 (0xb4)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumPatchesExA
Address : 0x0000000180176dc0
Relative Address : 0x00176dc0
Ordinal : 269 (0x10d)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumPatchesExW
Address : 0x000000018010d480
Relative Address : 0x0010d480
Ordinal : 270 (0x10e)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumPatchesW
Address : 0x0000000180177150
Relative Address : 0x00177150
Ordinal : 181 (0xb5)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumProductsA
Address : 0x000000018016be20
Relative Address : 0x0016be20
Ordinal : 44 (0x2c)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumProductsExA
Address : 0x0000000180177330
Relative Address : 0x00177330
Ordinal : 245 (0xf5)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumProductsExW
Address : 0x0000000180116ad0
Relative Address : 0x00116ad0
Ordinal : 246 (0xf6)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumProductsW
Address : 0x000000018006e8a0
Relative Address : 0x0006e8a0
Ordinal : 45 (0x2d)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumRelatedProductsA
Address : 0x000000018016be80
Relative Address : 0x0016be80
Ordinal : 204 (0xcc)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEnumRelatedProductsW
Address : 0x00000001800f5960
Relative Address : 0x000f5960
Ordinal : 205 (0xcd)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEvaluateConditionA
Address : 0x0000000180181b70
Relative Address : 0x00181b70
Ordinal : 46 (0x2e)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiEvaluateConditionW
Address : 0x00000001801296d0
Relative Address : 0x001296d0
Ordinal : 47 (0x2f)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiExtractPatchXMLDataA
Address : 0x0000000180177660
Relative Address : 0x00177660
Ordinal : 241 (0xf1)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiExtractPatchXMLDataW
Address : 0x0000000180177830
Relative Address : 0x00177830
Ordinal : 242 (0xf2)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiFormatRecordA
Address : 0x0000000180181c00
Relative Address : 0x00181c00
Ordinal : 170 (0xaa)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiFormatRecordW
Address : 0x0000000180044a30
Relative Address : 0x00044a30
Ordinal : 171 (0xab)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiGetActiveDatabase
Address : 0x000000018012ab00
Relative Address : 0x0012ab00
Ordinal : 49 (0x31)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiGetComponentPathA
Address : 0x000000018016bf20
Relative Address : 0x0016bf20
Ordinal : 172 (0xac)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiGetComponentPathExA
Address : 0x0000000180177ab0
Relative Address : 0x00177ab0
Ordinal : 293 (0x125)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================
==================================================
Function Name : MsiGetComponentPathExW
Address : 0x0000000180177d60
Relative Address : 0x00177d60
Ordinal : 294 (0x126)
Filename : msi.dll
Full Path : C:\Windows\System32\msi.dll
Type : Exported Function
==================================================