summaryrefslogtreecommitdiff
path: root/src/pal/prebuilt/inc/sospriv.h
blob: 3b810cc9b6ffb37414f168a33acd687d769b9646 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285


/* this ALWAYS GENERATED file contains the definitions for the interfaces */


 /* File created by MIDL compiler version 8.00.0613 */
/* at Mon Jan 18 19:14:07 2038
 */
/* Compiler settings for C:/ssd/coreclr/src/inc/sospriv.idl:
    Oicf, W1, Zp8, env=Win32 (32b run), target_arch=X86 8.00.0613 
    protocol : dce , ms_ext, c_ext, robust
    error checks: allocation ref bounds_check enum stub_data 
    VC __declspec() decoration level: 
         __declspec(uuid()), __declspec(selectany), __declspec(novtable)
         DECLSPEC_UUID(), MIDL_INTERFACE()
*/
/* @@MIDL_FILE_HEADING(  ) */

#pragma warning( disable: 4049 )  /* more than 64k source lines */


/* verify that the <rpcndr.h> version is high enough to compile this file*/
#ifndef __REQUIRED_RPCNDR_H_VERSION__
#define __REQUIRED_RPCNDR_H_VERSION__ 475
#endif

#include "rpc.h"
#include "rpcndr.h"

#ifndef __RPCNDR_H_VERSION__
#error this stub requires an updated version of <rpcndr.h>
#endif /* __RPCNDR_H_VERSION__ */

#ifndef COM_NO_WINDOWS_H
#include "windows.h"
#include "ole2.h"
#endif /*COM_NO_WINDOWS_H*/

#ifndef __sospriv_h__
#define __sospriv_h__

#if defined(_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
#endif

/* Forward Declarations */ 

#ifndef __ISOSEnum_FWD_DEFINED__
#define __ISOSEnum_FWD_DEFINED__
typedef interface ISOSEnum ISOSEnum;

#endif 	/* __ISOSEnum_FWD_DEFINED__ */


#ifndef __ISOSHandleEnum_FWD_DEFINED__
#define __ISOSHandleEnum_FWD_DEFINED__
typedef interface ISOSHandleEnum ISOSHandleEnum;

#endif 	/* __ISOSHandleEnum_FWD_DEFINED__ */


#ifndef __ISOSStackRefErrorEnum_FWD_DEFINED__
#define __ISOSStackRefErrorEnum_FWD_DEFINED__
typedef interface ISOSStackRefErrorEnum ISOSStackRefErrorEnum;

#endif 	/* __ISOSStackRefErrorEnum_FWD_DEFINED__ */


#ifndef __ISOSStackRefEnum_FWD_DEFINED__
#define __ISOSStackRefEnum_FWD_DEFINED__
typedef interface ISOSStackRefEnum ISOSStackRefEnum;

#endif 	/* __ISOSStackRefEnum_FWD_DEFINED__ */


#ifndef __ISOSDacInterface_FWD_DEFINED__
#define __ISOSDacInterface_FWD_DEFINED__
typedef interface ISOSDacInterface ISOSDacInterface;

#endif 	/* __ISOSDacInterface_FWD_DEFINED__ */


#ifndef __ISOSDacInterface2_FWD_DEFINED__
#define __ISOSDacInterface2_FWD_DEFINED__
typedef interface ISOSDacInterface2 ISOSDacInterface2;

#endif 	/* __ISOSDacInterface2_FWD_DEFINED__ */


#ifndef __ISOSDacInterface3_FWD_DEFINED__
#define __ISOSDacInterface3_FWD_DEFINED__
typedef interface ISOSDacInterface3 ISOSDacInterface3;

#endif 	/* __ISOSDacInterface3_FWD_DEFINED__ */


#ifndef __ISOSDacInterface4_FWD_DEFINED__
#define __ISOSDacInterface4_FWD_DEFINED__
typedef interface ISOSDacInterface4 ISOSDacInterface4;

#endif 	/* __ISOSDacInterface4_FWD_DEFINED__ */


/* header files for imported files */
#include "unknwn.h"
#include "xclrdata.h"

#ifdef __cplusplus
extern "C"{
#endif 


/* interface __MIDL_itf_sospriv_0000_0000 */
/* [local] */ 

























#if 0
typedef ULONG64 CLRDATA_ADDRESS;

typedef int CONTEXT;

typedef int T_CONTEXT;

typedef int mdToken;

typedef unsigned int size_t;

typedef int ModuleMapType;

typedef int VCSHeapType;

#endif
enum ModuleMapType { TYPEDEFTOMETHODTABLE, TYPEREFTOMETHODTABLE };
enum VCSHeapType {IndcellHeap, LookupHeap, ResolveHeap, DispatchHeap, CacheEntryHeap};
typedef void ( *MODULEMAPTRAVERSE )( 
    UINT index,
    CLRDATA_ADDRESS methodTable,
    LPVOID token);

typedef void ( *VISITHEAP )( 
    CLRDATA_ADDRESS blockData,
    size_t blockSize,
    BOOL blockIsCurrentBlock);

typedef BOOL ( *VISITRCWFORCLEANUP )( 
    CLRDATA_ADDRESS RCW,
    CLRDATA_ADDRESS Context,
    CLRDATA_ADDRESS Thread,
    BOOL bIsFreeThreaded,
    LPVOID token);

typedef BOOL ( *DUMPEHINFO )( 
    UINT clauseIndex,
    UINT totalClauses,
    struct DACEHInfo *pEHInfo,
    LPVOID token);

#ifndef _SOS_HandleData
#define _SOS_HandleData
typedef struct _SOSHandleData
    {
    CLRDATA_ADDRESS AppDomain;
    CLRDATA_ADDRESS Handle;
    CLRDATA_ADDRESS Secondary;
    unsigned int Type;
    BOOL StrongReference;
    unsigned int RefCount;
    unsigned int JupiterRefCount;
    BOOL IsPegged;
    } 	SOSHandleData;

#endif //HandleData


extern RPC_IF_HANDLE __MIDL_itf_sospriv_0000_0000_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_sospriv_0000_0000_v0_0_s_ifspec;

#ifndef __ISOSEnum_INTERFACE_DEFINED__
#define __ISOSEnum_INTERFACE_DEFINED__

/* interface ISOSEnum */
/* [uuid][local][object] */ 


EXTERN_C const IID IID_ISOSEnum;

#if defined(__cplusplus) && !defined(CINTERFACE)
    
    MIDL_INTERFACE("286CA186-E763-4F61-9760-487D43AE4341")
    ISOSEnum : public IUnknown
    {
    public:
        virtual HRESULT STDMETHODCALLTYPE Skip( 
            /* [in] */ unsigned int count) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE Reset( void) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetCount( 
            /* [out] */ unsigned int *pCount) = 0;
        
    };
    
    
#else 	/* C style interface */

    typedef struct ISOSEnumVtbl
    {
        BEGIN_INTERFACE
        
        HRESULT ( STDMETHODCALLTYPE *QueryInterface )( 
            ISOSEnum * This,
            /* [in] */ REFIID riid,
            /* [annotation][iid_is][out] */ 
            _COM_Outptr_  void **ppvObject);
        
        ULONG ( STDMETHODCALLTYPE *AddRef )( 
            ISOSEnum * This);
        
        ULONG ( STDMETHODCALLTYPE *Release )( 
            ISOSEnum * This);
        
        HRESULT ( STDMETHODCALLTYPE *Skip )( 
            ISOSEnum * This,
            /* [in] */ unsigned int count);
        
        HRESULT ( STDMETHODCALLTYPE *Reset )( 
            ISOSEnum * This);
        
        HRESULT ( STDMETHODCALLTYPE *GetCount )( 
            ISOSEnum * This,
            /* [out] */ unsigned int *pCount);
        
        END_INTERFACE
    } ISOSEnumVtbl;

    interface ISOSEnum
    {
        CONST_VTBL struct ISOSEnumVtbl *lpVtbl;
    };

    

#ifdef COBJMACROS


#define ISOSEnum_QueryInterface(This,riid,ppvObject)	\
    ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) 

#define ISOSEnum_AddRef(This)	\
    ( (This)->lpVtbl -> AddRef(This) ) 

#define ISOSEnum_Release(This)	\
    ( (This)->lpVtbl -> Release(This) ) 


#define ISOSEnum_Skip(This,count)	\
    ( (This)->lpVtbl -> Skip(This,count) ) 

#define ISOSEnum_Reset(This)	\
    ( (This)->lpVtbl -> Reset(This) ) 

#define ISOSEnum_GetCount(This,pCount)	\
    ( (This)->lpVtbl -> GetCount(This,pCount) ) 

#endif /* COBJMACROS */


#endif 	/* C style interface */




#endif 	/* __ISOSEnum_INTERFACE_DEFINED__ */


#ifndef __ISOSHandleEnum_INTERFACE_DEFINED__
#define __ISOSHandleEnum_INTERFACE_DEFINED__

/* interface ISOSHandleEnum */
/* [uuid][local][object] */ 


EXTERN_C const IID IID_ISOSHandleEnum;

#if defined(__cplusplus) && !defined(CINTERFACE)
    
    MIDL_INTERFACE("3E269830-4A2B-4301-8EE2-D6805B29B2FA")
    ISOSHandleEnum : public ISOSEnum
    {
    public:
        virtual HRESULT STDMETHODCALLTYPE Next( 
            /* [in] */ unsigned int count,
            /* [length_is][size_is][out] */ SOSHandleData handles[  ],
            /* [out] */ unsigned int *pNeeded) = 0;
        
    };
    
    
#else 	/* C style interface */

    typedef struct ISOSHandleEnumVtbl
    {
        BEGIN_INTERFACE
        
        HRESULT ( STDMETHODCALLTYPE *QueryInterface )( 
            ISOSHandleEnum * This,
            /* [in] */ REFIID riid,
            /* [annotation][iid_is][out] */ 
            _COM_Outptr_  void **ppvObject);
        
        ULONG ( STDMETHODCALLTYPE *AddRef )( 
            ISOSHandleEnum * This);
        
        ULONG ( STDMETHODCALLTYPE *Release )( 
            ISOSHandleEnum * This);
        
        HRESULT ( STDMETHODCALLTYPE *Skip )( 
            ISOSHandleEnum * This,
            /* [in] */ unsigned int count);
        
        HRESULT ( STDMETHODCALLTYPE *Reset )( 
            ISOSHandleEnum * This);
        
        HRESULT ( STDMETHODCALLTYPE *GetCount )( 
            ISOSHandleEnum * This,
            /* [out] */ unsigned int *pCount);
        
        HRESULT ( STDMETHODCALLTYPE *Next )( 
            ISOSHandleEnum * This,
            /* [in] */ unsigned int count,
            /* [length_is][size_is][out] */ SOSHandleData handles[  ],
            /* [out] */ unsigned int *pNeeded);
        
        END_INTERFACE
    } ISOSHandleEnumVtbl;

    interface ISOSHandleEnum
    {
        CONST_VTBL struct ISOSHandleEnumVtbl *lpVtbl;
    };

    

#ifdef COBJMACROS


#define ISOSHandleEnum_QueryInterface(This,riid,ppvObject)	\
    ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) 

#define ISOSHandleEnum_AddRef(This)	\
    ( (This)->lpVtbl -> AddRef(This) ) 

#define ISOSHandleEnum_Release(This)	\
    ( (This)->lpVtbl -> Release(This) ) 


#define ISOSHandleEnum_Skip(This,count)	\
    ( (This)->lpVtbl -> Skip(This,count) ) 

#define ISOSHandleEnum_Reset(This)	\
    ( (This)->lpVtbl -> Reset(This) ) 

#define ISOSHandleEnum_GetCount(This,pCount)	\
    ( (This)->lpVtbl -> GetCount(This,pCount) ) 


#define ISOSHandleEnum_Next(This,count,handles,pNeeded)	\
    ( (This)->lpVtbl -> Next(This,count,handles,pNeeded) ) 

#endif /* COBJMACROS */


#endif 	/* C style interface */




#endif 	/* __ISOSHandleEnum_INTERFACE_DEFINED__ */


/* interface __MIDL_itf_sospriv_0000_0002 */
/* [local] */ 

#ifndef _SOS_StackReference_
#define _SOS_StackReference_
typedef 
enum SOSStackSourceType
    {
        SOS_StackSourceIP	= 0,
        SOS_StackSourceFrame	= ( SOS_StackSourceIP + 1 ) 
    } 	SOSStackSourceType;

typedef 
enum SOSRefFlags
    {
        SOSRefInterior	= 1,
        SOSRefPinned	= 2
    } 	SOSRefFlags;

typedef struct _SOS_StackRefData
    {
    BOOL HasRegisterInformation;
    int Register;
    int Offset;
    CLRDATA_ADDRESS Address;
    CLRDATA_ADDRESS Object;
    unsigned int Flags;
    SOSStackSourceType SourceType;
    CLRDATA_ADDRESS Source;
    CLRDATA_ADDRESS StackPointer;
    } 	SOSStackRefData;

typedef struct _SOS_StackRefError
    {
    SOSStackSourceType SourceType;
    CLRDATA_ADDRESS Source;
    CLRDATA_ADDRESS StackPointer;
    } 	SOSStackRefError;

#endif // _SOS_StackReference_


extern RPC_IF_HANDLE __MIDL_itf_sospriv_0000_0002_v0_0_c_ifspec;
extern RPC_IF_HANDLE __MIDL_itf_sospriv_0000_0002_v0_0_s_ifspec;

#ifndef __ISOSStackRefErrorEnum_INTERFACE_DEFINED__
#define __ISOSStackRefErrorEnum_INTERFACE_DEFINED__

/* interface ISOSStackRefErrorEnum */
/* [uuid][local][object] */ 


EXTERN_C const IID IID_ISOSStackRefErrorEnum;

#if defined(__cplusplus) && !defined(CINTERFACE)
    
    MIDL_INTERFACE("774F4E1B-FB7B-491B-976D-A8130FE355E9")
    ISOSStackRefErrorEnum : public ISOSEnum
    {
    public:
        virtual HRESULT STDMETHODCALLTYPE Next( 
            /* [in] */ unsigned int count,
            /* [length_is][size_is][out] */ SOSStackRefError ref[  ],
            /* [out] */ unsigned int *pFetched) = 0;
        
    };
    
    
#else 	/* C style interface */

    typedef struct ISOSStackRefErrorEnumVtbl
    {
        BEGIN_INTERFACE
        
        HRESULT ( STDMETHODCALLTYPE *QueryInterface )( 
            ISOSStackRefErrorEnum * This,
            /* [in] */ REFIID riid,
            /* [annotation][iid_is][out] */ 
            _COM_Outptr_  void **ppvObject);
        
        ULONG ( STDMETHODCALLTYPE *AddRef )( 
            ISOSStackRefErrorEnum * This);
        
        ULONG ( STDMETHODCALLTYPE *Release )( 
            ISOSStackRefErrorEnum * This);
        
        HRESULT ( STDMETHODCALLTYPE *Skip )( 
            ISOSStackRefErrorEnum * This,
            /* [in] */ unsigned int count);
        
        HRESULT ( STDMETHODCALLTYPE *Reset )( 
            ISOSStackRefErrorEnum * This);
        
        HRESULT ( STDMETHODCALLTYPE *GetCount )( 
            ISOSStackRefErrorEnum * This,
            /* [out] */ unsigned int *pCount);
        
        HRESULT ( STDMETHODCALLTYPE *Next )( 
            ISOSStackRefErrorEnum * This,
            /* [in] */ unsigned int count,
            /* [length_is][size_is][out] */ SOSStackRefError ref[  ],
            /* [out] */ unsigned int *pFetched);
        
        END_INTERFACE
    } ISOSStackRefErrorEnumVtbl;

    interface ISOSStackRefErrorEnum
    {
        CONST_VTBL struct ISOSStackRefErrorEnumVtbl *lpVtbl;
    };

    

#ifdef COBJMACROS


#define ISOSStackRefErrorEnum_QueryInterface(This,riid,ppvObject)	\
    ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) 

#define ISOSStackRefErrorEnum_AddRef(This)	\
    ( (This)->lpVtbl -> AddRef(This) ) 

#define ISOSStackRefErrorEnum_Release(This)	\
    ( (This)->lpVtbl -> Release(This) ) 


#define ISOSStackRefErrorEnum_Skip(This,count)	\
    ( (This)->lpVtbl -> Skip(This,count) ) 

#define ISOSStackRefErrorEnum_Reset(This)	\
    ( (This)->lpVtbl -> Reset(This) ) 

#define ISOSStackRefErrorEnum_GetCount(This,pCount)	\
    ( (This)->lpVtbl -> GetCount(This,pCount) ) 


#define ISOSStackRefErrorEnum_Next(This,count,ref,pFetched)	\
    ( (This)->lpVtbl -> Next(This,count,ref,pFetched) ) 

#endif /* COBJMACROS */


#endif 	/* C style interface */




#endif 	/* __ISOSStackRefErrorEnum_INTERFACE_DEFINED__ */


#ifndef __ISOSStackRefEnum_INTERFACE_DEFINED__
#define __ISOSStackRefEnum_INTERFACE_DEFINED__

/* interface ISOSStackRefEnum */
/* [uuid][local][object] */ 


EXTERN_C const IID IID_ISOSStackRefEnum;

#if defined(__cplusplus) && !defined(CINTERFACE)
    
    MIDL_INTERFACE("8FA642BD-9F10-4799-9AA3-512AE78C77EE")
    ISOSStackRefEnum : public ISOSEnum
    {
    public:
        virtual HRESULT STDMETHODCALLTYPE Next( 
            /* [in] */ unsigned int count,
            /* [length_is][size_is][out] */ SOSStackRefData ref[  ],
            /* [out] */ unsigned int *pFetched) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE EnumerateErrors( 
            /* [out] */ ISOSStackRefErrorEnum **ppEnum) = 0;
        
    };
    
    
#else 	/* C style interface */

    typedef struct ISOSStackRefEnumVtbl
    {
        BEGIN_INTERFACE
        
        HRESULT ( STDMETHODCALLTYPE *QueryInterface )( 
            ISOSStackRefEnum * This,
            /* [in] */ REFIID riid,
            /* [annotation][iid_is][out] */ 
            _COM_Outptr_  void **ppvObject);
        
        ULONG ( STDMETHODCALLTYPE *AddRef )( 
            ISOSStackRefEnum * This);
        
        ULONG ( STDMETHODCALLTYPE *Release )( 
            ISOSStackRefEnum * This);
        
        HRESULT ( STDMETHODCALLTYPE *Skip )( 
            ISOSStackRefEnum * This,
            /* [in] */ unsigned int count);
        
        HRESULT ( STDMETHODCALLTYPE *Reset )( 
            ISOSStackRefEnum * This);
        
        HRESULT ( STDMETHODCALLTYPE *GetCount )( 
            ISOSStackRefEnum * This,
            /* [out] */ unsigned int *pCount);
        
        HRESULT ( STDMETHODCALLTYPE *Next )( 
            ISOSStackRefEnum * This,
            /* [in] */ unsigned int count,
            /* [length_is][size_is][out] */ SOSStackRefData ref[  ],
            /* [out] */ unsigned int *pFetched);
        
        HRESULT ( STDMETHODCALLTYPE *EnumerateErrors )( 
            ISOSStackRefEnum * This,
            /* [out] */ ISOSStackRefErrorEnum **ppEnum);
        
        END_INTERFACE
    } ISOSStackRefEnumVtbl;

    interface ISOSStackRefEnum
    {
        CONST_VTBL struct ISOSStackRefEnumVtbl *lpVtbl;
    };

    

#ifdef COBJMACROS


#define ISOSStackRefEnum_QueryInterface(This,riid,ppvObject)	\
    ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) 

#define ISOSStackRefEnum_AddRef(This)	\
    ( (This)->lpVtbl -> AddRef(This) ) 

#define ISOSStackRefEnum_Release(This)	\
    ( (This)->lpVtbl -> Release(This) ) 


#define ISOSStackRefEnum_Skip(This,count)	\
    ( (This)->lpVtbl -> Skip(This,count) ) 

#define ISOSStackRefEnum_Reset(This)	\
    ( (This)->lpVtbl -> Reset(This) ) 

#define ISOSStackRefEnum_GetCount(This,pCount)	\
    ( (This)->lpVtbl -> GetCount(This,pCount) ) 


#define ISOSStackRefEnum_Next(This,count,ref,pFetched)	\
    ( (This)->lpVtbl -> Next(This,count,ref,pFetched) ) 

#define ISOSStackRefEnum_EnumerateErrors(This,ppEnum)	\
    ( (This)->lpVtbl -> EnumerateErrors(This,ppEnum) ) 

#endif /* COBJMACROS */


#endif 	/* C style interface */




#endif 	/* __ISOSStackRefEnum_INTERFACE_DEFINED__ */


#ifndef __ISOSDacInterface_INTERFACE_DEFINED__
#define __ISOSDacInterface_INTERFACE_DEFINED__

/* interface ISOSDacInterface */
/* [uuid][local][object] */ 


EXTERN_C const IID IID_ISOSDacInterface;

#if defined(__cplusplus) && !defined(CINTERFACE)
    
    MIDL_INTERFACE("436f00f2-b42a-4b9f-870c-e73db66ae930")
    ISOSDacInterface : public IUnknown
    {
    public:
        virtual HRESULT STDMETHODCALLTYPE GetThreadStoreData( 
            struct DacpThreadStoreData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetAppDomainStoreData( 
            struct DacpAppDomainStoreData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetAppDomainList( 
            unsigned int count,
            CLRDATA_ADDRESS values[  ],
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetAppDomainData( 
            CLRDATA_ADDRESS addr,
            struct DacpAppDomainData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetAppDomainName( 
            CLRDATA_ADDRESS addr,
            unsigned int count,
            WCHAR *name,
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetDomainFromContext( 
            CLRDATA_ADDRESS context,
            CLRDATA_ADDRESS *domain) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetAssemblyList( 
            CLRDATA_ADDRESS appDomain,
            int count,
            CLRDATA_ADDRESS values[  ],
            int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetAssemblyData( 
            CLRDATA_ADDRESS baseDomainPtr,
            CLRDATA_ADDRESS assembly,
            struct DacpAssemblyData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetAssemblyName( 
            CLRDATA_ADDRESS assembly,
            unsigned int count,
            WCHAR *name,
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetModule( 
            CLRDATA_ADDRESS addr,
            IXCLRDataModule **mod) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetModuleData( 
            CLRDATA_ADDRESS moduleAddr,
            struct DacpModuleData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE TraverseModuleMap( 
            ModuleMapType mmt,
            CLRDATA_ADDRESS moduleAddr,
            MODULEMAPTRAVERSE pCallback,
            LPVOID token) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetAssemblyModuleList( 
            CLRDATA_ADDRESS assembly,
            unsigned int count,
            CLRDATA_ADDRESS modules[  ],
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetILForModule( 
            CLRDATA_ADDRESS moduleAddr,
            DWORD rva,
            CLRDATA_ADDRESS *il) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetThreadData( 
            CLRDATA_ADDRESS thread,
            struct DacpThreadData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetThreadFromThinlockID( 
            UINT thinLockId,
            CLRDATA_ADDRESS *pThread) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetStackLimits( 
            CLRDATA_ADDRESS threadPtr,
            CLRDATA_ADDRESS *lower,
            CLRDATA_ADDRESS *upper,
            CLRDATA_ADDRESS *fp) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetMethodDescData( 
            CLRDATA_ADDRESS methodDesc,
            CLRDATA_ADDRESS ip,
            struct DacpMethodDescData *data,
            ULONG cRevertedRejitVersions,
            struct DacpReJitData *rgRevertedRejitData,
            ULONG *pcNeededRevertedRejitData) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetMethodDescPtrFromIP( 
            CLRDATA_ADDRESS ip,
            CLRDATA_ADDRESS *ppMD) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetMethodDescName( 
            CLRDATA_ADDRESS methodDesc,
            unsigned int count,
            WCHAR *name,
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetMethodDescPtrFromFrame( 
            CLRDATA_ADDRESS frameAddr,
            CLRDATA_ADDRESS *ppMD) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetMethodDescFromToken( 
            CLRDATA_ADDRESS moduleAddr,
            mdToken token,
            CLRDATA_ADDRESS *methodDesc) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetMethodDescTransparencyData( 
            CLRDATA_ADDRESS methodDesc,
            struct DacpMethodDescTransparencyData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetCodeHeaderData( 
            CLRDATA_ADDRESS ip,
            struct DacpCodeHeaderData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetJitManagerList( 
            unsigned int count,
            struct DacpJitManagerInfo *managers,
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetJitHelperFunctionName( 
            CLRDATA_ADDRESS ip,
            unsigned int count,
            char *name,
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetJumpThunkTarget( 
            T_CONTEXT *ctx,
            CLRDATA_ADDRESS *targetIP,
            CLRDATA_ADDRESS *targetMD) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetThreadpoolData( 
            struct DacpThreadpoolData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetWorkRequestData( 
            CLRDATA_ADDRESS addrWorkRequest,
            struct DacpWorkRequestData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetHillClimbingLogEntry( 
            CLRDATA_ADDRESS addr,
            struct DacpHillClimbingLogEntry *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetObjectData( 
            CLRDATA_ADDRESS objAddr,
            struct DacpObjectData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetObjectStringData( 
            CLRDATA_ADDRESS obj,
            unsigned int count,
            WCHAR *stringData,
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetObjectClassName( 
            CLRDATA_ADDRESS obj,
            unsigned int count,
            WCHAR *className,
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetMethodTableName( 
            CLRDATA_ADDRESS mt,
            unsigned int count,
            WCHAR *mtName,
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetMethodTableData( 
            CLRDATA_ADDRESS mt,
            struct DacpMethodTableData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetMethodTableSlot( 
            CLRDATA_ADDRESS mt,
            unsigned int slot,
            CLRDATA_ADDRESS *value) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetMethodTableFieldData( 
            CLRDATA_ADDRESS mt,
            struct DacpMethodTableFieldData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetMethodTableTransparencyData( 
            CLRDATA_ADDRESS mt,
            struct DacpMethodTableTransparencyData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetMethodTableForEEClass( 
            CLRDATA_ADDRESS eeClass,
            CLRDATA_ADDRESS *value) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetFieldDescData( 
            CLRDATA_ADDRESS fieldDesc,
            struct DacpFieldDescData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetFrameName( 
            CLRDATA_ADDRESS vtable,
            unsigned int count,
            WCHAR *frameName,
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetPEFileBase( 
            CLRDATA_ADDRESS addr,
            CLRDATA_ADDRESS *base) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetPEFileName( 
            CLRDATA_ADDRESS addr,
            unsigned int count,
            WCHAR *fileName,
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetGCHeapData( 
            struct DacpGcHeapData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetGCHeapList( 
            unsigned int count,
            CLRDATA_ADDRESS heaps[  ],
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetGCHeapDetails( 
            CLRDATA_ADDRESS heap,
            struct DacpGcHeapDetails *details) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetGCHeapStaticData( 
            struct DacpGcHeapDetails *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetHeapSegmentData( 
            CLRDATA_ADDRESS seg,
            struct DacpHeapSegmentData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetOOMData( 
            CLRDATA_ADDRESS oomAddr,
            struct DacpOomData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetOOMStaticData( 
            struct DacpOomData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetHeapAnalyzeData( 
            CLRDATA_ADDRESS addr,
            struct DacpGcHeapAnalyzeData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetHeapAnalyzeStaticData( 
            struct DacpGcHeapAnalyzeData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetDomainLocalModuleData( 
            CLRDATA_ADDRESS addr,
            struct DacpDomainLocalModuleData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetDomainLocalModuleDataFromAppDomain( 
            CLRDATA_ADDRESS appDomainAddr,
            int moduleID,
            struct DacpDomainLocalModuleData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetDomainLocalModuleDataFromModule( 
            CLRDATA_ADDRESS moduleAddr,
            struct DacpDomainLocalModuleData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetThreadLocalModuleData( 
            CLRDATA_ADDRESS thread,
            unsigned int index,
            struct DacpThreadLocalModuleData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetSyncBlockData( 
            unsigned int number,
            struct DacpSyncBlockData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetSyncBlockCleanupData( 
            CLRDATA_ADDRESS addr,
            struct DacpSyncBlockCleanupData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetHandleEnum( 
            ISOSHandleEnum **ppHandleEnum) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetHandleEnumForTypes( 
            unsigned int types[  ],
            unsigned int count,
            ISOSHandleEnum **ppHandleEnum) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetHandleEnumForGC( 
            unsigned int gen,
            ISOSHandleEnum **ppHandleEnum) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE TraverseEHInfo( 
            CLRDATA_ADDRESS ip,
            DUMPEHINFO pCallback,
            LPVOID token) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetNestedExceptionData( 
            CLRDATA_ADDRESS exception,
            CLRDATA_ADDRESS *exceptionObject,
            CLRDATA_ADDRESS *nextNestedException) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetStressLogAddress( 
            CLRDATA_ADDRESS *stressLog) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE TraverseLoaderHeap( 
            CLRDATA_ADDRESS loaderHeapAddr,
            VISITHEAP pCallback) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetCodeHeapList( 
            CLRDATA_ADDRESS jitManager,
            unsigned int count,
            struct DacpJitCodeHeapInfo *codeHeaps,
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE TraverseVirtCallStubHeap( 
            CLRDATA_ADDRESS pAppDomain,
            VCSHeapType heaptype,
            VISITHEAP pCallback) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetUsefulGlobals( 
            struct DacpUsefulGlobalsData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetClrWatsonBuckets( 
            CLRDATA_ADDRESS thread,
            void *pGenericModeBlock) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetTLSIndex( 
            ULONG *pIndex) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetDacModuleHandle( 
            HMODULE *phModule) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetRCWData( 
            CLRDATA_ADDRESS addr,
            struct DacpRCWData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetRCWInterfaces( 
            CLRDATA_ADDRESS rcw,
            unsigned int count,
            struct DacpCOMInterfacePointerData *interfaces,
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetCCWData( 
            CLRDATA_ADDRESS ccw,
            struct DacpCCWData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetCCWInterfaces( 
            CLRDATA_ADDRESS ccw,
            unsigned int count,
            struct DacpCOMInterfacePointerData *interfaces,
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE TraverseRCWCleanupList( 
            CLRDATA_ADDRESS cleanupListPtr,
            VISITRCWFORCLEANUP pCallback,
            LPVOID token) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetStackReferences( 
            /* [in] */ DWORD osThreadID,
            /* [out] */ ISOSStackRefEnum **ppEnum) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetRegisterName( 
            /* [in] */ int regName,
            /* [in] */ unsigned int count,
            /* [out] */ WCHAR *buffer,
            /* [out] */ unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetThreadAllocData( 
            CLRDATA_ADDRESS thread,
            struct DacpAllocData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetHeapAllocData( 
            unsigned int count,
            struct DacpGenerationAllocData *data,
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetFailedAssemblyList( 
            CLRDATA_ADDRESS appDomain,
            int count,
            CLRDATA_ADDRESS values[  ],
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetPrivateBinPaths( 
            CLRDATA_ADDRESS appDomain,
            int count,
            WCHAR *paths,
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetAssemblyLocation( 
            CLRDATA_ADDRESS assembly,
            int count,
            WCHAR *location,
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetAppDomainConfigFile( 
            CLRDATA_ADDRESS appDomain,
            int count,
            WCHAR *configFile,
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetApplicationBase( 
            CLRDATA_ADDRESS appDomain,
            int count,
            WCHAR *base,
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetFailedAssemblyData( 
            CLRDATA_ADDRESS assembly,
            unsigned int *pContext,
            HRESULT *pResult) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetFailedAssemblyLocation( 
            CLRDATA_ADDRESS assesmbly,
            unsigned int count,
            WCHAR *location,
            unsigned int *pNeeded) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetFailedAssemblyDisplayName( 
            CLRDATA_ADDRESS assembly,
            unsigned int count,
            WCHAR *name,
            unsigned int *pNeeded) = 0;
        
    };
    
    
#else 	/* C style interface */

    typedef struct ISOSDacInterfaceVtbl
    {
        BEGIN_INTERFACE
        
        HRESULT ( STDMETHODCALLTYPE *QueryInterface )( 
            ISOSDacInterface * This,
            /* [in] */ REFIID riid,
            /* [annotation][iid_is][out] */ 
            _COM_Outptr_  void **ppvObject);
        
        ULONG ( STDMETHODCALLTYPE *AddRef )( 
            ISOSDacInterface * This);
        
        ULONG ( STDMETHODCALLTYPE *Release )( 
            ISOSDacInterface * This);
        
        HRESULT ( STDMETHODCALLTYPE *GetThreadStoreData )( 
            ISOSDacInterface * This,
            struct DacpThreadStoreData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetAppDomainStoreData )( 
            ISOSDacInterface * This,
            struct DacpAppDomainStoreData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetAppDomainList )( 
            ISOSDacInterface * This,
            unsigned int count,
            CLRDATA_ADDRESS values[  ],
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetAppDomainData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS addr,
            struct DacpAppDomainData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetAppDomainName )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS addr,
            unsigned int count,
            WCHAR *name,
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetDomainFromContext )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS context,
            CLRDATA_ADDRESS *domain);
        
        HRESULT ( STDMETHODCALLTYPE *GetAssemblyList )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS appDomain,
            int count,
            CLRDATA_ADDRESS values[  ],
            int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetAssemblyData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS baseDomainPtr,
            CLRDATA_ADDRESS assembly,
            struct DacpAssemblyData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetAssemblyName )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS assembly,
            unsigned int count,
            WCHAR *name,
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetModule )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS addr,
            IXCLRDataModule **mod);
        
        HRESULT ( STDMETHODCALLTYPE *GetModuleData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS moduleAddr,
            struct DacpModuleData *data);
        
        HRESULT ( STDMETHODCALLTYPE *TraverseModuleMap )( 
            ISOSDacInterface * This,
            ModuleMapType mmt,
            CLRDATA_ADDRESS moduleAddr,
            MODULEMAPTRAVERSE pCallback,
            LPVOID token);
        
        HRESULT ( STDMETHODCALLTYPE *GetAssemblyModuleList )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS assembly,
            unsigned int count,
            CLRDATA_ADDRESS modules[  ],
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetILForModule )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS moduleAddr,
            DWORD rva,
            CLRDATA_ADDRESS *il);
        
        HRESULT ( STDMETHODCALLTYPE *GetThreadData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS thread,
            struct DacpThreadData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetThreadFromThinlockID )( 
            ISOSDacInterface * This,
            UINT thinLockId,
            CLRDATA_ADDRESS *pThread);
        
        HRESULT ( STDMETHODCALLTYPE *GetStackLimits )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS threadPtr,
            CLRDATA_ADDRESS *lower,
            CLRDATA_ADDRESS *upper,
            CLRDATA_ADDRESS *fp);
        
        HRESULT ( STDMETHODCALLTYPE *GetMethodDescData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS methodDesc,
            CLRDATA_ADDRESS ip,
            struct DacpMethodDescData *data,
            ULONG cRevertedRejitVersions,
            struct DacpReJitData *rgRevertedRejitData,
            ULONG *pcNeededRevertedRejitData);
        
        HRESULT ( STDMETHODCALLTYPE *GetMethodDescPtrFromIP )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS ip,
            CLRDATA_ADDRESS *ppMD);
        
        HRESULT ( STDMETHODCALLTYPE *GetMethodDescName )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS methodDesc,
            unsigned int count,
            WCHAR *name,
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetMethodDescPtrFromFrame )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS frameAddr,
            CLRDATA_ADDRESS *ppMD);
        
        HRESULT ( STDMETHODCALLTYPE *GetMethodDescFromToken )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS moduleAddr,
            mdToken token,
            CLRDATA_ADDRESS *methodDesc);
        
        HRESULT ( STDMETHODCALLTYPE *GetMethodDescTransparencyData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS methodDesc,
            struct DacpMethodDescTransparencyData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetCodeHeaderData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS ip,
            struct DacpCodeHeaderData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetJitManagerList )( 
            ISOSDacInterface * This,
            unsigned int count,
            struct DacpJitManagerInfo *managers,
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetJitHelperFunctionName )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS ip,
            unsigned int count,
            char *name,
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetJumpThunkTarget )( 
            ISOSDacInterface * This,
            T_CONTEXT *ctx,
            CLRDATA_ADDRESS *targetIP,
            CLRDATA_ADDRESS *targetMD);
        
        HRESULT ( STDMETHODCALLTYPE *GetThreadpoolData )( 
            ISOSDacInterface * This,
            struct DacpThreadpoolData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetWorkRequestData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS addrWorkRequest,
            struct DacpWorkRequestData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetHillClimbingLogEntry )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS addr,
            struct DacpHillClimbingLogEntry *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetObjectData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS objAddr,
            struct DacpObjectData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetObjectStringData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS obj,
            unsigned int count,
            WCHAR *stringData,
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetObjectClassName )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS obj,
            unsigned int count,
            WCHAR *className,
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetMethodTableName )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS mt,
            unsigned int count,
            WCHAR *mtName,
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetMethodTableData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS mt,
            struct DacpMethodTableData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetMethodTableSlot )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS mt,
            unsigned int slot,
            CLRDATA_ADDRESS *value);
        
        HRESULT ( STDMETHODCALLTYPE *GetMethodTableFieldData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS mt,
            struct DacpMethodTableFieldData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetMethodTableTransparencyData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS mt,
            struct DacpMethodTableTransparencyData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetMethodTableForEEClass )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS eeClass,
            CLRDATA_ADDRESS *value);
        
        HRESULT ( STDMETHODCALLTYPE *GetFieldDescData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS fieldDesc,
            struct DacpFieldDescData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetFrameName )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS vtable,
            unsigned int count,
            WCHAR *frameName,
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetPEFileBase )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS addr,
            CLRDATA_ADDRESS *base);
        
        HRESULT ( STDMETHODCALLTYPE *GetPEFileName )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS addr,
            unsigned int count,
            WCHAR *fileName,
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetGCHeapData )( 
            ISOSDacInterface * This,
            struct DacpGcHeapData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetGCHeapList )( 
            ISOSDacInterface * This,
            unsigned int count,
            CLRDATA_ADDRESS heaps[  ],
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetGCHeapDetails )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS heap,
            struct DacpGcHeapDetails *details);
        
        HRESULT ( STDMETHODCALLTYPE *GetGCHeapStaticData )( 
            ISOSDacInterface * This,
            struct DacpGcHeapDetails *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetHeapSegmentData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS seg,
            struct DacpHeapSegmentData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetOOMData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS oomAddr,
            struct DacpOomData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetOOMStaticData )( 
            ISOSDacInterface * This,
            struct DacpOomData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetHeapAnalyzeData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS addr,
            struct DacpGcHeapAnalyzeData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetHeapAnalyzeStaticData )( 
            ISOSDacInterface * This,
            struct DacpGcHeapAnalyzeData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetDomainLocalModuleData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS addr,
            struct DacpDomainLocalModuleData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetDomainLocalModuleDataFromAppDomain )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS appDomainAddr,
            int moduleID,
            struct DacpDomainLocalModuleData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetDomainLocalModuleDataFromModule )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS moduleAddr,
            struct DacpDomainLocalModuleData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetThreadLocalModuleData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS thread,
            unsigned int index,
            struct DacpThreadLocalModuleData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetSyncBlockData )( 
            ISOSDacInterface * This,
            unsigned int number,
            struct DacpSyncBlockData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetSyncBlockCleanupData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS addr,
            struct DacpSyncBlockCleanupData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetHandleEnum )( 
            ISOSDacInterface * This,
            ISOSHandleEnum **ppHandleEnum);
        
        HRESULT ( STDMETHODCALLTYPE *GetHandleEnumForTypes )( 
            ISOSDacInterface * This,
            unsigned int types[  ],
            unsigned int count,
            ISOSHandleEnum **ppHandleEnum);
        
        HRESULT ( STDMETHODCALLTYPE *GetHandleEnumForGC )( 
            ISOSDacInterface * This,
            unsigned int gen,
            ISOSHandleEnum **ppHandleEnum);
        
        HRESULT ( STDMETHODCALLTYPE *TraverseEHInfo )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS ip,
            DUMPEHINFO pCallback,
            LPVOID token);
        
        HRESULT ( STDMETHODCALLTYPE *GetNestedExceptionData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS exception,
            CLRDATA_ADDRESS *exceptionObject,
            CLRDATA_ADDRESS *nextNestedException);
        
        HRESULT ( STDMETHODCALLTYPE *GetStressLogAddress )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS *stressLog);
        
        HRESULT ( STDMETHODCALLTYPE *TraverseLoaderHeap )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS loaderHeapAddr,
            VISITHEAP pCallback);
        
        HRESULT ( STDMETHODCALLTYPE *GetCodeHeapList )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS jitManager,
            unsigned int count,
            struct DacpJitCodeHeapInfo *codeHeaps,
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *TraverseVirtCallStubHeap )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS pAppDomain,
            VCSHeapType heaptype,
            VISITHEAP pCallback);
        
        HRESULT ( STDMETHODCALLTYPE *GetUsefulGlobals )( 
            ISOSDacInterface * This,
            struct DacpUsefulGlobalsData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetClrWatsonBuckets )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS thread,
            void *pGenericModeBlock);
        
        HRESULT ( STDMETHODCALLTYPE *GetTLSIndex )( 
            ISOSDacInterface * This,
            ULONG *pIndex);
        
        HRESULT ( STDMETHODCALLTYPE *GetDacModuleHandle )( 
            ISOSDacInterface * This,
            HMODULE *phModule);
        
        HRESULT ( STDMETHODCALLTYPE *GetRCWData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS addr,
            struct DacpRCWData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetRCWInterfaces )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS rcw,
            unsigned int count,
            struct DacpCOMInterfacePointerData *interfaces,
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetCCWData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS ccw,
            struct DacpCCWData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetCCWInterfaces )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS ccw,
            unsigned int count,
            struct DacpCOMInterfacePointerData *interfaces,
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *TraverseRCWCleanupList )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS cleanupListPtr,
            VISITRCWFORCLEANUP pCallback,
            LPVOID token);
        
        HRESULT ( STDMETHODCALLTYPE *GetStackReferences )( 
            ISOSDacInterface * This,
            /* [in] */ DWORD osThreadID,
            /* [out] */ ISOSStackRefEnum **ppEnum);
        
        HRESULT ( STDMETHODCALLTYPE *GetRegisterName )( 
            ISOSDacInterface * This,
            /* [in] */ int regName,
            /* [in] */ unsigned int count,
            /* [out] */ WCHAR *buffer,
            /* [out] */ unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetThreadAllocData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS thread,
            struct DacpAllocData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetHeapAllocData )( 
            ISOSDacInterface * This,
            unsigned int count,
            struct DacpGenerationAllocData *data,
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetFailedAssemblyList )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS appDomain,
            int count,
            CLRDATA_ADDRESS values[  ],
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetPrivateBinPaths )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS appDomain,
            int count,
            WCHAR *paths,
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetAssemblyLocation )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS assembly,
            int count,
            WCHAR *location,
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetAppDomainConfigFile )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS appDomain,
            int count,
            WCHAR *configFile,
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetApplicationBase )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS appDomain,
            int count,
            WCHAR *base,
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetFailedAssemblyData )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS assembly,
            unsigned int *pContext,
            HRESULT *pResult);
        
        HRESULT ( STDMETHODCALLTYPE *GetFailedAssemblyLocation )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS assesmbly,
            unsigned int count,
            WCHAR *location,
            unsigned int *pNeeded);
        
        HRESULT ( STDMETHODCALLTYPE *GetFailedAssemblyDisplayName )( 
            ISOSDacInterface * This,
            CLRDATA_ADDRESS assembly,
            unsigned int count,
            WCHAR *name,
            unsigned int *pNeeded);
        
        END_INTERFACE
    } ISOSDacInterfaceVtbl;

    interface ISOSDacInterface
    {
        CONST_VTBL struct ISOSDacInterfaceVtbl *lpVtbl;
    };

    

#ifdef COBJMACROS


#define ISOSDacInterface_QueryInterface(This,riid,ppvObject)	\
    ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) 

#define ISOSDacInterface_AddRef(This)	\
    ( (This)->lpVtbl -> AddRef(This) ) 

#define ISOSDacInterface_Release(This)	\
    ( (This)->lpVtbl -> Release(This) ) 


#define ISOSDacInterface_GetThreadStoreData(This,data)	\
    ( (This)->lpVtbl -> GetThreadStoreData(This,data) ) 

#define ISOSDacInterface_GetAppDomainStoreData(This,data)	\
    ( (This)->lpVtbl -> GetAppDomainStoreData(This,data) ) 

#define ISOSDacInterface_GetAppDomainList(This,count,values,pNeeded)	\
    ( (This)->lpVtbl -> GetAppDomainList(This,count,values,pNeeded) ) 

#define ISOSDacInterface_GetAppDomainData(This,addr,data)	\
    ( (This)->lpVtbl -> GetAppDomainData(This,addr,data) ) 

#define ISOSDacInterface_GetAppDomainName(This,addr,count,name,pNeeded)	\
    ( (This)->lpVtbl -> GetAppDomainName(This,addr,count,name,pNeeded) ) 

#define ISOSDacInterface_GetDomainFromContext(This,context,domain)	\
    ( (This)->lpVtbl -> GetDomainFromContext(This,context,domain) ) 

#define ISOSDacInterface_GetAssemblyList(This,appDomain,count,values,pNeeded)	\
    ( (This)->lpVtbl -> GetAssemblyList(This,appDomain,count,values,pNeeded) ) 

#define ISOSDacInterface_GetAssemblyData(This,baseDomainPtr,assembly,data)	\
    ( (This)->lpVtbl -> GetAssemblyData(This,baseDomainPtr,assembly,data) ) 

#define ISOSDacInterface_GetAssemblyName(This,assembly,count,name,pNeeded)	\
    ( (This)->lpVtbl -> GetAssemblyName(This,assembly,count,name,pNeeded) ) 

#define ISOSDacInterface_GetModule(This,addr,mod)	\
    ( (This)->lpVtbl -> GetModule(This,addr,mod) ) 

#define ISOSDacInterface_GetModuleData(This,moduleAddr,data)	\
    ( (This)->lpVtbl -> GetModuleData(This,moduleAddr,data) ) 

#define ISOSDacInterface_TraverseModuleMap(This,mmt,moduleAddr,pCallback,token)	\
    ( (This)->lpVtbl -> TraverseModuleMap(This,mmt,moduleAddr,pCallback,token) ) 

#define ISOSDacInterface_GetAssemblyModuleList(This,assembly,count,modules,pNeeded)	\
    ( (This)->lpVtbl -> GetAssemblyModuleList(This,assembly,count,modules,pNeeded) ) 

#define ISOSDacInterface_GetILForModule(This,moduleAddr,rva,il)	\
    ( (This)->lpVtbl -> GetILForModule(This,moduleAddr,rva,il) ) 

#define ISOSDacInterface_GetThreadData(This,thread,data)	\
    ( (This)->lpVtbl -> GetThreadData(This,thread,data) ) 

#define ISOSDacInterface_GetThreadFromThinlockID(This,thinLockId,pThread)	\
    ( (This)->lpVtbl -> GetThreadFromThinlockID(This,thinLockId,pThread) ) 

#define ISOSDacInterface_GetStackLimits(This,threadPtr,lower,upper,fp)	\
    ( (This)->lpVtbl -> GetStackLimits(This,threadPtr,lower,upper,fp) ) 

#define ISOSDacInterface_GetMethodDescData(This,methodDesc,ip,data,cRevertedRejitVersions,rgRevertedRejitData,pcNeededRevertedRejitData)	\
    ( (This)->lpVtbl -> GetMethodDescData(This,methodDesc,ip,data,cRevertedRejitVersions,rgRevertedRejitData,pcNeededRevertedRejitData) ) 

#define ISOSDacInterface_GetMethodDescPtrFromIP(This,ip,ppMD)	\
    ( (This)->lpVtbl -> GetMethodDescPtrFromIP(This,ip,ppMD) ) 

#define ISOSDacInterface_GetMethodDescName(This,methodDesc,count,name,pNeeded)	\
    ( (This)->lpVtbl -> GetMethodDescName(This,methodDesc,count,name,pNeeded) ) 

#define ISOSDacInterface_GetMethodDescPtrFromFrame(This,frameAddr,ppMD)	\
    ( (This)->lpVtbl -> GetMethodDescPtrFromFrame(This,frameAddr,ppMD) ) 

#define ISOSDacInterface_GetMethodDescFromToken(This,moduleAddr,token,methodDesc)	\
    ( (This)->lpVtbl -> GetMethodDescFromToken(This,moduleAddr,token,methodDesc) ) 

#define ISOSDacInterface_GetMethodDescTransparencyData(This,methodDesc,data)	\
    ( (This)->lpVtbl -> GetMethodDescTransparencyData(This,methodDesc,data) ) 

#define ISOSDacInterface_GetCodeHeaderData(This,ip,data)	\
    ( (This)->lpVtbl -> GetCodeHeaderData(This,ip,data) ) 

#define ISOSDacInterface_GetJitManagerList(This,count,managers,pNeeded)	\
    ( (This)->lpVtbl -> GetJitManagerList(This,count,managers,pNeeded) ) 

#define ISOSDacInterface_GetJitHelperFunctionName(This,ip,count,name,pNeeded)	\
    ( (This)->lpVtbl -> GetJitHelperFunctionName(This,ip,count,name,pNeeded) ) 

#define ISOSDacInterface_GetJumpThunkTarget(This,ctx,targetIP,targetMD)	\
    ( (This)->lpVtbl -> GetJumpThunkTarget(This,ctx,targetIP,targetMD) ) 

#define ISOSDacInterface_GetThreadpoolData(This,data)	\
    ( (This)->lpVtbl -> GetThreadpoolData(This,data) ) 

#define ISOSDacInterface_GetWorkRequestData(This,addrWorkRequest,data)	\
    ( (This)->lpVtbl -> GetWorkRequestData(This,addrWorkRequest,data) ) 

#define ISOSDacInterface_GetHillClimbingLogEntry(This,addr,data)	\
    ( (This)->lpVtbl -> GetHillClimbingLogEntry(This,addr,data) ) 

#define ISOSDacInterface_GetObjectData(This,objAddr,data)	\
    ( (This)->lpVtbl -> GetObjectData(This,objAddr,data) ) 

#define ISOSDacInterface_GetObjectStringData(This,obj,count,stringData,pNeeded)	\
    ( (This)->lpVtbl -> GetObjectStringData(This,obj,count,stringData,pNeeded) ) 

#define ISOSDacInterface_GetObjectClassName(This,obj,count,className,pNeeded)	\
    ( (This)->lpVtbl -> GetObjectClassName(This,obj,count,className,pNeeded) ) 

#define ISOSDacInterface_GetMethodTableName(This,mt,count,mtName,pNeeded)	\
    ( (This)->lpVtbl -> GetMethodTableName(This,mt,count,mtName,pNeeded) ) 

#define ISOSDacInterface_GetMethodTableData(This,mt,data)	\
    ( (This)->lpVtbl -> GetMethodTableData(This,mt,data) ) 

#define ISOSDacInterface_GetMethodTableSlot(This,mt,slot,value)	\
    ( (This)->lpVtbl -> GetMethodTableSlot(This,mt,slot,value) ) 

#define ISOSDacInterface_GetMethodTableFieldData(This,mt,data)	\
    ( (This)->lpVtbl -> GetMethodTableFieldData(This,mt,data) ) 

#define ISOSDacInterface_GetMethodTableTransparencyData(This,mt,data)	\
    ( (This)->lpVtbl -> GetMethodTableTransparencyData(This,mt,data) ) 

#define ISOSDacInterface_GetMethodTableForEEClass(This,eeClass,value)	\
    ( (This)->lpVtbl -> GetMethodTableForEEClass(This,eeClass,value) ) 

#define ISOSDacInterface_GetFieldDescData(This,fieldDesc,data)	\
    ( (This)->lpVtbl -> GetFieldDescData(This,fieldDesc,data) ) 

#define ISOSDacInterface_GetFrameName(This,vtable,count,frameName,pNeeded)	\
    ( (This)->lpVtbl -> GetFrameName(This,vtable,count,frameName,pNeeded) ) 

#define ISOSDacInterface_GetPEFileBase(This,addr,base)	\
    ( (This)->lpVtbl -> GetPEFileBase(This,addr,base) ) 

#define ISOSDacInterface_GetPEFileName(This,addr,count,fileName,pNeeded)	\
    ( (This)->lpVtbl -> GetPEFileName(This,addr,count,fileName,pNeeded) ) 

#define ISOSDacInterface_GetGCHeapData(This,data)	\
    ( (This)->lpVtbl -> GetGCHeapData(This,data) ) 

#define ISOSDacInterface_GetGCHeapList(This,count,heaps,pNeeded)	\
    ( (This)->lpVtbl -> GetGCHeapList(This,count,heaps,pNeeded) ) 

#define ISOSDacInterface_GetGCHeapDetails(This,heap,details)	\
    ( (This)->lpVtbl -> GetGCHeapDetails(This,heap,details) ) 

#define ISOSDacInterface_GetGCHeapStaticData(This,data)	\
    ( (This)->lpVtbl -> GetGCHeapStaticData(This,data) ) 

#define ISOSDacInterface_GetHeapSegmentData(This,seg,data)	\
    ( (This)->lpVtbl -> GetHeapSegmentData(This,seg,data) ) 

#define ISOSDacInterface_GetOOMData(This,oomAddr,data)	\
    ( (This)->lpVtbl -> GetOOMData(This,oomAddr,data) ) 

#define ISOSDacInterface_GetOOMStaticData(This,data)	\
    ( (This)->lpVtbl -> GetOOMStaticData(This,data) ) 

#define ISOSDacInterface_GetHeapAnalyzeData(This,addr,data)	\
    ( (This)->lpVtbl -> GetHeapAnalyzeData(This,addr,data) ) 

#define ISOSDacInterface_GetHeapAnalyzeStaticData(This,data)	\
    ( (This)->lpVtbl -> GetHeapAnalyzeStaticData(This,data) ) 

#define ISOSDacInterface_GetDomainLocalModuleData(This,addr,data)	\
    ( (This)->lpVtbl -> GetDomainLocalModuleData(This,addr,data) ) 

#define ISOSDacInterface_GetDomainLocalModuleDataFromAppDomain(This,appDomainAddr,moduleID,data)	\
    ( (This)->lpVtbl -> GetDomainLocalModuleDataFromAppDomain(This,appDomainAddr,moduleID,data) ) 

#define ISOSDacInterface_GetDomainLocalModuleDataFromModule(This,moduleAddr,data)	\
    ( (This)->lpVtbl -> GetDomainLocalModuleDataFromModule(This,moduleAddr,data) ) 

#define ISOSDacInterface_GetThreadLocalModuleData(This,thread,index,data)	\
    ( (This)->lpVtbl -> GetThreadLocalModuleData(This,thread,index,data) ) 

#define ISOSDacInterface_GetSyncBlockData(This,number,data)	\
    ( (This)->lpVtbl -> GetSyncBlockData(This,number,data) ) 

#define ISOSDacInterface_GetSyncBlockCleanupData(This,addr,data)	\
    ( (This)->lpVtbl -> GetSyncBlockCleanupData(This,addr,data) ) 

#define ISOSDacInterface_GetHandleEnum(This,ppHandleEnum)	\
    ( (This)->lpVtbl -> GetHandleEnum(This,ppHandleEnum) ) 

#define ISOSDacInterface_GetHandleEnumForTypes(This,types,count,ppHandleEnum)	\
    ( (This)->lpVtbl -> GetHandleEnumForTypes(This,types,count,ppHandleEnum) ) 

#define ISOSDacInterface_GetHandleEnumForGC(This,gen,ppHandleEnum)	\
    ( (This)->lpVtbl -> GetHandleEnumForGC(This,gen,ppHandleEnum) ) 

#define ISOSDacInterface_TraverseEHInfo(This,ip,pCallback,token)	\
    ( (This)->lpVtbl -> TraverseEHInfo(This,ip,pCallback,token) ) 

#define ISOSDacInterface_GetNestedExceptionData(This,exception,exceptionObject,nextNestedException)	\
    ( (This)->lpVtbl -> GetNestedExceptionData(This,exception,exceptionObject,nextNestedException) ) 

#define ISOSDacInterface_GetStressLogAddress(This,stressLog)	\
    ( (This)->lpVtbl -> GetStressLogAddress(This,stressLog) ) 

#define ISOSDacInterface_TraverseLoaderHeap(This,loaderHeapAddr,pCallback)	\
    ( (This)->lpVtbl -> TraverseLoaderHeap(This,loaderHeapAddr,pCallback) ) 

#define ISOSDacInterface_GetCodeHeapList(This,jitManager,count,codeHeaps,pNeeded)	\
    ( (This)->lpVtbl -> GetCodeHeapList(This,jitManager,count,codeHeaps,pNeeded) ) 

#define ISOSDacInterface_TraverseVirtCallStubHeap(This,pAppDomain,heaptype,pCallback)	\
    ( (This)->lpVtbl -> TraverseVirtCallStubHeap(This,pAppDomain,heaptype,pCallback) ) 

#define ISOSDacInterface_GetUsefulGlobals(This,data)	\
    ( (This)->lpVtbl -> GetUsefulGlobals(This,data) ) 

#define ISOSDacInterface_GetClrWatsonBuckets(This,thread,pGenericModeBlock)	\
    ( (This)->lpVtbl -> GetClrWatsonBuckets(This,thread,pGenericModeBlock) ) 

#define ISOSDacInterface_GetTLSIndex(This,pIndex)	\
    ( (This)->lpVtbl -> GetTLSIndex(This,pIndex) ) 

#define ISOSDacInterface_GetDacModuleHandle(This,phModule)	\
    ( (This)->lpVtbl -> GetDacModuleHandle(This,phModule) ) 

#define ISOSDacInterface_GetRCWData(This,addr,data)	\
    ( (This)->lpVtbl -> GetRCWData(This,addr,data) ) 

#define ISOSDacInterface_GetRCWInterfaces(This,rcw,count,interfaces,pNeeded)	\
    ( (This)->lpVtbl -> GetRCWInterfaces(This,rcw,count,interfaces,pNeeded) ) 

#define ISOSDacInterface_GetCCWData(This,ccw,data)	\
    ( (This)->lpVtbl -> GetCCWData(This,ccw,data) ) 

#define ISOSDacInterface_GetCCWInterfaces(This,ccw,count,interfaces,pNeeded)	\
    ( (This)->lpVtbl -> GetCCWInterfaces(This,ccw,count,interfaces,pNeeded) ) 

#define ISOSDacInterface_TraverseRCWCleanupList(This,cleanupListPtr,pCallback,token)	\
    ( (This)->lpVtbl -> TraverseRCWCleanupList(This,cleanupListPtr,pCallback,token) ) 

#define ISOSDacInterface_GetStackReferences(This,osThreadID,ppEnum)	\
    ( (This)->lpVtbl -> GetStackReferences(This,osThreadID,ppEnum) ) 

#define ISOSDacInterface_GetRegisterName(This,regName,count,buffer,pNeeded)	\
    ( (This)->lpVtbl -> GetRegisterName(This,regName,count,buffer,pNeeded) ) 

#define ISOSDacInterface_GetThreadAllocData(This,thread,data)	\
    ( (This)->lpVtbl -> GetThreadAllocData(This,thread,data) ) 

#define ISOSDacInterface_GetHeapAllocData(This,count,data,pNeeded)	\
    ( (This)->lpVtbl -> GetHeapAllocData(This,count,data,pNeeded) ) 

#define ISOSDacInterface_GetFailedAssemblyList(This,appDomain,count,values,pNeeded)	\
    ( (This)->lpVtbl -> GetFailedAssemblyList(This,appDomain,count,values,pNeeded) ) 

#define ISOSDacInterface_GetPrivateBinPaths(This,appDomain,count,paths,pNeeded)	\
    ( (This)->lpVtbl -> GetPrivateBinPaths(This,appDomain,count,paths,pNeeded) ) 

#define ISOSDacInterface_GetAssemblyLocation(This,assembly,count,location,pNeeded)	\
    ( (This)->lpVtbl -> GetAssemblyLocation(This,assembly,count,location,pNeeded) ) 

#define ISOSDacInterface_GetAppDomainConfigFile(This,appDomain,count,configFile,pNeeded)	\
    ( (This)->lpVtbl -> GetAppDomainConfigFile(This,appDomain,count,configFile,pNeeded) ) 

#define ISOSDacInterface_GetApplicationBase(This,appDomain,count,base,pNeeded)	\
    ( (This)->lpVtbl -> GetApplicationBase(This,appDomain,count,base,pNeeded) ) 

#define ISOSDacInterface_GetFailedAssemblyData(This,assembly,pContext,pResult)	\
    ( (This)->lpVtbl -> GetFailedAssemblyData(This,assembly,pContext,pResult) ) 

#define ISOSDacInterface_GetFailedAssemblyLocation(This,assesmbly,count,location,pNeeded)	\
    ( (This)->lpVtbl -> GetFailedAssemblyLocation(This,assesmbly,count,location,pNeeded) ) 

#define ISOSDacInterface_GetFailedAssemblyDisplayName(This,assembly,count,name,pNeeded)	\
    ( (This)->lpVtbl -> GetFailedAssemblyDisplayName(This,assembly,count,name,pNeeded) ) 

#endif /* COBJMACROS */


#endif 	/* C style interface */




#endif 	/* __ISOSDacInterface_INTERFACE_DEFINED__ */


#ifndef __ISOSDacInterface2_INTERFACE_DEFINED__
#define __ISOSDacInterface2_INTERFACE_DEFINED__

/* interface ISOSDacInterface2 */
/* [uuid][local][object] */ 


EXTERN_C const IID IID_ISOSDacInterface2;

#if defined(__cplusplus) && !defined(CINTERFACE)
    
    MIDL_INTERFACE("A16026EC-96F4-40BA-87FB-5575986FB7AF")
    ISOSDacInterface2 : public IUnknown
    {
    public:
        virtual HRESULT STDMETHODCALLTYPE GetObjectExceptionData( 
            CLRDATA_ADDRESS objAddr,
            struct DacpExceptionObjectData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE IsRCWDCOMProxy( 
            CLRDATA_ADDRESS rcwAddr,
            BOOL *isDCOMProxy) = 0;
        
    };
    
    
#else 	/* C style interface */

    typedef struct ISOSDacInterface2Vtbl
    {
        BEGIN_INTERFACE
        
        HRESULT ( STDMETHODCALLTYPE *QueryInterface )( 
            ISOSDacInterface2 * This,
            /* [in] */ REFIID riid,
            /* [annotation][iid_is][out] */ 
            _COM_Outptr_  void **ppvObject);
        
        ULONG ( STDMETHODCALLTYPE *AddRef )( 
            ISOSDacInterface2 * This);
        
        ULONG ( STDMETHODCALLTYPE *Release )( 
            ISOSDacInterface2 * This);
        
        HRESULT ( STDMETHODCALLTYPE *GetObjectExceptionData )( 
            ISOSDacInterface2 * This,
            CLRDATA_ADDRESS objAddr,
            struct DacpExceptionObjectData *data);
        
        HRESULT ( STDMETHODCALLTYPE *IsRCWDCOMProxy )( 
            ISOSDacInterface2 * This,
            CLRDATA_ADDRESS rcwAddr,
            BOOL *isDCOMProxy);
        
        END_INTERFACE
    } ISOSDacInterface2Vtbl;

    interface ISOSDacInterface2
    {
        CONST_VTBL struct ISOSDacInterface2Vtbl *lpVtbl;
    };

    

#ifdef COBJMACROS


#define ISOSDacInterface2_QueryInterface(This,riid,ppvObject)	\
    ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) 

#define ISOSDacInterface2_AddRef(This)	\
    ( (This)->lpVtbl -> AddRef(This) ) 

#define ISOSDacInterface2_Release(This)	\
    ( (This)->lpVtbl -> Release(This) ) 


#define ISOSDacInterface2_GetObjectExceptionData(This,objAddr,data)	\
    ( (This)->lpVtbl -> GetObjectExceptionData(This,objAddr,data) ) 

#define ISOSDacInterface2_IsRCWDCOMProxy(This,rcwAddr,isDCOMProxy)	\
    ( (This)->lpVtbl -> IsRCWDCOMProxy(This,rcwAddr,isDCOMProxy) ) 

#endif /* COBJMACROS */


#endif 	/* C style interface */




#endif 	/* __ISOSDacInterface2_INTERFACE_DEFINED__ */


#ifndef __ISOSDacInterface3_INTERFACE_DEFINED__
#define __ISOSDacInterface3_INTERFACE_DEFINED__

/* interface ISOSDacInterface3 */
/* [uuid][local][object] */ 


EXTERN_C const IID IID_ISOSDacInterface3;

#if defined(__cplusplus) && !defined(CINTERFACE)
    
    MIDL_INTERFACE("B08C5CDC-FD8A-49C5-AB38-5FEEF35235B4")
    ISOSDacInterface3 : public IUnknown
    {
    public:
        virtual HRESULT STDMETHODCALLTYPE GetGCInterestingInfoData( 
            CLRDATA_ADDRESS interestingInfoAddr,
            struct DacpGCInterestingInfoData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetGCInterestingInfoStaticData( 
            struct DacpGCInterestingInfoData *data) = 0;
        
        virtual HRESULT STDMETHODCALLTYPE GetGCGlobalMechanisms( 
            size_t *globalMechanisms) = 0;
        
    };
    
    
#else 	/* C style interface */

    typedef struct ISOSDacInterface3Vtbl
    {
        BEGIN_INTERFACE
        
        HRESULT ( STDMETHODCALLTYPE *QueryInterface )( 
            ISOSDacInterface3 * This,
            /* [in] */ REFIID riid,
            /* [annotation][iid_is][out] */ 
            _COM_Outptr_  void **ppvObject);
        
        ULONG ( STDMETHODCALLTYPE *AddRef )( 
            ISOSDacInterface3 * This);
        
        ULONG ( STDMETHODCALLTYPE *Release )( 
            ISOSDacInterface3 * This);
        
        HRESULT ( STDMETHODCALLTYPE *GetGCInterestingInfoData )( 
            ISOSDacInterface3 * This,
            CLRDATA_ADDRESS interestingInfoAddr,
            struct DacpGCInterestingInfoData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetGCInterestingInfoStaticData )( 
            ISOSDacInterface3 * This,
            struct DacpGCInterestingInfoData *data);
        
        HRESULT ( STDMETHODCALLTYPE *GetGCGlobalMechanisms )( 
            ISOSDacInterface3 * This,
            size_t *globalMechanisms);
        
        END_INTERFACE
    } ISOSDacInterface3Vtbl;

    interface ISOSDacInterface3
    {
        CONST_VTBL struct ISOSDacInterface3Vtbl *lpVtbl;
    };

    

#ifdef COBJMACROS


#define ISOSDacInterface3_QueryInterface(This,riid,ppvObject)	\
    ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) 

#define ISOSDacInterface3_AddRef(This)	\
    ( (This)->lpVtbl -> AddRef(This) ) 

#define ISOSDacInterface3_Release(This)	\
    ( (This)->lpVtbl -> Release(This) ) 


#define ISOSDacInterface3_GetGCInterestingInfoData(This,interestingInfoAddr,data)	\
    ( (This)->lpVtbl -> GetGCInterestingInfoData(This,interestingInfoAddr,data) ) 

#define ISOSDacInterface3_GetGCInterestingInfoStaticData(This,data)	\
    ( (This)->lpVtbl -> GetGCInterestingInfoStaticData(This,data) ) 

#define ISOSDacInterface3_GetGCGlobalMechanisms(This,globalMechanisms)	\
    ( (This)->lpVtbl -> GetGCGlobalMechanisms(This,globalMechanisms) ) 

#endif /* COBJMACROS */


#endif 	/* C style interface */




#endif 	/* __ISOSDacInterface3_INTERFACE_DEFINED__ */


#ifndef __ISOSDacInterface4_INTERFACE_DEFINED__
#define __ISOSDacInterface4_INTERFACE_DEFINED__

/* interface ISOSDacInterface4 */
/* [uuid][local][object] */ 


EXTERN_C const IID IID_ISOSDacInterface4;

#if defined(__cplusplus) && !defined(CINTERFACE)
    
    MIDL_INTERFACE("74B9D34C-A612-4B07-93DD-5462178FCE11")
    ISOSDacInterface4 : public IUnknown
    {
    public:
        virtual HRESULT STDMETHODCALLTYPE GetClrNotification( 
            CLRDATA_ADDRESS arguments[  ],
            int count,
            int *pNeeded) = 0;
        
    };
    
    
#else 	/* C style interface */

    typedef struct ISOSDacInterface4Vtbl
    {
        BEGIN_INTERFACE
        
        HRESULT ( STDMETHODCALLTYPE *QueryInterface )( 
            ISOSDacInterface4 * This,
            /* [in] */ REFIID riid,
            /* [annotation][iid_is][out] */ 
            _COM_Outptr_  void **ppvObject);
        
        ULONG ( STDMETHODCALLTYPE *AddRef )( 
            ISOSDacInterface4 * This);
        
        ULONG ( STDMETHODCALLTYPE *Release )( 
            ISOSDacInterface4 * This);
        
        HRESULT ( STDMETHODCALLTYPE *GetClrNotification )( 
            ISOSDacInterface4 * This,
            CLRDATA_ADDRESS arguments[  ],
            int count,
            int *pNeeded);
        
        END_INTERFACE
    } ISOSDacInterface4Vtbl;

    interface ISOSDacInterface4
    {
        CONST_VTBL struct ISOSDacInterface4Vtbl *lpVtbl;
    };

    

#ifdef COBJMACROS


#define ISOSDacInterface4_QueryInterface(This,riid,ppvObject)	\
    ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) 

#define ISOSDacInterface4_AddRef(This)	\
    ( (This)->lpVtbl -> AddRef(This) ) 

#define ISOSDacInterface4_Release(This)	\
    ( (This)->lpVtbl -> Release(This) ) 


#define ISOSDacInterface4_GetClrNotification(This,arguments,count,pNeeded)	\
    ( (This)->lpVtbl -> GetClrNotification(This,arguments,count,pNeeded) ) 

#endif /* COBJMACROS */


#endif 	/* C style interface */




#endif 	/* __ISOSDacInterface4_INTERFACE_DEFINED__ */


#ifndef __ISOSDacInterface5_INTERFACE_DEFINED__
#define __ISOSDacInterface5_INTERFACE_DEFINED__

/* interface ISOSDacInterface5 */
/* [uuid][local][object] */ 


EXTERN_C const IID IID_ISOSDacInterface5;

#if defined(__cplusplus) && !defined(CINTERFACE)
    
    MIDL_INTERFACE("127d6abe-6c86-4e48-8e7b-220781c58101")
    ISOSDacInterface5 : public IUnknown
    {
    public:
        virtual HRESULT STDMETHODCALLTYPE GetTieredVersions( 
            CLRDATA_ADDRESS methodDesc,
            int rejitId,
            struct DacpTieredVersionData *nativeCodeAddrs,
            int cNativeCodeAddrs,
            int *pcNativeCodeAddrs) = 0;
        
    };
    
    
#else 	/* C style interface */

    typedef struct ISOSDacInterface5Vtbl
    {
        BEGIN_INTERFACE
        
        HRESULT ( STDMETHODCALLTYPE *QueryInterface )( 
            ISOSDacInterface5 * This,
            /* [in] */ REFIID riid,
            /* [annotation][iid_is][out] */ 
            _COM_Outptr_  void **ppvObject);
        
        ULONG ( STDMETHODCALLTYPE *AddRef )( 
            ISOSDacInterface5 * This);
        
        ULONG ( STDMETHODCALLTYPE *Release )( 
            ISOSDacInterface5 * This);
        
        HRESULT ( STDMETHODCALLTYPE *GetTieredVersions )( 
            ISOSDacInterface5 * This,
            CLRDATA_ADDRESS methodDesc,
            int rejitId,
            CLRDATA_ADDRESS *nativeCodeAddrs,
            int cNativeCodeAddrs);
        
        END_INTERFACE
    } ISOSDacInterface5Vtbl;

    interface ISOSDacInterface5
    {
        CONST_VTBL struct ISOSDacInterface5Vtbl *lpVtbl;
    };

    

#ifdef COBJMACROS


#define ISOSDacInterface5_QueryInterface(This,riid,ppvObject)	\
    ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) 

#define ISOSDacInterface5_AddRef(This)	\
    ( (This)->lpVtbl -> AddRef(This) ) 

#define ISOSDacInterface5_Release(This)	\
    ( (This)->lpVtbl -> Release(This) ) 


#define ISOSDacInterface5_GetTieredVersions(This,methodDesc,rejitId,nativeCodeAddrs,cNativeCodeAddrs)	\
    ( (This)->lpVtbl -> GetTieredVersions(This,methodDesc,rejitId,nativeCodeAddrs,cNativeCodeAddrs) ) 

#endif /* COBJMACROS */


#endif 	/* C style interface */




#endif 	/* __ISOSDacInterface5_INTERFACE_DEFINED__ */

/* Additional Prototypes for ALL interfaces */

/* end of Additional Prototypes */

#ifdef __cplusplus
}
#endif

#endif