IDkmNativeJustMyCodeProvider158.IsUserCodeExtended Method

Definition

Determines if a given instruction address is user code or not.

public:
 void IsUserCodeExtended(Microsoft::VisualStudio::Debugger::Native::DkmNativeInstructionAddress ^ nativeAddress, Microsoft::VisualStudio::Debugger::DkmWorkList ^ workList, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::Native::DkmIsUserCodeExtendedAsyncResult> ^ completionRoutine);
public void IsUserCodeExtended (Microsoft.VisualStudio.Debugger.Native.DkmNativeInstructionAddress nativeAddress, Microsoft.VisualStudio.Debugger.DkmWorkList workList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Native.DkmIsUserCodeExtendedAsyncResult> completionRoutine);
abstract member IsUserCodeExtended : Microsoft.VisualStudio.Debugger.Native.DkmNativeInstructionAddress * Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Native.DkmIsUserCodeExtendedAsyncResult> -> unit
Public Sub IsUserCodeExtended (nativeAddress As DkmNativeInstructionAddress, workList As DkmWorkList, completionRoutine As DkmCompletionRoutine(Of DkmIsUserCodeExtendedAsyncResult))

Parameters

nativeAddress
DkmNativeInstructionAddress

[In] DkmNativeInstructionAddress is used for addresses that resolve to within a native module. This is used regardless as to if there are symbols for the module.

workList
DkmWorkList

WorkList which is currently being processed. This value can be used to check for cancelation or to append additional work. New work items will not begin executing until after this function returns.

completionRoutine
DkmCompletionRoutine<DkmIsUserCodeExtendedAsyncResult>

Routine to fire when the request is complete. This will be implicitly fired if the implementation returns failure from this interface method. The implementation must fire this method in all other scenarios.

Applies to