IDkmRunningProcessInfoProvider.QueryIsWOW64Executable Method

Definition

Deprecated. Use QueryExecutableArchitecture. Determines if the given executable file will execute within WOW64 (Windows On Windows), which is used to execute 32-bit processes on a 64-bit OS.

public:
 bool QueryIsWOW64Executable(Microsoft::VisualStudio::Debugger::DefaultPort::DkmTransportConnection ^ connection, System::String ^ exePath);
public bool QueryIsWOW64Executable (Microsoft.VisualStudio.Debugger.DefaultPort.DkmTransportConnection connection, string exePath);
abstract member QueryIsWOW64Executable : Microsoft.VisualStudio.Debugger.DefaultPort.DkmTransportConnection * string -> bool
Public Function QueryIsWOW64Executable (connection As DkmTransportConnection, exePath As String) As Boolean

Parameters

connection
DkmTransportConnection

[In] This represents a connection between the monitor and the IDE. It can either be a local connection if the monitor is running in the same process as the IDE, or it can be a remote connection. In the monitor process, there is only one connection.

exePath
String

[In] Path to the executable file.

Returns

[Out] true if the specified executable file will execute under WOW.

Applies to