summaryrefslogtreecommitdiff
path: root/src/debug/di/symbolinfo.cpp
blob: f16a47b974a45d0324c7f36e5376e138c1427588 (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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.


// callbacks for diasymreader when using SymConverter


#include "stdafx.h"
#include "symbolinfo.h"
#include "ex.h"


SymbolInfo::SymbolInfo()
{
    m_cRef=1;
}

SymbolInfo::~SymbolInfo()
{
    for (COUNT_T i = 0;i < m_Documents.GetCount();i++)
    {
        if (m_Documents.Get(i) != NULL)
            ((ISymUnmanagedDocumentWriter*)m_Documents.Get(i))->Release();
    }
}

HRESULT SymbolInfo::AddDocument(DWORD id, ISymUnmanagedDocumentWriter* pDocument)
{
    CONTRACTL
    {
        NOTHROW;    
    }
    CONTRACTL_END;    

    HRESULT hr=S_OK;
    EX_TRY
    {
        while(m_Documents.GetCount()<=id)
            m_Documents.Append(NULL);
        _ASSERTE(m_Documents.Get(id) == NULL);
        m_Documents.Set(id,pDocument);
        pDocument->AddRef();
    }
    EX_CATCH_HRESULT(hr);
    return hr;
}

HRESULT SymbolInfo::MapDocument(DWORD id, ISymUnmanagedDocumentWriter** pDocument)
{
    CONTRACTL
    {
        NOTHROW;    
    }
    CONTRACTL_END;    

    HRESULT hr=E_FAIL;
    if(m_Documents.GetCount()>id)
    {
        *pDocument=(ISymUnmanagedDocumentWriter*)m_Documents.Get(id);
        if (*pDocument == NULL)
            return E_FAIL;
        (*pDocument)->AddRef();
        hr=S_OK;
    }
    return hr;
}

HRESULT SymbolInfo::SetClassProps(mdToken cls, DWORD flags, LPCWSTR wszName, mdToken parent)
{
    CONTRACTL
    {
        NOTHROW;    
    }
    CONTRACTL_END;    

    HRESULT hr=S_OK;
    EX_TRY
    {
        if(m_Classes.Lookup(cls) == NULL)
        {
            NewHolder<ClassProps> classProps (new ClassProps(cls,flags,wszName,parent));
            m_Classes.Add(classProps);
            classProps.SuppressRelease();
        }
    }
    EX_CATCH_HRESULT(hr);
    return hr;
}

HRESULT SymbolInfo::AddSignature(SBuffer& sig, mdSignature token)
{
    CONTRACTL
    {
        NOTHROW;    
    }
    CONTRACTL_END;    

    HRESULT hr=S_OK;
    EX_TRY
    {
        if ( m_Signatures.Lookup(sig) == NULL)
        {
            NewHolder<SignatureProps> sigProps (new SignatureProps(sig,token));
            m_Signatures.Add(sigProps);
            sigProps.SuppressRelease();
        }
    }
    EX_CATCH_HRESULT(hr);
    return hr;
}


SymbolInfo::ClassProps* SymbolInfo::FindClass(mdToken cls)
{
    WRAPPER_NO_CONTRACT;
    return m_Classes.Lookup(cls);
}

SymbolInfo::SignatureProps* SymbolInfo::FindSignature(SBuffer& sig)
{
    WRAPPER_NO_CONTRACT;
    return m_Signatures.Lookup(sig);
}

HRESULT SymbolInfo::AddScope(ULONG32 left, ULONG32 right)
{
    CONTRACTL
    {
        NOTHROW;    
    }
    CONTRACTL_END;    

    HRESULT hr=S_OK;
    EX_TRY
    {
        if (m_Scopes.Lookup(left) == NULL)
        {
            NewHolder<ScopeMap> map (new ScopeMap(left,right));
            m_Scopes.Add(map);
            map.SuppressRelease();
        }
    }
    EX_CATCH_HRESULT(hr);
    return hr;

}

HRESULT SymbolInfo::MapScope(ULONG32 left, ULONG32* pRight)
{
    CONTRACTL
    {
        NOTHROW;    
    }
    CONTRACTL_END;    

    ScopeMap* props = m_Scopes.Lookup(left);
    if(props == NULL)
    {
        _ASSERTE(FALSE);
        return E_FAIL;
    }
    *pRight=props->right;
    return S_OK;
}



HRESULT SymbolInfo::SetMethodProps(mdToken method, mdToken cls, LPCWSTR wszName)
{
    CONTRACTL
    {
        NOTHROW;    
    }
    CONTRACTL_END;    

    HRESULT hr=S_OK;
    EX_TRY
    {
        m_LastMethod.method=method;
        m_LastMethod.cls=cls;
        m_LastMethod.wszName=wszName;
        m_LastMethod.wszName.Normalize();
    }
    EX_CATCH_HRESULT(hr)
    return hr;
}


// IUnknown methods 
STDMETHODIMP SymbolInfo::QueryInterface (REFIID riid, LPVOID * ppvObj)
{
    CONTRACTL
    {
        NOTHROW;    
    }
    CONTRACTL_END;    

    if(ppvObj==NULL)
        return E_POINTER;

    if (riid == IID_IMetaDataEmit)
        *ppvObj=static_cast<IMetaDataEmit*>(this);
    else
    if (riid == IID_IMetaDataImport)
        *ppvObj=static_cast<IMetaDataImport*>(this);
    else
    if (riid == IID_IUnknown)
        *ppvObj=static_cast<IMetaDataImport*>(this);
    else
        return E_NOTIMPL;

    AddRef();
    return S_OK;
}

STDMETHODIMP_(ULONG) SymbolInfo::AddRef ()
{
    LIMITED_METHOD_CONTRACT;
    return InterlockedIncrement(&m_cRef);
}

STDMETHODIMP_(ULONG) SymbolInfo::Release ()
{
    LIMITED_METHOD_CONTRACT;
    ULONG retval=InterlockedDecrement(&m_cRef);
    if(retval==0)
        delete this;

    return retval;
}

STDMETHODIMP SymbolInfo::GetTypeDefProps (             // S_OK or error.
    mdTypeDef   td,                     // [IN] TypeDef token for inquiry.
  __out_ecount_part_opt(cchTypeDef, pchTypeDef)
    LPWSTR      szTypeDef,              // [OUT] Put name here.
    ULONG       cchTypeDef,             // [IN] size of name buffer in wide chars.
    ULONG       *pchTypeDef,            // [OUT] put size of name (wide chars) here.
    DWORD       *pdwTypeDefFlags,       // [OUT] Put flags here.
    mdToken     *ptkExtends)      // [OUT] Put base class TypeDef/TypeRef here.
{
    CONTRACTL
    {
        NOTHROW;    
        PRECONDITION(ptkExtends==NULL);
        PRECONDITION(CheckPointer(szTypeDef));
    }
    CONTRACTL_END;    

    if (szTypeDef == NULL)
        return E_POINTER;

    ClassProps* classInfo=FindClass(td);
    _ASSERTE(classInfo);
    if(classInfo == NULL)
        return E_UNEXPECTED;

    if(pdwTypeDefFlags)
        *pdwTypeDefFlags=classInfo->flags;


    SIZE_T cch=wcslen(classInfo->wszName)+1;
    if (cch > ULONG_MAX)
        return E_UNEXPECTED;
    *pchTypeDef=(ULONG)cch;
    
    if (cchTypeDef < cch)
        return HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER);
        
    wcscpy_s(szTypeDef,cchTypeDef,classInfo->wszName);

    if(pdwTypeDefFlags)
        *pdwTypeDefFlags=classInfo->flags;
    
    
    return S_OK;
}

STDMETHODIMP SymbolInfo::GetMethodProps ( 
    mdMethodDef mb,                     // The method for which to get props.   
    mdTypeDef   *pClass,                // Put method's class here. 
  __out_ecount_part_opt(cchMethod, *pchMethod)
    LPWSTR      szMethod,               // Put method's name here.  
    ULONG       cchMethod,              // Size of szMethod buffer in wide chars.   
    ULONG       *pchMethod,             // Put actual size here 
    DWORD       *pdwAttr,               // Put flags here.  
    PCCOR_SIGNATURE *ppvSigBlob,        // [OUT] point to the blob value of meta data   
    ULONG       *pcbSigBlob,            // [OUT] actual size of signature blob  
    ULONG       *pulCodeRVA,            // [OUT] codeRVA    
    DWORD       *pdwImplFlags)    // [OUT] Impl. Flags    
{
    CONTRACTL
    {
        NOTHROW;    
        PRECONDITION(m_LastMethod.method==mb);
        PRECONDITION(pClass!=NULL);
        PRECONDITION(pchMethod!=NULL);

        PRECONDITION(pdwAttr == NULL);
        PRECONDITION(ppvSigBlob == NULL);
        PRECONDITION(pcbSigBlob == NULL);
        PRECONDITION(pulCodeRVA == NULL);
        PRECONDITION(pdwImplFlags == NULL);
        PRECONDITION(CheckPointer(szMethod));
    }
    CONTRACTL_END;    

    if (szMethod == NULL)
        return E_POINTER;

    
    *pClass=m_LastMethod.cls;
    SIZE_T cch=wcslen(m_LastMethod.wszName)+1;
    if(cch > ULONG_MAX)
        return E_UNEXPECTED;
    *pchMethod=(ULONG)cch;
    
    if (cchMethod < cch)
        return HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER);
        
    wcscpy_s(szMethod,cchMethod,m_LastMethod.wszName);
    
    return S_OK;
}


STDMETHODIMP SymbolInfo::GetNestedClassProps (         // S_OK or error.
    mdTypeDef   tdNestedClass,          // [IN] NestedClass token.
    mdTypeDef   *ptdEnclosingClass) // [OUT] EnclosingClass token.
{
    CONTRACTL
    {
        NOTHROW;    
        PRECONDITION(CheckPointer(ptdEnclosingClass));
    }
    CONTRACTL_END;    

    if(ptdEnclosingClass == NULL)
        return E_POINTER;

    ClassProps* classInfo=FindClass(tdNestedClass);
    _ASSERTE(classInfo);
    if(classInfo == NULL)
        return E_UNEXPECTED;

    *ptdEnclosingClass=classInfo->tkEnclosing;
   
    
    return S_OK;

}


STDMETHODIMP SymbolInfo::GetTokenFromSig (             // S_OK or error.   
    PCCOR_SIGNATURE pvSig,              // [IN] Signature to define.    
    ULONG       cbSig,                  // [IN] Size of signature data. 
    mdSignature *pmsig)           // [OUT] returned signature token.  
{
    SBuffer sig;
    sig.SetImmutable(pvSig,cbSig);
    SignatureProps* sigProps=FindSignature(sig);
    _ASSERTE(sigProps);
    if(sigProps == NULL)
        return E_UNEXPECTED;
    
    *pmsig=sigProps->tkSig;
    return S_OK;
}


//////////////////////////////////////////////
// All the functions below are just stubs

STDMETHODIMP_(void) SymbolInfo::CloseEnum (HCORENUM hEnum)
{
    _ASSERTE(!"NYI");
}

STDMETHODIMP SymbolInfo::CountEnum (HCORENUM hEnum, ULONG *pulCount)
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::ResetEnum (HCORENUM hEnum, ULONG ulPos)
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::EnumTypeDefs (HCORENUM *phEnum, mdTypeDef rTypeDefs[],
                        ULONG cMax, ULONG *pcTypeDefs)
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::EnumInterfaceImpls (HCORENUM *phEnum, mdTypeDef td,
                        mdInterfaceImpl rImpls[], ULONG cMax,
                        ULONG* pcImpls)
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::EnumTypeRefs (HCORENUM *phEnum, mdTypeRef rTypeRefs[],
                        ULONG cMax, ULONG* pcTypeRefs)
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::FindTypeDefByName (           // S_OK or error.
    LPCWSTR     szTypeDef,              // [IN] Name of the Type.
    mdToken     tkEnclosingClass,       // [IN] TypeDef/TypeRef for Enclosing class.
    mdTypeDef   *ptd)             // [OUT] Put the TypeDef token here.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetScopeProps (               // S_OK or error.
  __out_ecount_part_opt(cchName, *pchName)
    LPWSTR      szName,                 // [OUT] Put the name here.
    ULONG       cchName,                // [IN] Size of name buffer in wide chars.
    ULONG       *pchName,               // [OUT] Put size of name (wide chars) here.
    GUID        *pmvid)           // [OUT, OPTIONAL] Put MVID here.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetModuleFromScope (          // S_OK.
    mdModule    *pmd)             // [OUT] Put mdModule token here.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}


STDMETHODIMP SymbolInfo::GetInterfaceImplProps (       // S_OK or error.
    mdInterfaceImpl iiImpl,             // [IN] InterfaceImpl token.
    mdTypeDef   *pClass,                // [OUT] Put implementing class token here.
    mdToken     *ptkIface)        // [OUT] Put implemented interface token here.  
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}
        
STDMETHODIMP SymbolInfo::GetTypeRefProps (             // S_OK or error.
    mdTypeRef   tr,                     // [IN] TypeRef token.
    mdToken     *ptkResolutionScope,    // [OUT] Resolution scope, ModuleRef or AssemblyRef.
  __out_ecount_part_opt(cchName, *pchName)
    LPWSTR      szName,                 // [OUT] Name of the TypeRef.
    ULONG       cchName,                // [IN] Size of buffer.
    ULONG       *pchName)         // [OUT] Size of Name.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::ResolveTypeRef (mdTypeRef tr, REFIID riid, IUnknown **ppIScope, mdTypeDef *ptd)
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}


STDMETHODIMP SymbolInfo::EnumMembers (                 // S_OK, S_FALSE, or error. 
    HCORENUM    *phEnum,                // [IN|OUT] Pointer to the enum.    
    mdTypeDef   cl,                     // [IN] TypeDef to scope the enumeration.   
    mdToken     rMembers[],             // [OUT] Put MemberDefs here.   
    ULONG       cMax,                   // [IN] Max MemberDefs to put.  
    ULONG       *pcTokens)        // [OUT] Put # put here.    
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::EnumMembersWithName (         // S_OK, S_FALSE, or error.             
    HCORENUM    *phEnum,                // [IN|OUT] Pointer to the enum.                
    mdTypeDef   cl,                     // [IN] TypeDef to scope the enumeration.   
    LPCWSTR     szName,                 // [IN] Limit results to those with this name.              
    mdToken     rMembers[],             // [OUT] Put MemberDefs here.                   
    ULONG       cMax,                   // [IN] Max MemberDefs to put.              
    ULONG       *pcTokens)        // [OUT] Put # put here.    
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::EnumMethods (                 // S_OK, S_FALSE, or error. 
    HCORENUM    *phEnum,                // [IN|OUT] Pointer to the enum.    
    mdTypeDef   cl,                     // [IN] TypeDef to scope the enumeration.   
    mdMethodDef rMethods[],             // [OUT] Put MethodDefs here.   
    ULONG       cMax,                   // [IN] Max MethodDefs to put.  
    ULONG       *pcTokens)        // [OUT] Put # put here.    
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::EnumMethodsWithName (         // S_OK, S_FALSE, or error.             
    HCORENUM    *phEnum,                // [IN|OUT] Pointer to the enum.                
    mdTypeDef   cl,                     // [IN] TypeDef to scope the enumeration.   
    LPCWSTR     szName,                 // [IN] Limit results to those with this name.              
    mdMethodDef rMethods[],             // [OU] Put MethodDefs here.    
    ULONG       cMax,                   // [IN] Max MethodDefs to put.              
    ULONG       *pcTokens)        // [OUT] Put # put here.    
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::EnumFields (                  // S_OK, S_FALSE, or error.  
    HCORENUM    *phEnum,                // [IN|OUT] Pointer to the enum.    
    mdTypeDef   cl,                     // [IN] TypeDef to scope the enumeration.   
    mdFieldDef  rFields[],              // [OUT] Put FieldDefs here.    
    ULONG       cMax,                   // [IN] Max FieldDefs to put.   
    ULONG       *pcTokens)        // [OUT] Put # put here.    
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::EnumFieldsWithName (          // S_OK, S_FALSE, or error.              
    HCORENUM    *phEnum,                // [IN|OUT] Pointer to the enum.                
    mdTypeDef   cl,                     // [IN] TypeDef to scope the enumeration.   
    LPCWSTR     szName,                 // [IN] Limit results to those with this name.              
    mdFieldDef  rFields[],              // [OUT] Put MemberDefs here.                   
    ULONG       cMax,                   // [IN] Max MemberDefs to put.              
    ULONG       *pcTokens)        // [OUT] Put # put here.    
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}


STDMETHODIMP SymbolInfo::EnumParams (                  // S_OK, S_FALSE, or error. 
    HCORENUM    *phEnum,                // [IN|OUT] Pointer to the enum.    
    mdMethodDef mb,                     // [IN] MethodDef to scope the enumeration. 
    mdParamDef  rParams[],              // [OUT] Put ParamDefs here.    
    ULONG       cMax,                   // [IN] Max ParamDefs to put.   
    ULONG       *pcTokens)        // [OUT] Put # put here.    
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::EnumMemberRefs (              // S_OK, S_FALSE, or error. 
    HCORENUM    *phEnum,                // [IN|OUT] Pointer to the enum.    
    mdToken     tkParent,               // [IN] Parent token to scope the enumeration.  
    mdMemberRef rMemberRefs[],          // [OUT] Put MemberRefs here.   
    ULONG       cMax,                   // [IN] Max MemberRefs to put.  
    ULONG       *pcTokens)        // [OUT] Put # put here.    
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::EnumMethodImpls (             // S_OK, S_FALSE, or error  
    HCORENUM    *phEnum,                // [IN|OUT] Pointer to the enum.    
    mdTypeDef   td,                     // [IN] TypeDef to scope the enumeration.   
    mdToken     rMethodBody[],          // [OUT] Put Method Body tokens here.   
    mdToken     rMethodDecl[],          // [OUT] Put Method Declaration tokens here.
    ULONG       cMax,                   // [IN] Max tokens to put.  
    ULONG       *pcTokens)        // [OUT] Put # put here.    
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::EnumPermissionSets (          // S_OK, S_FALSE, or error. 
    HCORENUM    *phEnum,                // [IN|OUT] Pointer to the enum.    
    mdToken     tk,                     // [IN] if !NIL, token to scope the enumeration.    
    DWORD       dwActions,              // [IN] if !0, return only these actions.   
    mdPermission rPermission[],         // [OUT] Put Permissions here.  
    ULONG       cMax,                   // [IN] Max Permissions to put. 
    ULONG       *pcTokens)        // [OUT] Put # put here.    
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::FindMember (  
    mdTypeDef   td,                     // [IN] given typedef   
    LPCWSTR     szName,                 // [IN] member name 
    PCCOR_SIGNATURE pvSigBlob,          // [IN] point to a blob value of CLR signature 
    ULONG       cbSigBlob,              // [IN] count of bytes in the signature blob    
    mdToken     *pmb)             // [OUT] matching memberdef 
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::FindMethod (  
    mdTypeDef   td,                     // [IN] given typedef   
    LPCWSTR     szName,                 // [IN] member name 
    PCCOR_SIGNATURE pvSigBlob,          // [IN] point to a blob value of CLR signature 
    ULONG       cbSigBlob,              // [IN] count of bytes in the signature blob    
    mdMethodDef *pmb)             // [OUT] matching memberdef 
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::FindField (   
    mdTypeDef   td,                     // [IN] given typedef   
    LPCWSTR     szName,                 // [IN] member name 
    PCCOR_SIGNATURE pvSigBlob,          // [IN] point to a blob value of CLR signature 
    ULONG       cbSigBlob,              // [IN] count of bytes in the signature blob    
    mdFieldDef  *pmb)             // [OUT] matching memberdef 
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::FindMemberRef (   
    mdTypeRef   td,                     // [IN] given typeRef   
    LPCWSTR     szName,                 // [IN] member name 
    PCCOR_SIGNATURE pvSigBlob,          // [IN] point to a blob value of CLR signature 
    ULONG       cbSigBlob,              // [IN] count of bytes in the signature blob    
    mdMemberRef *pmr)             // [OUT] matching memberref 
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}


STDMETHODIMP SymbolInfo::GetMemberRefProps (           // S_OK or error.   
    mdMemberRef mr,                     // [IN] given memberref 
    mdToken     *ptk,                   // [OUT] Put classref or classdef here. 
  __out_ecount_part_opt(cchMember, *pchMember)
    LPWSTR      szMember,               // [OUT] buffer to fill for member's name   
    ULONG       cchMember,              // [IN] the count of char of szMember   
    ULONG       *pchMember,             // [OUT] actual count of char in member name    
    PCCOR_SIGNATURE *ppvSigBlob,        // [OUT] point to meta data blob value  
    ULONG       *pbSig)           // [OUT] actual size of signature blob  
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::EnumProperties (              // S_OK, S_FALSE, or error. 
    HCORENUM    *phEnum,                // [IN|OUT] Pointer to the enum.    
    mdTypeDef   td,                     // [IN] TypeDef to scope the enumeration.   
    mdProperty  rProperties[],          // [OUT] Put Properties here.   
    ULONG       cMax,                   // [IN] Max properties to put.  
    ULONG       *pcProperties)    // [OUT] Put # put here.    
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::EnumEvents (                  // S_OK, S_FALSE, or error. 
    HCORENUM    *phEnum,                // [IN|OUT] Pointer to the enum.    
    mdTypeDef   td,                     // [IN] TypeDef to scope the enumeration.   
    mdEvent     rEvents[],              // [OUT] Put events here.
    ULONG       cMax,                   // [IN] Max events to put.  
    ULONG       *pcEvents)        // [OUT] Put # put here.    
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetEventProps (               // S_OK, S_FALSE, or error. 
    mdEvent     ev,                     // [IN] event token 
    mdTypeDef   *pClass,                // [OUT] typedef containing the event declarion.    
    LPCWSTR     szEvent,                // [OUT] Event name 
    ULONG       cchEvent,               // [IN] the count of wchar of szEvent   
    ULONG       *pchEvent,              // [OUT] actual count of wchar for event's name 
    DWORD       *pdwEventFlags,         // [OUT] Event flags.   
    mdToken     *ptkEventType,          // [OUT] EventType class    
    mdMethodDef *pmdAddOn,              // [OUT] AddOn method of the event  
    mdMethodDef *pmdRemoveOn,           // [OUT] RemoveOn method of the event   
    mdMethodDef *pmdFire,               // [OUT] Fire method of the event   
    mdMethodDef rmdOtherMethod[],       // [OUT] other method of the event  
    ULONG       cMax,                   // [IN] size of rmdOtherMethod  
    ULONG       *pcOtherMethod)   // [OUT] total number of other method of this event 
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::EnumMethodSemantics (         // S_OK, S_FALSE, or error. 
    HCORENUM    *phEnum,                // [IN|OUT] Pointer to the enum.    
    mdMethodDef mb,                     // [IN] MethodDef to scope the enumeration. 
    mdToken     rEventProp[],           // [OUT] Put Event/Property here.   
    ULONG       cMax,                   // [IN] Max properties to put.  
    ULONG       *pcEventProp)     // [OUT] Put # put here.    
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetMethodSemantics (          // S_OK, S_FALSE, or error. 
    mdMethodDef mb,                     // [IN] method token    
    mdToken     tkEventProp,            // [IN] event/property token.   
    DWORD       *pdwSemanticsFlags) // [OUT] the role flags for the method/propevent pair 
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetClassLayout ( 
    mdTypeDef   td,                     // [IN] give typedef    
    DWORD       *pdwPackSize,           // [OUT] 1, 2, 4, 8, or 16  
    COR_FIELD_OFFSET rFieldOffset[],    // [OUT] field offset array 
    ULONG       cMax,                   // [IN] size of the array   
    ULONG       *pcFieldOffset,         // [OUT] needed array size  
    ULONG       *pulClassSize)        // [OUT] the size of the class  
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetFieldMarshal (    
    mdToken     tk,                     // [IN] given a field's memberdef   
    PCCOR_SIGNATURE *ppvNativeType,     // [OUT] native type of this field  
    ULONG       *pcbNativeType)   // [OUT] the count of bytes of *ppvNativeType   
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetRVA (                      // S_OK or error.   
    mdToken     tk,                     // Member for which to set offset   
    ULONG       *pulCodeRVA,            // The offset   
    DWORD       *pdwImplFlags)    // the implementation flags 
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetPermissionSetProps (  
    mdPermission pm,                    // [IN] the permission token.   
    DWORD       *pdwAction,             // [OUT] CorDeclSecurity.   
    void const  **ppvPermission,        // [OUT] permission blob.   
    ULONG       *pcbPermission)   // [OUT] count of bytes of pvPermission.    
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetSigFromToken (             // S_OK or error.   
    mdSignature mdSig,                  // [IN] Signature token.    
    PCCOR_SIGNATURE *ppvSig,            // [OUT] return pointer to token.   
    ULONG       *pcbSig)          // [OUT] return size of signature.  
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetModuleRefProps (           // S_OK or error.   
    mdModuleRef mur,                    // [IN] moduleref token.    
  __out_ecount_part_opt(cchName, *pchName)
    LPWSTR      szName,                 // [OUT] buffer to fill with the moduleref name.    
    ULONG       cchName,                // [IN] size of szName in wide characters.  
    ULONG       *pchName)         // [OUT] actual count of characters in the name.    
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::EnumModuleRefs (              // S_OK or error.   
    HCORENUM    *phEnum,                // [IN|OUT] pointer to the enum.    
    mdModuleRef rModuleRefs[],          // [OUT] put modulerefs here.   
    ULONG       cmax,                   // [IN] max memberrefs to put.  
    ULONG       *pcModuleRefs)    // [OUT] put # put here.    
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetTypeSpecFromToken (        // S_OK or error.   
    mdTypeSpec typespec,                // [IN] TypeSpec token.    
    PCCOR_SIGNATURE *ppvSig,            // [OUT] return pointer to TypeSpec signature  
    ULONG       *pcbSig)          // [OUT] return size of signature.  
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetNameFromToken (            // Not Recommended! May be removed!
    mdToken     tk,                     // [IN] Token to get name from.  Must have a name.
    MDUTF8CSTR  *pszUtf8NamePtr)  // [OUT] Return pointer to UTF8 name in heap.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::EnumUnresolvedMethods (       // S_OK, S_FALSE, or error. 
    HCORENUM    *phEnum,                // [IN|OUT] Pointer to the enum.    
    mdToken     rMethods[],             // [OUT] Put MemberDefs here.   
    ULONG       cMax,                   // [IN] Max MemberDefs to put.  
    ULONG       *pcTokens)        // [OUT] Put # put here.    
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetUserString (               // S_OK or error.
    mdString    stk,                    // [IN] String token.
  __out_ecount_part_opt(cchString, *pchString)
    LPWSTR      szString,               // [OUT] Copy of string.
    ULONG       cchString,              // [IN] Max chars of room in szString.
    ULONG       *pchString)       // [OUT] How many chars in actual string.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetPinvokeMap (               // S_OK or error.
    mdToken     tk,                     // [IN] FieldDef or MethodDef.
    DWORD       *pdwMappingFlags,       // [OUT] Flags used for mapping.
  __out_ecount_part_opt(cchImportName, *pchImportName)
    LPWSTR      szImportName,           // [OUT] Import name.
    ULONG       cchImportName,          // [IN] Size of the name buffer.
    ULONG       *pchImportName,         // [OUT] Actual number of characters stored.
    mdModuleRef *pmrImportDLL)    // [OUT] ModuleRef token for the target DLL.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::EnumSignatures (              // S_OK or error.
    HCORENUM    *phEnum,                // [IN|OUT] pointer to the enum.    
    mdSignature rSignatures[],          // [OUT] put signatures here.   
    ULONG       cmax,                   // [IN] max signatures to put.  
    ULONG       *pcSignatures)    // [OUT] put # put here.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::EnumTypeSpecs (               // S_OK or error.
    HCORENUM    *phEnum,                // [IN|OUT] pointer to the enum.    
    mdTypeSpec  rTypeSpecs[],           // [OUT] put TypeSpecs here.   
    ULONG       cmax,                   // [IN] max TypeSpecs to put.  
    ULONG       *pcTypeSpecs)     // [OUT] put # put here.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::EnumUserStrings (             // S_OK or error.
    HCORENUM    *phEnum,                // [IN/OUT] pointer to the enum.
    mdString    rStrings[],             // [OUT] put Strings here.
    ULONG       cmax,                   // [IN] max Strings to put.
    ULONG       *pcStrings)       // [OUT] put # put here.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetParamForMethodIndex (      // S_OK or error.
    mdMethodDef md,                     // [IN] Method token.
    ULONG       ulParamSeq,             // [IN] Parameter sequence.
    mdParamDef  *ppd)             // [IN] Put Param token here.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::EnumCustomAttributes (        // S_OK or error.
    HCORENUM    *phEnum,                // [IN, OUT] COR enumerator.
    mdToken     tk,                     // [IN] Token to scope the enumeration, 0 for all.
    mdToken     tkType,                 // [IN] Type of interest, 0 for all.
    mdCustomAttribute rCustomAttributes[], // [OUT] Put custom attribute tokens here.
    ULONG       cMax,                   // [IN] Size of rCustomAttributes.
    ULONG       *pcCustomAttributes)  // [OUT, OPTIONAL] Put count of token values here.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetCustomAttributeProps (     // S_OK or error.
    mdCustomAttribute cv,               // [IN] CustomAttribute token.
    mdToken     *ptkObj,                // [OUT, OPTIONAL] Put object token here.
    mdToken     *ptkType,               // [OUT, OPTIONAL] Put AttrType token here.
    void const  **ppBlob,               // [OUT, OPTIONAL] Put pointer to data here.
    ULONG       *pcbSize)         // [OUT, OPTIONAL] Put size of date here.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::FindTypeRef (   
    mdToken     tkResolutionScope,      // [IN] ModuleRef, AssemblyRef or TypeRef.
    LPCWSTR     szName,                 // [IN] TypeRef Name.
    mdTypeRef   *ptr)             // [OUT] matching TypeRef.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetMemberProps (  
    mdToken     mb,                     // The member for which to get props.   
    mdTypeDef   *pClass,                // Put member's class here. 
  __out_ecount_part_opt(cchMember, *pchMember)
    LPWSTR      szMember,               // Put member's name here.  
    ULONG       cchMember,              // Size of szMember buffer in wide chars.   
    ULONG       *pchMember,             // Put actual size here 
    DWORD       *pdwAttr,               // Put flags here.  
    PCCOR_SIGNATURE *ppvSigBlob,        // [OUT] point to the blob value of meta data   
    ULONG       *pcbSigBlob,            // [OUT] actual size of signature blob  
    ULONG       *pulCodeRVA,            // [OUT] codeRVA    
    DWORD       *pdwImplFlags,          // [OUT] Impl. Flags    
    DWORD       *pdwCPlusTypeFlag,      // [OUT] flag for value type. selected ELEMENT_TYPE_*   
    UVCP_CONSTANT *ppValue,             // [OUT] constant value 
    ULONG       *pcchValue)       // [OUT] size of constant string in chars, 0 for non-strings.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetFieldProps (  
    mdFieldDef  mb,                     // The field for which to get props.    
    mdTypeDef   *pClass,                // Put field's class here.  
  __out_ecount_part_opt(cchField, *pchField)
    LPWSTR      szField,                // Put field's name here.   
    ULONG       cchField,               // Size of szField buffer in wide chars.    
    ULONG       *pchField,              // Put actual size here 
    DWORD       *pdwAttr,               // Put flags here.  
    PCCOR_SIGNATURE *ppvSigBlob,        // [OUT] point to the blob value of meta data   
    ULONG       *pcbSigBlob,            // [OUT] actual size of signature blob  
    DWORD       *pdwCPlusTypeFlag,      // [OUT] flag for value type. selected ELEMENT_TYPE_*   
    UVCP_CONSTANT *ppValue,             // [OUT] constant value 
    ULONG       *pcchValue)       // [OUT] size of constant string in chars, 0 for non-strings.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetPropertyProps (            // S_OK, S_FALSE, or error. 
    mdProperty  prop,                   // [IN] property token  
    mdTypeDef   *pClass,                // [OUT] typedef containing the property declarion. 
    LPCWSTR     szProperty,             // [OUT] Property name  
    ULONG       cchProperty,            // [IN] the count of wchar of szProperty    
    ULONG       *pchProperty,           // [OUT] actual count of wchar for property name    
    DWORD       *pdwPropFlags,          // [OUT] property flags.    
    PCCOR_SIGNATURE *ppvSig,            // [OUT] property type. pointing to meta data internal blob 
    ULONG       *pbSig,                 // [OUT] count of bytes in *ppvSig  
    DWORD       *pdwCPlusTypeFlag,      // [OUT] flag for value type. selected ELEMENT_TYPE_*   
    UVCP_CONSTANT *ppDefaultValue,      // [OUT] constant value 
    ULONG       *pcchDefaultValue,      // [OUT] size of constant string in chars, 0 for non-strings.
    mdMethodDef *pmdSetter,             // [OUT] setter method of the property  
    mdMethodDef *pmdGetter,             // [OUT] getter method of the property  
    mdMethodDef rmdOtherMethod[],       // [OUT] other method of the property   
    ULONG       cMax,                   // [IN] size of rmdOtherMethod  
    ULONG       *pcOtherMethod)   // [OUT] total number of other method of this property  
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetParamProps (               // S_OK or error.
    mdParamDef  tk,                     // [IN]The Parameter.
    mdMethodDef *pmd,                   // [OUT] Parent Method token.
    ULONG       *pulSequence,           // [OUT] Parameter sequence.
  __out_ecount_part_opt(cchName, *pchName)
    LPWSTR      szName,                 // [OUT] Put name here.
    ULONG       cchName,                // [OUT] Size of name buffer.
    ULONG       *pchName,               // [OUT] Put actual size of name here.
    DWORD       *pdwAttr,               // [OUT] Put flags here.
    DWORD       *pdwCPlusTypeFlag,      // [OUT] Flag for value type. selected ELEMENT_TYPE_*.
    UVCP_CONSTANT *ppValue,             // [OUT] Constant value.
    ULONG       *pcchValue)       // [OUT] size of constant string in chars, 0 for non-strings.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetCustomAttributeByName (    // S_OK or error.
    mdToken     tkObj,                  // [IN] Object with Custom Attribute.
    LPCWSTR     szName,                 // [IN] Name of desired Custom Attribute.
    const void  **ppData,               // [OUT] Put pointer to data here.
    ULONG       *pcbData)         // [OUT] Put size of data here.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP_(BOOL)  SymbolInfo::IsValidToken (         // True or False.
    mdToken     tk)               // [IN] Given token.
{
    _ASSERTE(!"NYI");
    return FALSE;
}


STDMETHODIMP SymbolInfo::GetNativeCallConvFromSig (    // S_OK or error.
    void const  *pvSig,                 // [IN] Pointer to signature.
    ULONG       cbSig,                  // [IN] Count of signature bytes.
    ULONG       *pCallConv)       // [OUT] Put calling conv here (see CorPinvokemap).                                                                                        
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::IsGlobal (                    // S_OK or error.
    mdToken     pd,                     // [IN] Type, Field, or Method token.
    int         *pbGlobal)        // [OUT] Put 1 if global, 0 otherwise.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}


// IMetaDataEmit functions

STDMETHODIMP SymbolInfo::SetModuleProps (              // S_OK or error.
    LPCWSTR     szName)           // [IN] If not NULL, the name of the module to set.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::Save (                        // S_OK or error.
    LPCWSTR     szFile,                 // [IN] The filename to save to.
    DWORD       dwSaveFlags)      // [IN] Flags for the save.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::SaveToStream (                // S_OK or error.
    IStream     *pIStream,              // [IN] A writable stream to save to.
    DWORD       dwSaveFlags)      // [IN] Flags for the save.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetSaveSize (                 // S_OK or error.
    CorSaveSize fSave,                  // [IN] cssAccurate or cssQuick.
    DWORD       *pdwSaveSize)     // [OUT] Put the size here.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::DefineTypeDef (               // S_OK or error.
    LPCWSTR     szTypeDef,              // [IN] Name of TypeDef
    DWORD       dwTypeDefFlags,         // [IN] CustomAttribute flags
    mdToken     tkExtends,              // [IN] extends this TypeDef or typeref 
    mdToken     rtkImplements[],        // [IN] Implements interfaces
    mdTypeDef   *ptd)             // [OUT] Put TypeDef token here
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::DefineNestedType (            // S_OK or error.
    LPCWSTR     szTypeDef,              // [IN] Name of TypeDef
    DWORD       dwTypeDefFlags,         // [IN] CustomAttribute flags
    mdToken     tkExtends,              // [IN] extends this TypeDef or typeref 
    mdToken     rtkImplements[],        // [IN] Implements interfaces
    mdTypeDef   tdEncloser,             // [IN] TypeDef token of the enclosing type.
    mdTypeDef   *ptd)             // [OUT] Put TypeDef token here
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::SetHandler (                  // S_OK.
    IUnknown    *pUnk)            // [IN] The new error handler.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::DefineMethod (                // S_OK or error. 
    mdTypeDef   td,                     // Parent TypeDef   
    LPCWSTR     szName,                 // Name of member   
    DWORD       dwMethodFlags,          // Member attributes    
    PCCOR_SIGNATURE pvSigBlob,          // [IN] point to a blob value of CLR signature 
    ULONG       cbSigBlob,              // [IN] count of bytes in the signature blob
    ULONG       ulCodeRVA,  
    DWORD       dwImplFlags,    
    mdMethodDef *pmd)             // Put member token here     
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::DefineMethodImpl (            // S_OK or error.   
    mdTypeDef   td,                     // [IN] The class implementing the method   
    mdToken     tkBody,                 // [IN] Method body - MethodDef or MethodRef
    mdToken     tkDecl)           // [IN] Method declaration - MethodDef or MethodRef
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::DefineTypeRefByName (         // S_OK or error.   
    mdToken     tkResolutionScope,      // [IN] ModuleRef, AssemblyRef or TypeRef.
    LPCWSTR     szName,                 // [IN] Name of the TypeRef.
    mdTypeRef   *ptr)             // [OUT] Put TypeRef token here.    
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::DefineImportType (            // S_OK or error.   
    IMetaDataAssemblyImport *pAssemImport,  // [IN] Assembly containing the TypeDef.
    const void  *pbHashValue,           // [IN] Hash Blob for Assembly.
    ULONG       cbHashValue,            // [IN] Count of bytes.
    IMetaDataImport *pImport,           // [IN] Scope containing the TypeDef.   
    mdTypeDef   tdImport,               // [IN] The imported TypeDef.   
    IMetaDataAssemblyEmit *pAssemEmit,  // [IN] Assembly into which the TypeDef is imported.
    mdTypeRef   *ptr)             // [OUT] Put TypeRef token here.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::DefineMemberRef (             // S_OK or error    
    mdToken     tkImport,               // [IN] ClassRef or ClassDef importing a member.    
    LPCWSTR     szName,                 // [IN] member's name   
    PCCOR_SIGNATURE pvSigBlob,          // [IN] point to a blob value of CLR signature 
    ULONG       cbSigBlob,              // [IN] count of bytes in the signature blob    
    mdMemberRef *pmr)             // [OUT] memberref token    
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::DefineImportMember (          // S_OK or error.   
    IMetaDataAssemblyImport *pAssemImport,  // [IN] Assembly containing the Member.
    const void  *pbHashValue,           // [IN] Hash Blob for Assembly.
    ULONG       cbHashValue,            // [IN] Count of bytes.
    IMetaDataImport *pImport,           // [IN] Import scope, with member.  
    mdToken     mbMember,               // [IN] Member in import scope.   
    IMetaDataAssemblyEmit *pAssemEmit,  // [IN] Assembly into which the Member is imported.
    mdToken     tkParent,               // [IN] Classref or classdef in emit scope.    
    mdMemberRef *pmr)             // [OUT] Put member ref here.   
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::DefineEvent(    
    mdTypeDef   td,                     // [IN] the class/interface on which the event is being defined 
    LPCWSTR     szEvent,                // [IN] Name of the event   
    DWORD       dwEventFlags,           // [IN] CorEventAttr    
    mdToken     tkEventType,            // [IN] a reference (mdTypeRef or mdTypeRef) to the Event class 
    mdMethodDef mdAddOn,                // [IN] required add method 
    mdMethodDef mdRemoveOn,             // [IN] required remove method  
    mdMethodDef mdFire,                 // [IN] optional fire method    
    mdMethodDef rmdOtherMethods[],      // [IN] optional array of other methods associate with the event    
    mdEvent     *pmdEvent)        // [OUT] output event token 
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::SetClassLayout(   
    mdTypeDef   td,                     // [IN] typedef 
    DWORD       dwPackSize,             // [IN] packing size specified as 1, 2, 4, 8, or 16 
    COR_FIELD_OFFSET rFieldOffsets[],   // [IN] array of layout specification   
    ULONG       ulClassSize)      // [IN] size of the class   
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::DeleteClassLayout(
    mdTypeDef   td)               // [IN] typedef whose layout is to be deleted.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::SetFieldMarshal(    
    mdToken     tk,                     // [IN] given a fieldDef or paramDef token  
    PCCOR_SIGNATURE pvNativeType,       // [IN] native type specification   
    ULONG       cbNativeType)     // [IN] count of bytes of pvNativeType  
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::DeleteFieldMarshal(
    mdToken     tk)               // [IN] given a fieldDef or paramDef token
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::DefinePermissionSet(    
    mdToken     tk,                     // [IN] the object to be decorated. 
    DWORD       dwAction,               // [IN] CorDeclSecurity.    
    void const  *pvPermission,          // [IN] permission blob.    
    ULONG       cbPermission,           // [IN] count of bytes of pvPermission. 
    mdPermission *ppm)            // [OUT] returned permission token. 
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::SetRVA (                      // S_OK or error.   
    mdMethodDef md,                     // [IN] Method for which to set offset  
    ULONG       ulRVA)            // [IN] The offset    
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::DefineModuleRef (             // S_OK or error.   
    LPCWSTR     szName,                 // [IN] DLL name    
    mdModuleRef *pmur)            // [OUT] returned   
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::SetParent (                   // S_OK or error.   
    mdMemberRef mr,                     // [IN] Token for the ref to be fixed up.   
    mdToken     tk)               // [IN] The ref parent. 
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::GetTokenFromTypeSpec (        // S_OK or error.   
    PCCOR_SIGNATURE pvSig,              // [IN] TypeSpec Signature to define.  
    ULONG       cbSig,                  // [IN] Size of signature data. 
    mdTypeSpec *ptypespec)        // [OUT] returned TypeSpec token.  
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::SaveToMemory (                // S_OK or error.
    void        *pbData,                // [OUT] Location to write data.
    ULONG       cbData)           // [IN] Max size of data buffer.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::DefineUserString (            // Return code.
    LPCWSTR szString,                   // [IN] User literal string.
    ULONG       cchString,              // [IN] Length of string.
    mdString    *pstk)            // [OUT] String token.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::DeleteToken (                 // Return code.
    mdToken     tkObj)            // [IN] The token to be deleted
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::SetMethodProps (              // S_OK or error.
    mdMethodDef md,                     // [IN] The MethodDef.
    DWORD       dwMethodFlags,          // [IN] Method attributes.
    ULONG       ulCodeRVA,              // [IN] Code RVA.
    DWORD       dwImplFlags)      // [IN] Impl flags.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::SetTypeDefProps (             // S_OK or error.
    mdTypeDef   td,                     // [IN] The TypeDef.
    DWORD       dwTypeDefFlags,         // [IN] TypeDef flags.
    mdToken     tkExtends,              // [IN] Base TypeDef or TypeRef.
    mdToken     rtkImplements[])  // [IN] Implemented interfaces.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::SetEventProps (               // S_OK or error.
    mdEvent     ev,                     // [IN] The event token.
    DWORD       dwEventFlags,           // [IN] CorEventAttr.
    mdToken     tkEventType,            // [IN] A reference (mdTypeRef or mdTypeRef) to the Event class.
    mdMethodDef mdAddOn,                // [IN] Add method.
    mdMethodDef mdRemoveOn,             // [IN] Remove method.
    mdMethodDef mdFire,                 // [IN] Fire method.
    mdMethodDef rmdOtherMethods[])// [IN] Array of other methods associate with the event.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::SetPermissionSetProps (       // S_OK or error.
    mdToken     tk,                     // [IN] The object to be decorated.
    DWORD       dwAction,               // [IN] CorDeclSecurity.
    void const  *pvPermission,          // [IN] Permission blob.
    ULONG       cbPermission,           // [IN] Count of bytes of pvPermission.
    mdPermission *ppm)            // [OUT] Permission token.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::DefinePinvokeMap (            // Return code.
    mdToken     tk,                     // [IN] FieldDef or MethodDef.
    DWORD       dwMappingFlags,         // [IN] Flags used for mapping.
    LPCWSTR     szImportName,           // [IN] Import name.
    mdModuleRef mrImportDLL)      // [IN] ModuleRef token for the target DLL.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::SetPinvokeMap (               // Return code.
    mdToken     tk,                     // [IN] FieldDef or MethodDef.
    DWORD       dwMappingFlags,         // [IN] Flags used for mapping.
    LPCWSTR     szImportName,           // [IN] Import name.
    mdModuleRef mrImportDLL)      // [IN] ModuleRef token for the target DLL.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::DeletePinvokeMap (            // Return code.
    mdToken     tk)               // [IN] FieldDef or MethodDef.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

// New CustomAttribute functions.
STDMETHODIMP SymbolInfo::DefineCustomAttribute (       // Return code.
    mdToken     tkObj,                  // [IN] The object to put the value on.
    mdToken     tkType,                 // [IN] Type of the CustomAttribute (TypeRef/TypeDef).
    void const  *pCustomAttribute,      // [IN] The custom value data.
    ULONG       cbCustomAttribute,      // [IN] The custom value data length.
    mdCustomAttribute *pcv)       // [OUT] The custom value token value on return.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::SetCustomAttributeValue (     // Return code.
    mdCustomAttribute pcv,              // [IN] The custom value token whose value to replace.
    void const  *pCustomAttribute,      // [IN] The custom value data.
    ULONG       cbCustomAttribute)// [IN] The custom value data length.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::DefineField (                 // S_OK or error. 
    mdTypeDef   td,                     // Parent TypeDef   
    LPCWSTR     szName,                 // Name of member   
    DWORD       dwFieldFlags,           // Member attributes    
    PCCOR_SIGNATURE pvSigBlob,          // [IN] point to a blob value of CLR signature 
    ULONG       cbSigBlob,              // [IN] count of bytes in the signature blob    
    DWORD       dwCPlusTypeFlag,        // [IN] flag for value type. selected ELEMENT_TYPE_*    
    void const  *pValue,                // [IN] constant value  
    ULONG       cchValue,               // [IN] size of constant value (string, in wide chars).
    mdFieldDef  *pmd)             // [OUT] Put member token here    
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::DefineProperty ( 
    mdTypeDef   td,                     // [IN] the class/interface on which the property is being defined  
    LPCWSTR     szProperty,             // [IN] Name of the property    
    DWORD       dwPropFlags,            // [IN] CorPropertyAttr 
    PCCOR_SIGNATURE pvSig,              // [IN] the required type signature 
    ULONG       cbSig,                  // [IN] the size of the type signature blob 
    DWORD       dwCPlusTypeFlag,        // [IN] flag for value type. selected ELEMENT_TYPE_*    
    void const  *pValue,                // [IN] constant value  
    ULONG       cchValue,               // [IN] size of constant value (string, in wide chars).
    mdMethodDef mdSetter,               // [IN] optional setter of the property 
    mdMethodDef mdGetter,               // [IN] optional getter of the property 
    mdMethodDef rmdOtherMethods[],      // [IN] an optional array of other methods  
    mdProperty  *pmdProp)         // [OUT] output property token  
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::DefineParam (
    mdMethodDef md,                     // [IN] Owning method   
    ULONG       ulParamSeq,             // [IN] Which param 
    LPCWSTR     szName,                 // [IN] Optional param name 
    DWORD       dwParamFlags,           // [IN] Optional param flags    
    DWORD       dwCPlusTypeFlag,        // [IN] flag for value type. selected ELEMENT_TYPE_*    
    void const  *pValue,                // [IN] constant value
    ULONG       cchValue,               // [IN] size of constant value (string, in wide chars).
    mdParamDef  *ppd)             // [OUT] Put param token here   
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::SetFieldProps (               // S_OK or error.
    mdFieldDef  fd,                     // [IN] The FieldDef.
    DWORD       dwFieldFlags,           // [IN] Field attributes.
    DWORD       dwCPlusTypeFlag,        // [IN] Flag for the value type, selected ELEMENT_TYPE_*
    void const  *pValue,                // [IN] Constant value.
    ULONG       cchValue)         // [IN] size of constant value (string, in wide chars).
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::SetPropertyProps (            // S_OK or error.
    mdProperty  pr,                     // [IN] Property token.
    DWORD       dwPropFlags,            // [IN] CorPropertyAttr.
    DWORD       dwCPlusTypeFlag,        // [IN] Flag for value type, selected ELEMENT_TYPE_*
    void const  *pValue,                // [IN] Constant value.
    ULONG       cchValue,               // [IN] size of constant value (string, in wide chars).
    mdMethodDef mdSetter,               // [IN] Setter of the property.
    mdMethodDef mdGetter,               // [IN] Getter of the property.
    mdMethodDef rmdOtherMethods[])// [IN] Array of other methods.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::SetParamProps (               // Return code.
    mdParamDef  pd,                     // [IN] Param token.   
    LPCWSTR     szName,                 // [IN] Param name.
    DWORD       dwParamFlags,           // [IN] Param flags.
    DWORD       dwCPlusTypeFlag,        // [IN] Flag for value type. selected ELEMENT_TYPE_*.
    void const  *pValue,                // [OUT] Constant value.
    ULONG       cchValue)         // [IN] size of constant value (string, in wide chars).
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

// Specialized Custom Attributes for security.
STDMETHODIMP SymbolInfo::DefineSecurityAttributeSet (  // Return code.
    mdToken     tkObj,                  // [IN] Class or method requiring security attributes.
    COR_SECATTR rSecAttrs[],            // [IN] Array of security attribute descriptions.
    ULONG       cSecAttrs,              // [IN] Count of elements in above array.
    ULONG       *pulErrorAttr)    // [OUT] On error, index of attribute causing problem.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::ApplyEditAndContinue (        // S_OK or error.
    IUnknown    *pImport)         // [IN] Metadata from the delta PE.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::TranslateSigWithScope (
    IMetaDataAssemblyImport *pAssemImport, // [IN] importing assembly interface
    const void  *pbHashValue,           // [IN] Hash Blob for Assembly.
    ULONG       cbHashValue,            // [IN] Count of bytes.
    IMetaDataImport *import,            // [IN] importing interface
    PCCOR_SIGNATURE pbSigBlob,          // [IN] signature in the importing scope
    ULONG       cbSigBlob,              // [IN] count of bytes of signature
    IMetaDataAssemblyEmit *pAssemEmit,  // [IN] emit assembly interface
    IMetaDataEmit *emit,                // [IN] emit interface
    PCOR_SIGNATURE pvTranslatedSig,     // [OUT] buffer to hold translated signature
    ULONG       cbTranslatedSigMax,
    ULONG       *pcbTranslatedSig)// [OUT] count of bytes in the translated signature
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::SetMethodImplFlags (          // [IN] S_OK or error.  
    mdMethodDef md,                     // [IN] Method for which to set ImplFlags 
    DWORD       dwImplFlags)  
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::SetFieldRVA (                 // [IN] S_OK or error.  
    mdFieldDef  fd,                     // [IN] Field for which to set offset  
    ULONG       ulRVA)            // [IN] The offset  
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::Merge (                       // S_OK or error.
    IMetaDataImport *pImport,           // [IN] The scope to be merged.
    IMapToken   *pHostMapToken,         // [IN] Host IMapToken interface to receive token remap notification
    IUnknown    *pHandler)        // [IN] An object to receive to receive error notification.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}

STDMETHODIMP SymbolInfo::MergeEnd ()             // S_OK or error.
{
    _ASSERTE(!"NYI");
    return E_NOTIMPL;
}