IDkmEntryPointNotification.OnEntryPoint Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
OnEntryPoint is invoked as part of event processing. See interface definition for more information.
public:
void OnEntryPoint(Microsoft::VisualStudio::Debugger::DkmProcess ^ process, Microsoft::VisualStudio::Debugger::DkmThread ^ thread, Microsoft::VisualStudio::Debugger::DkmEventDescriptor ^ eventDescriptor);
public void OnEntryPoint (Microsoft.VisualStudio.Debugger.DkmProcess process, Microsoft.VisualStudio.Debugger.DkmThread thread, Microsoft.VisualStudio.Debugger.DkmEventDescriptor eventDescriptor);
abstract member OnEntryPoint : Microsoft.VisualStudio.Debugger.DkmProcess * Microsoft.VisualStudio.Debugger.DkmThread * Microsoft.VisualStudio.Debugger.DkmEventDescriptor -> unit
Public Sub OnEntryPoint (process As DkmProcess, thread As DkmThread, eventDescriptor As DkmEventDescriptor)
Parameters
- process
- DkmProcess
[In] DkmProcess represents a target process which is being debugged. The debugger debugs processes, so this is the basic unit of debugging. A DkmProcess can represent a system process or a virtual process such as minidumps.
- thread
- DkmThread
[In] DkmThread represents a thread running in the target process.
- eventDescriptor
- DkmEventDescriptor
[In] Describes the event being processed.