summaryrefslogtreecommitdiff
path: root/src/debug/di/shimcallback.cpp
blob: 0ddf2ff3ec999bd54f77df7748119315311b36d5 (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
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
//*****************************************************************************
// File: ShimCallback.cpp
// 

//
// The V3 ICD debugging APIs have a lower abstraction level than V2.
// This provides V2 ICD debugging functionality on top of the V3 debugger object.
//*****************************************************************************

#include "stdafx.h"

#include "safewrap.h"
#include "check.h" 

#include <limits.h>
#include "shimpriv.h"


//
// Callback that shim provides, which then queues up the events.
//
ShimProxyCallback::ShimProxyCallback(ShimProcess * pShim)
    : m_cRef(0)
{
    m_pShim = pShim;
}

// Implement IUnknown
ULONG ShimProxyCallback::AddRef()
{
    InterlockedIncrement(&m_cRef);
    return m_cRef;
}
ULONG ShimProxyCallback::Release()
{
    LONG ref = InterlockedDecrement(&m_cRef);
    if (ref == 0)
    {
        delete this;
        return 0;
    }
    return ref;

}
HRESULT ShimProxyCallback::QueryInterface(REFIID riid, void **ppInterface)
{
    if (riid == IID_ICorDebugManagedCallback)
    {
        *ppInterface = static_cast<ICorDebugManagedCallback*>(this);
    }
    else if (riid == IID_ICorDebugManagedCallback2)
    {
        *ppInterface = static_cast<ICorDebugManagedCallback2*>(this);
    }
    else if (riid == IID_ICorDebugManagedCallback3)
    {
        *ppInterface = static_cast<ICorDebugManagedCallback3*>(this);
    }
    else if (riid == IID_IUnknown)
    {
        *ppInterface = static_cast<IUnknown*>(static_cast<ICorDebugManagedCallback*>(this));
    }
    else
    {
        *ppInterface = NULL;
        return E_NOINTERFACE;
    }

    this->AddRef();
    return S_OK;
}

//
// Map from an old frame to a new one.
// 
// Arguments:
//   pThread - thread that frame is on
//   pOldFrame - old frame before the continue, may have gotten neutered.
//   
// Returns:
//   a new, non-neutered frame that matches the old frame.
//   
// Notes:
//   Called by event handlers below (which are considered Outside the RS).
//   No adjust of reference, Thread already has reference.
//   @dbgtodo shim-stackwalks: this is used for exception callbacks, which may change for V3. 
ICorDebugFrame * UpdateFrame(ICorDebugThread * pThread, ICorDebugFrame * pOldFrame)
{
    PUBLIC_API_ENTRY_FOR_SHIM(NULL); 
    
    RSExtSmartPtr<ICorDebugFrame> pNewFrame;

    EX_TRY
    {
        CordbFrame * pFrame = static_cast<CordbFrame *> (pOldFrame);
        if (pFrame != NULL)
        {
            FramePointer fp = pFrame->GetFramePointer();
            
            CordbThread * pThread2 = static_cast<CordbThread *> (pThread);
            pThread2->FindFrame(&pNewFrame, fp);
            
            // 
        }
    }
    EX_CATCH
    {
        // Do not throw out of this function.  Doing so means that the debugger never gets a chance to 
        // continue the debuggee process.  This will lead to a hang.  Instead, try to make a best effort to
        // continue with a NULL ICDFrame.  VS is able to handle this gracefully.
        pNewFrame.Assign(NULL);
    }
    EX_END_CATCH(SwallowAllExceptions);

    return pNewFrame;
}



//
// Below this was autogenerated
//

// Implementation of ICorDebugManagedCallback::Breakpoint
HRESULT ShimProxyCallback::Breakpoint(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, ICorDebugBreakpoint * pBreakpoint)
{
    m_pShim->PreDispatchEvent();
    class BreakpointEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugThread > m_pThread;
        RSExtSmartPtr<ICorDebugBreakpoint > m_pBreakpoint;

    public:
        // Ctor
        BreakpointEvent(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, ICorDebugBreakpoint * pBreakpoint) : 
             ManagedEvent(pThread)
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pThread.Assign(pThread);
            this->m_pBreakpoint.Assign(pBreakpoint);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->Breakpoint(m_pAppDomain, m_pThread, m_pBreakpoint);
        }
    }; // end class BreakpointEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new BreakpointEvent(pAppDomain, pThread, pBreakpoint));
    return S_OK;
} // end of methodICorDebugManagedCallback::Breakpoint


// Implementation of ICorDebugManagedCallback::StepComplete
HRESULT ShimProxyCallback::StepComplete(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, ICorDebugStepper * pStepper, CorDebugStepReason reason)
{
    m_pShim->PreDispatchEvent();
    class StepCompleteEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugThread > m_pThread;
        RSExtSmartPtr<ICorDebugStepper > m_pStepper;
        CorDebugStepReason m_reason;

    public:
        // Ctor
        StepCompleteEvent(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, ICorDebugStepper * pStepper, CorDebugStepReason reason) : 
             ManagedEvent(pThread)
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pThread.Assign(pThread);
            this->m_pStepper.Assign(pStepper);
            this->m_reason = reason;
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->StepComplete(m_pAppDomain, m_pThread, m_pStepper, m_reason);
        }
    }; // end class StepCompleteEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new StepCompleteEvent(pAppDomain, pThread, pStepper, reason));
    return S_OK;
} // end of methodICorDebugManagedCallback::StepComplete


// Implementation of ICorDebugManagedCallback::Break
HRESULT ShimProxyCallback::Break(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread)
{
    m_pShim->PreDispatchEvent();
    class BreakEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugThread > m_pThread;

    public:
        // Ctor
        BreakEvent(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread) : 
             ManagedEvent(pThread)
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pThread.Assign(pThread);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->Break(m_pAppDomain, m_pThread);
        }
    }; // end class BreakEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new BreakEvent(pAppDomain, pThread));
    return S_OK;
} // end of methodICorDebugManagedCallback::Break


// Implementation of ICorDebugManagedCallback::Exception
HRESULT ShimProxyCallback::Exception(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, BOOL fUnhandled)
{
    m_pShim->PreDispatchEvent();
    class ExceptionEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugThread > m_pThread;
        BOOL m_fUnhandled;

    public:
        // Ctor
        ExceptionEvent(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, BOOL fUnhandled) : 
             ManagedEvent(pThread)
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pThread.Assign(pThread);
            this->m_fUnhandled = fUnhandled;
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->Exception(m_pAppDomain, m_pThread, m_fUnhandled);
        }
    }; // end class ExceptionEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new ExceptionEvent(pAppDomain, pThread, fUnhandled));
    return S_OK;
} // end of methodICorDebugManagedCallback::Exception


// Implementation of ICorDebugManagedCallback::EvalComplete
HRESULT ShimProxyCallback::EvalComplete(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, ICorDebugEval * pEval)
{
    m_pShim->PreDispatchEvent();
    class EvalCompleteEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugThread > m_pThread;
        RSExtSmartPtr<ICorDebugEval > m_pEval;

    public:
        // Ctor
        EvalCompleteEvent(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, ICorDebugEval * pEval) : 
             ManagedEvent(pThread)
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pThread.Assign(pThread);
            this->m_pEval.Assign(pEval);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->EvalComplete(m_pAppDomain, m_pThread, m_pEval);
        }
    }; // end class EvalCompleteEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new EvalCompleteEvent(pAppDomain, pThread, pEval));
    return S_OK;
} // end of methodICorDebugManagedCallback::EvalComplete


// Implementation of ICorDebugManagedCallback::EvalException
HRESULT ShimProxyCallback::EvalException(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, ICorDebugEval * pEval)
{
    m_pShim->PreDispatchEvent();
    class EvalExceptionEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugThread > m_pThread;
        RSExtSmartPtr<ICorDebugEval > m_pEval;

    public:
        // Ctor
        EvalExceptionEvent(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, ICorDebugEval * pEval) : 
             ManagedEvent(pThread)
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pThread.Assign(pThread);
            this->m_pEval.Assign(pEval);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->EvalException(m_pAppDomain, m_pThread, m_pEval);
        }
    }; // end class EvalExceptionEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new EvalExceptionEvent(pAppDomain, pThread, pEval));
    return S_OK;
} // end of methodICorDebugManagedCallback::EvalException


// Implementation of ICorDebugManagedCallback::CreateProcess
// This will only be called for a Real create-process event. 
HRESULT ShimProxyCallback::CreateProcess(ICorDebugProcess * pProcess)
{
    m_pShim->PreDispatchEvent(true); 
    QueueCreateProcess(pProcess);
    return S_OK;
}

void ShimProxyCallback::QueueCreateProcess(ICorDebugProcess * pProcess)
{
    class CreateProcessEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugProcess > m_pProcess;

    public:
        // Ctor
        CreateProcessEvent(ICorDebugProcess * pProcess, ShimProcess * pShim) : 
             ManagedEvent(),
             m_pShim(pShim)
        {
            this->m_pProcess.Assign(pProcess);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            // signal that we are in the callback--this will be cleared in code:CordbProcess::ContinueInternal
            m_pShim->SetInCreateProcess(true);
            return args.GetCallback1()->CreateProcess(m_pProcess);
        }

        // we need access to the shim in Dispatch so we can set the InCreateProcess flag to keep track of 
        // when we are actually in the callback. We need this information to be able to emulate
        // the hresult logic in v2.0. 
        ShimProcess * m_pShim;
    }; // end class CreateProcessEvent

    if (!m_pShim->RemoveDuplicateCreationEventIfPresent(pProcess))
    {
        m_pShim->GetManagedEventQueue()->QueueEvent(new CreateProcessEvent(pProcess, m_pShim));
    }
} // end of methodICorDebugManagedCallback::CreateProcess


// Implementation of ICorDebugManagedCallback::ExitProcess
HRESULT ShimProxyCallback::ExitProcess(ICorDebugProcess * pProcess)
{
    m_pShim->PreDispatchEvent();
    class ExitProcessEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugProcess > m_pProcess;

    public:
        // Ctor
        ExitProcessEvent(ICorDebugProcess * pProcess) : 
             ManagedEvent()
        {
            this->m_pProcess.Assign(pProcess);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->ExitProcess(m_pProcess);
        }
    }; // end class ExitProcessEvent

    m_pShim->RemoveDuplicateCreationEventIfPresent(pProcess);
    m_pShim->GetManagedEventQueue()->QueueEvent(new ExitProcessEvent(pProcess));
    return S_OK;
} // end of methodICorDebugManagedCallback::ExitProcess


// Implementation of ICorDebugManagedCallback::CreateThread
HRESULT ShimProxyCallback::CreateThread(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread)
{
    m_pShim->PreDispatchEvent();
    class CreateThreadEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugThread > m_pThread;

    public:
        // Ctor
        CreateThreadEvent(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread) : 
             ManagedEvent(pThread)
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pThread.Assign(pThread);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->CreateThread(m_pAppDomain, m_pThread);
        }
    }; // end class CreateThreadEvent

    if (!m_pShim->RemoveDuplicateCreationEventIfPresent(pThread))
    {
        m_pShim->GetManagedEventQueue()->QueueEvent(new CreateThreadEvent(pAppDomain, pThread));
    }
    return S_OK;
} // end of methodICorDebugManagedCallback::CreateThread


// Implementation of ICorDebugManagedCallback::ExitThread
HRESULT ShimProxyCallback::ExitThread(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread)
{
    m_pShim->PreDispatchEvent();
    class ExitThreadEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugThread > m_pThread;

    public:
        // Ctor
        ExitThreadEvent(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread) : 
             ManagedEvent(pThread)
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pThread.Assign(pThread);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->ExitThread(m_pAppDomain, m_pThread);
        }
    }; // end class ExitThreadEvent

    m_pShim->RemoveDuplicateCreationEventIfPresent(pThread);
    m_pShim->GetManagedEventQueue()->QueueEvent(new ExitThreadEvent(pAppDomain, pThread));
    return S_OK;
} // end of methodICorDebugManagedCallback::ExitThread


// Called from fake attach events.
//
// Arguments:
//   pAppDomain - appdomain for the LoadModule debug event
//   pModule - module being loaded. 
//
// Notes:
//   See code:ShimProcess::QueueFakeAttachEvents
//   This is the fake version of code:ShimProxyCallback::LoadModule.
//   It sends an IPC event to go in process to collect information that we can't yet get via 
//   DAC from out-of-proc. 
void ShimProxyCallback::FakeLoadModule(ICorDebugAppDomain *pAppDomain, ICorDebugModule *pModule)
{
    class FakeLoadModuleEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugModule > m_pModule;

    public:
        // Ctor
        FakeLoadModuleEvent(ICorDebugAppDomain * pAppDomain, ICorDebugModule * pModule, ShimProcess * pShim) : 
             ManagedEvent(),
             m_pShim(pShim)
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pModule.Assign(pModule);
        }

        HRESULT Dispatch(DispatchArgs args)
        {            
            // signal that we are in the callback--this will be cleared in code:CordbProcess::ContinueInternal
            m_pShim->SetInLoadModule(true);           
            return args.GetCallback1()->LoadModule(m_pAppDomain, m_pModule);
        }

        // we need access to the shim in Dispatch so we can set the InLoadModule flag to keep track 
        // when we are actually in the callback. We need this information to be able to emulate
        // the hresult logic in v2.0. 
        ShimProcess * m_pShim;
    }; // end class LoadModuleEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new FakeLoadModuleEvent(pAppDomain, pModule, m_pShim));
} // end of methodICorDebugManagedCallback::LoadModule


// Implementation of ICorDebugManagedCallback::LoadModule
HRESULT ShimProxyCallback::LoadModule(ICorDebugAppDomain * pAppDomain, ICorDebugModule * pModule)
{
    m_pShim->PreDispatchEvent();
    class LoadModuleEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugModule > m_pModule;

    public:
        // Ctor
        LoadModuleEvent(ICorDebugAppDomain * pAppDomain, ICorDebugModule * pModule) : 
             ManagedEvent()
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pModule.Assign(pModule);
        }

        HRESULT Dispatch(DispatchArgs args)
        {            
            return args.GetCallback1()->LoadModule(m_pAppDomain, m_pModule);
        }
    }; // end class LoadModuleEvent

    if (!m_pShim->RemoveDuplicateCreationEventIfPresent(pModule))
    {
        m_pShim->GetManagedEventQueue()->QueueEvent(new LoadModuleEvent(pAppDomain, pModule));
    }
    return S_OK;
} // end of methodICorDebugManagedCallback::LoadModule


// Implementation of ICorDebugManagedCallback::UnloadModule
HRESULT ShimProxyCallback::UnloadModule(ICorDebugAppDomain * pAppDomain, ICorDebugModule * pModule)
{
    m_pShim->PreDispatchEvent();
    class UnloadModuleEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugModule > m_pModule;

    public:
        // Ctor
        UnloadModuleEvent(ICorDebugAppDomain * pAppDomain, ICorDebugModule * pModule) : 
             ManagedEvent()
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pModule.Assign(pModule);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->UnloadModule(m_pAppDomain, m_pModule);
        }
    }; // end class UnloadModuleEvent

    m_pShim->RemoveDuplicateCreationEventIfPresent(pModule);
    m_pShim->GetManagedEventQueue()->QueueEvent(new UnloadModuleEvent(pAppDomain, pModule));
    return S_OK;
} // end of methodICorDebugManagedCallback::UnloadModule


// Implementation of ICorDebugManagedCallback::LoadClass
HRESULT ShimProxyCallback::LoadClass(ICorDebugAppDomain * pAppDomain, ICorDebugClass * pClass)
{
    m_pShim->PreDispatchEvent();
    class LoadClassEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugClass > m_pClass;

    public:
        // Ctor
        LoadClassEvent(ICorDebugAppDomain * pAppDomain, ICorDebugClass * pClass) : 
             ManagedEvent()
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pClass.Assign(pClass);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->LoadClass(m_pAppDomain, m_pClass);
        }
    }; // end class LoadClassEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new LoadClassEvent(pAppDomain, pClass));
    return S_OK;
} // end of methodICorDebugManagedCallback::LoadClass


// Implementation of ICorDebugManagedCallback::UnloadClass
HRESULT ShimProxyCallback::UnloadClass(ICorDebugAppDomain * pAppDomain, ICorDebugClass * pClass)
{
    m_pShim->PreDispatchEvent();
    class UnloadClassEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugClass > m_pClass;

    public:
        // Ctor
        UnloadClassEvent(ICorDebugAppDomain * pAppDomain, ICorDebugClass * pClass) : 
             ManagedEvent()
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pClass.Assign(pClass);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->UnloadClass(m_pAppDomain, m_pClass);
        }
    }; // end class UnloadClassEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new UnloadClassEvent(pAppDomain, pClass));
    return S_OK;
} // end of methodICorDebugManagedCallback::UnloadClass


// Implementation of ICorDebugManagedCallback::DebuggerError
HRESULT ShimProxyCallback::DebuggerError(ICorDebugProcess * pProcess, HRESULT errorHR, DWORD errorCode)
{
    m_pShim->PreDispatchEvent();
    class DebuggerErrorEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugProcess > m_pProcess;
        HRESULT m_errorHR;
        DWORD m_errorCode;

    public:
        // Ctor
        DebuggerErrorEvent(ICorDebugProcess * pProcess, HRESULT errorHR, DWORD errorCode) : 
             ManagedEvent()
        {
            this->m_pProcess.Assign(pProcess);
            this->m_errorHR = errorHR;
            this->m_errorCode = errorCode;
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->DebuggerError(m_pProcess, m_errorHR, m_errorCode);
        }
    }; // end class DebuggerErrorEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new DebuggerErrorEvent(pProcess, errorHR, errorCode));
    return S_OK;
} // end of methodICorDebugManagedCallback::DebuggerError


// Implementation of ICorDebugManagedCallback::LogMessage
HRESULT ShimProxyCallback::LogMessage(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, LONG lLevel, __in LPWSTR pLogSwitchName, __in LPWSTR pMessage)
{
    m_pShim->PreDispatchEvent();
    class LogMessageEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugThread > m_pThread;
        LONG m_lLevel;
        StringCopyHolder m_pLogSwitchName;
        StringCopyHolder m_pMessage;

    public:
        // Ctor
        LogMessageEvent(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, LONG lLevel, LPCWSTR pLogSwitchName, LPCWSTR pMessage) : 
             ManagedEvent(pThread)
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pThread.Assign(pThread);
            this->m_lLevel = lLevel;
            this->m_pLogSwitchName.AssignCopy(pLogSwitchName);
            this->m_pMessage.AssignCopy(pMessage);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->LogMessage(m_pAppDomain, m_pThread, m_lLevel, const_cast<WCHAR*>((const WCHAR*)m_pLogSwitchName), const_cast<WCHAR*>((const WCHAR*)m_pMessage));
        }
    }; // end class LogMessageEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new LogMessageEvent(pAppDomain, pThread, lLevel, pLogSwitchName, pMessage));
    return S_OK;
} // end of methodICorDebugManagedCallback::LogMessage


// Implementation of ICorDebugManagedCallback::LogSwitch
HRESULT ShimProxyCallback::LogSwitch(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, LONG lLevel, ULONG ulReason, __in LPWSTR pLogSwitchName, __in LPWSTR pParentName)
{
    m_pShim->PreDispatchEvent();
    class LogSwitchEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugThread > m_pThread;
        LONG m_lLevel;
        ULONG m_ulReason;
        StringCopyHolder m_pLogSwitchName;
        StringCopyHolder m_pParentName;

    public:
        // Ctor
        LogSwitchEvent(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, LONG lLevel, ULONG ulReason, LPCWSTR pLogSwitchName, LPCWSTR pParentName) : 
             ManagedEvent(pThread)
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pThread.Assign(pThread);
            this->m_lLevel = lLevel;
            this->m_ulReason = ulReason;
            this->m_pLogSwitchName.AssignCopy(pLogSwitchName);
            this->m_pParentName.AssignCopy(pParentName);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->LogSwitch(m_pAppDomain, m_pThread, m_lLevel, m_ulReason, const_cast<WCHAR*>((const WCHAR*)m_pLogSwitchName), const_cast<WCHAR*>((const WCHAR*)m_pParentName));
        }
    }; // end class LogSwitchEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new LogSwitchEvent(pAppDomain, pThread, lLevel, ulReason, pLogSwitchName, pParentName));
    return S_OK;
} // end of methodICorDebugManagedCallback::LogSwitch


// Implementation of ICorDebugManagedCallback::CreateAppDomain
HRESULT ShimProxyCallback::CreateAppDomain(ICorDebugProcess * pProcess, ICorDebugAppDomain * pAppDomain)
{
    m_pShim->PreDispatchEvent();
    class CreateAppDomainEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugProcess > m_pProcess;
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;

    public:
        // Ctor
        CreateAppDomainEvent(ICorDebugProcess * pProcess, ICorDebugAppDomain * pAppDomain) : 
             ManagedEvent()
        {
            this->m_pProcess.Assign(pProcess);
            this->m_pAppDomain.Assign(pAppDomain);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->CreateAppDomain(m_pProcess, m_pAppDomain);
        }
    }; // end class CreateAppDomainEvent

    if (!m_pShim->RemoveDuplicateCreationEventIfPresent(pAppDomain))
    {
        m_pShim->GetManagedEventQueue()->QueueEvent(new CreateAppDomainEvent(pProcess, pAppDomain));
    }
    return S_OK;
} // end of methodICorDebugManagedCallback::CreateAppDomain


// Implementation of ICorDebugManagedCallback::ExitAppDomain
HRESULT ShimProxyCallback::ExitAppDomain(ICorDebugProcess * pProcess, ICorDebugAppDomain * pAppDomain)
{
    m_pShim->PreDispatchEvent();
    class ExitAppDomainEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugProcess > m_pProcess;
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;

    public:
        // Ctor
        ExitAppDomainEvent(ICorDebugProcess * pProcess, ICorDebugAppDomain * pAppDomain) : 
             ManagedEvent()
        {
            this->m_pProcess.Assign(pProcess);
            this->m_pAppDomain.Assign(pAppDomain);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->ExitAppDomain(m_pProcess, m_pAppDomain);
        }
    }; // end class ExitAppDomainEvent

    m_pShim->RemoveDuplicateCreationEventIfPresent(pAppDomain);
    m_pShim->GetManagedEventQueue()->QueueEvent(new ExitAppDomainEvent(pProcess, pAppDomain));
    return S_OK;
} // end of methodICorDebugManagedCallback::ExitAppDomain


// Implementation of ICorDebugManagedCallback::LoadAssembly
HRESULT ShimProxyCallback::LoadAssembly(ICorDebugAppDomain * pAppDomain, ICorDebugAssembly * pAssembly)
{
    m_pShim->PreDispatchEvent();
    class LoadAssemblyEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugAssembly > m_pAssembly;

    public:
        // Ctor
        LoadAssemblyEvent(ICorDebugAppDomain * pAppDomain, ICorDebugAssembly * pAssembly) : 
             ManagedEvent()
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pAssembly.Assign(pAssembly);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->LoadAssembly(m_pAppDomain, m_pAssembly);
        }
    }; // end class LoadAssemblyEvent

    if (!m_pShim->RemoveDuplicateCreationEventIfPresent(pAssembly))
    {
        m_pShim->GetManagedEventQueue()->QueueEvent(new LoadAssemblyEvent(pAppDomain, pAssembly));
    }
    return S_OK;
} // end of methodICorDebugManagedCallback::LoadAssembly


// Implementation of ICorDebugManagedCallback::UnloadAssembly
HRESULT ShimProxyCallback::UnloadAssembly(ICorDebugAppDomain * pAppDomain, ICorDebugAssembly * pAssembly)
{
    m_pShim->PreDispatchEvent();
    class UnloadAssemblyEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugAssembly > m_pAssembly;

    public:
        // Ctor
        UnloadAssemblyEvent(ICorDebugAppDomain * pAppDomain, ICorDebugAssembly * pAssembly) : 
             ManagedEvent()
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pAssembly.Assign(pAssembly);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->UnloadAssembly(m_pAppDomain, m_pAssembly);
        }
    }; // end class UnloadAssemblyEvent

    m_pShim->RemoveDuplicateCreationEventIfPresent(pAssembly);
    m_pShim->GetManagedEventQueue()->QueueEvent(new UnloadAssemblyEvent(pAppDomain, pAssembly));
    return S_OK;
} // end of methodICorDebugManagedCallback::UnloadAssembly


// Implementation of ICorDebugManagedCallback::ControlCTrap
HRESULT ShimProxyCallback::ControlCTrap(ICorDebugProcess * pProcess)
{
    m_pShim->PreDispatchEvent();
    class ControlCTrapEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugProcess > m_pProcess;

    public:
        // Ctor
        ControlCTrapEvent(ICorDebugProcess * pProcess) : 
             ManagedEvent()
        {
            this->m_pProcess.Assign(pProcess);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->ControlCTrap(m_pProcess);
        }
    }; // end class ControlCTrapEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new ControlCTrapEvent(pProcess));
    return S_OK;
} // end of methodICorDebugManagedCallback::ControlCTrap


// Implementation of ICorDebugManagedCallback::NameChange
HRESULT ShimProxyCallback::NameChange(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread)
{
    m_pShim->PreDispatchEvent();
    class NameChangeEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugThread > m_pThread;

    public:
        // Ctor
        NameChangeEvent(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread) : 
             ManagedEvent(pThread)
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pThread.Assign(pThread);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->NameChange(m_pAppDomain, m_pThread);
        }
    }; // end class NameChangeEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new NameChangeEvent(pAppDomain, pThread));
    return S_OK;
} // end of methodICorDebugManagedCallback::NameChange


// Implementation of ICorDebugManagedCallback::UpdateModuleSymbols
HRESULT ShimProxyCallback::UpdateModuleSymbols(ICorDebugAppDomain * pAppDomain, ICorDebugModule * pModule, IStream * pSymbolStream)
{
    m_pShim->PreDispatchEvent();
    class UpdateModuleSymbolsEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugModule > m_pModule;
        RSExtSmartPtr<IStream > m_pSymbolStream;

    public:
        // Ctor
        UpdateModuleSymbolsEvent(ICorDebugAppDomain * pAppDomain, ICorDebugModule * pModule, IStream * pSymbolStream) : 
             ManagedEvent()
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pModule.Assign(pModule);
            this->m_pSymbolStream.Assign(pSymbolStream);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->UpdateModuleSymbols(m_pAppDomain, m_pModule, m_pSymbolStream);
        }
    }; // end class UpdateModuleSymbolsEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new UpdateModuleSymbolsEvent(pAppDomain, pModule, pSymbolStream));
    return S_OK;
} // end of methodICorDebugManagedCallback::UpdateModuleSymbols


// Implementation of ICorDebugManagedCallback::EditAndContinueRemap
HRESULT ShimProxyCallback::EditAndContinueRemap(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, ICorDebugFunction * pFunction, BOOL fAccurate)
{
    m_pShim->PreDispatchEvent();
    class EditAndContinueRemapEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugThread > m_pThread;
        RSExtSmartPtr<ICorDebugFunction > m_pFunction;
        BOOL m_fAccurate;

    public:
        // Ctor
        EditAndContinueRemapEvent(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, ICorDebugFunction * pFunction, BOOL fAccurate) : 
             ManagedEvent(pThread)
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pThread.Assign(pThread);
            this->m_pFunction.Assign(pFunction);
            this->m_fAccurate = fAccurate;
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->EditAndContinueRemap(m_pAppDomain, m_pThread, m_pFunction, m_fAccurate);
        }
    }; // end class EditAndContinueRemapEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new EditAndContinueRemapEvent(pAppDomain, pThread, pFunction, fAccurate));
    return S_OK;
} // end of methodICorDebugManagedCallback::EditAndContinueRemap


// Implementation of ICorDebugManagedCallback::BreakpointSetError
HRESULT ShimProxyCallback::BreakpointSetError(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, ICorDebugBreakpoint * pBreakpoint, DWORD dwError)
{
    m_pShim->PreDispatchEvent();
    class BreakpointSetErrorEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugThread > m_pThread;
        RSExtSmartPtr<ICorDebugBreakpoint > m_pBreakpoint;
        DWORD m_dwError;

    public:
        // Ctor
        BreakpointSetErrorEvent(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, ICorDebugBreakpoint * pBreakpoint, DWORD dwError) : 
             ManagedEvent(pThread)
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pThread.Assign(pThread);
            this->m_pBreakpoint.Assign(pBreakpoint);
            this->m_dwError = dwError;
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback1()->BreakpointSetError(m_pAppDomain, m_pThread, m_pBreakpoint, m_dwError);
        }
    }; // end class BreakpointSetErrorEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new BreakpointSetErrorEvent(pAppDomain, pThread, pBreakpoint, dwError));
    return S_OK;
} // end of methodICorDebugManagedCallback::BreakpointSetError


// Implementation of ICorDebugManagedCallback2::FunctionRemapOpportunity
HRESULT ShimProxyCallback::FunctionRemapOpportunity(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, ICorDebugFunction * pOldFunction, ICorDebugFunction * pNewFunction, ULONG32 oldILOffset)
{
    m_pShim->PreDispatchEvent();
    class FunctionRemapOpportunityEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugThread > m_pThread;
        RSExtSmartPtr<ICorDebugFunction > m_pOldFunction;
        RSExtSmartPtr<ICorDebugFunction > m_pNewFunction;
        ULONG32 m_oldILOffset;

    public:
        // Ctor
        FunctionRemapOpportunityEvent(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, ICorDebugFunction * pOldFunction, ICorDebugFunction * pNewFunction, ULONG32 oldILOffset) : 
             ManagedEvent(pThread)
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pThread.Assign(pThread);
            this->m_pOldFunction.Assign(pOldFunction);
            this->m_pNewFunction.Assign(pNewFunction);
            this->m_oldILOffset = oldILOffset;
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback2()->FunctionRemapOpportunity(m_pAppDomain, m_pThread, m_pOldFunction, m_pNewFunction, m_oldILOffset);
        }
    }; // end class FunctionRemapOpportunityEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new FunctionRemapOpportunityEvent(pAppDomain, pThread, pOldFunction, pNewFunction, oldILOffset));
    return S_OK;
} // end of methodICorDebugManagedCallback2::FunctionRemapOpportunity


// Implementation of ICorDebugManagedCallback2::CreateConnection
HRESULT ShimProxyCallback::CreateConnection(ICorDebugProcess * pProcess, CONNID dwConnectionId, __in LPWSTR pConnectionName)
{
    m_pShim->PreDispatchEvent();
    class CreateConnectionEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugProcess > m_pProcess;
        CONNID m_dwConnectionId;
        StringCopyHolder m_pConnectionName;

    public:
        // Ctor
        CreateConnectionEvent(ICorDebugProcess * pProcess, CONNID dwConnectionId, LPCWSTR pConnectionName) : 
             ManagedEvent()
        {
            this->m_pProcess.Assign(pProcess);
            this->m_dwConnectionId = dwConnectionId;
            this->m_pConnectionName.AssignCopy(pConnectionName);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback2()->CreateConnection(m_pProcess, m_dwConnectionId, const_cast<WCHAR*>((const WCHAR*)m_pConnectionName));
        }
    }; // end class CreateConnectionEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new CreateConnectionEvent(pProcess, dwConnectionId, pConnectionName));
    return S_OK;
} // end of methodICorDebugManagedCallback2::CreateConnection


// Implementation of ICorDebugManagedCallback2::ChangeConnection
HRESULT ShimProxyCallback::ChangeConnection(ICorDebugProcess * pProcess, CONNID dwConnectionId)
{
    m_pShim->PreDispatchEvent();
    class ChangeConnectionEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugProcess > m_pProcess;
        CONNID m_dwConnectionId;

    public:
        // Ctor
        ChangeConnectionEvent(ICorDebugProcess * pProcess, CONNID dwConnectionId) : 
             ManagedEvent()
        {
            this->m_pProcess.Assign(pProcess);
            this->m_dwConnectionId = dwConnectionId;
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback2()->ChangeConnection(m_pProcess, m_dwConnectionId);
        }
    }; // end class ChangeConnectionEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new ChangeConnectionEvent(pProcess, dwConnectionId));
    return S_OK;
} // end of methodICorDebugManagedCallback2::ChangeConnection


// Implementation of ICorDebugManagedCallback2::DestroyConnection
HRESULT ShimProxyCallback::DestroyConnection(ICorDebugProcess * pProcess, CONNID dwConnectionId)
{
    m_pShim->PreDispatchEvent();
    class DestroyConnectionEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugProcess > m_pProcess;
        CONNID m_dwConnectionId;

    public:
        // Ctor
        DestroyConnectionEvent(ICorDebugProcess * pProcess, CONNID dwConnectionId) : 
             ManagedEvent()
        {
            this->m_pProcess.Assign(pProcess);
            this->m_dwConnectionId = dwConnectionId;
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback2()->DestroyConnection(m_pProcess, m_dwConnectionId);
        }
    }; // end class DestroyConnectionEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new DestroyConnectionEvent(pProcess, dwConnectionId));
    return S_OK;
} // end of methodICorDebugManagedCallback2::DestroyConnection



// Implementation of ICorDebugManagedCallback2::Exception
HRESULT ShimProxyCallback::Exception(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, ICorDebugFrame * pFrame, ULONG32 nOffset, CorDebugExceptionCallbackType dwEventType, DWORD dwFlags)
{
    m_pShim->PreDispatchEvent();
    class ExceptionEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugThread > m_pThread;
        RSExtSmartPtr<ICorDebugFrame > m_pFrame;
        ULONG32 m_nOffset;
        CorDebugExceptionCallbackType m_dwEventType;
        DWORD m_dwFlags;

    public:
        // Ctor
        ExceptionEvent(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, ICorDebugFrame * pFrame, ULONG32 nOffset, CorDebugExceptionCallbackType dwEventType, DWORD dwFlags) : 
             ManagedEvent(pThread)
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pThread.Assign(pThread);
            this->m_pFrame.Assign(pFrame);
            this->m_nOffset = nOffset;
            this->m_dwEventType = dwEventType;
            this->m_dwFlags = dwFlags;
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback2()->Exception(m_pAppDomain, m_pThread, UpdateFrame(m_pThread, m_pFrame), m_nOffset, m_dwEventType, m_dwFlags);
        }
    }; // end class ExceptionEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new ExceptionEvent(pAppDomain, pThread, pFrame, nOffset, dwEventType, dwFlags));
    return S_OK;
} // end of methodICorDebugManagedCallback2::Exception


// Implementation of ICorDebugManagedCallback2::ExceptionUnwind
HRESULT ShimProxyCallback::ExceptionUnwind(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, CorDebugExceptionUnwindCallbackType dwEventType, DWORD dwFlags)
{
    m_pShim->PreDispatchEvent();
    class ExceptionUnwindEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugThread > m_pThread;
        CorDebugExceptionUnwindCallbackType m_dwEventType;
        DWORD m_dwFlags;

    public:
        // Ctor
        ExceptionUnwindEvent(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, CorDebugExceptionUnwindCallbackType dwEventType, DWORD dwFlags) : 
             ManagedEvent(pThread)
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pThread.Assign(pThread);
            this->m_dwEventType = dwEventType;
            this->m_dwFlags = dwFlags;
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback2()->ExceptionUnwind(m_pAppDomain, m_pThread, m_dwEventType, m_dwFlags);
        }
    }; // end class ExceptionUnwindEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new ExceptionUnwindEvent(pAppDomain, pThread, dwEventType, dwFlags));
    return S_OK;
} // end of methodICorDebugManagedCallback2::ExceptionUnwind


// Implementation of ICorDebugManagedCallback2::FunctionRemapComplete
HRESULT ShimProxyCallback::FunctionRemapComplete(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, ICorDebugFunction * pFunction)
{
    m_pShim->PreDispatchEvent();
    class FunctionRemapCompleteEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugThread > m_pThread;
        RSExtSmartPtr<ICorDebugFunction > m_pFunction;

    public:
        // Ctor
        FunctionRemapCompleteEvent(ICorDebugAppDomain * pAppDomain, ICorDebugThread * pThread, ICorDebugFunction * pFunction) : 
             ManagedEvent(pThread)
        {
            this->m_pAppDomain.Assign(pAppDomain);
            this->m_pThread.Assign(pThread);
            this->m_pFunction.Assign(pFunction);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback2()->FunctionRemapComplete(m_pAppDomain, m_pThread, m_pFunction);
        }
    }; // end class FunctionRemapCompleteEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new FunctionRemapCompleteEvent(pAppDomain, pThread, pFunction));
    return S_OK;
} // end of methodICorDebugManagedCallback2::FunctionRemapComplete


// Implementation of ICorDebugManagedCallback2::MDANotification
HRESULT ShimProxyCallback::MDANotification(ICorDebugController * pController, ICorDebugThread * pThread, ICorDebugMDA * pMDA)
{
    m_pShim->PreDispatchEvent();
    class MDANotificationEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugController > m_pController;
        RSExtSmartPtr<ICorDebugThread > m_pThread;
        RSExtSmartPtr<ICorDebugMDA > m_pMDA;

    public:
        // Ctor
        MDANotificationEvent(ICorDebugController * pController, ICorDebugThread * pThread, ICorDebugMDA * pMDA) : 
             ManagedEvent(pThread)
        {
            this->m_pController.Assign(pController);
            this->m_pThread.Assign(pThread);
            this->m_pMDA.Assign(pMDA);
        }

        HRESULT Dispatch(DispatchArgs args)
        {
            return args.GetCallback2()->MDANotification(m_pController, m_pThread, m_pMDA);
        }
    }; // end class MDANotificationEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new MDANotificationEvent(pController, pThread, pMDA));
    return S_OK;
} // end of methodICorDebugManagedCallback2::MDANotification

// Implementation of ICorDebugManagedCallback3::CustomNotification
// Arguments:
//      input:
//          pThread    - thread on which the notification occurred
//          pAppDomain - appDomain in which the notification occurred
// Return value: S_OK
HRESULT ShimProxyCallback::CustomNotification(ICorDebugThread * pThread, ICorDebugAppDomain * pAppDomain)
{
    m_pShim->PreDispatchEvent();
    class CustomNotificationEvent  : public ManagedEvent
    {
        // callbacks parameters. These are strong references
        RSExtSmartPtr<ICorDebugAppDomain > m_pAppDomain;
        RSExtSmartPtr<ICorDebugThread > m_pThread;

    public:
        // Ctor
        CustomNotificationEvent(ICorDebugThread * pThread, ICorDebugAppDomain * pAppDomain) : 
          ManagedEvent(pThread)
          {
              this->m_pAppDomain.Assign(pAppDomain);
              this->m_pThread.Assign(pThread);
          }

          HRESULT Dispatch(DispatchArgs args)
          {
              return args.GetCallback3()->CustomNotification(m_pThread, m_pAppDomain);
          }
    }; // end class CustomNotificationEvent

    m_pShim->GetManagedEventQueue()->QueueEvent(new CustomNotificationEvent(pThread, pAppDomain));
    return S_OK;
}