FindExecutableImageEx Function

Debug Help Library

FindExecutableImageEx Function

Locates the specified executable file.

HANDLE WINAPI FindExecutableImageEx(
  __in          PCTSTR FileName,
  __in          PCTSTR SymbolPath,
  __out         PTSTR ImageFilePath,
  __in          PFIND_EXE_FILE_CALLBACK Callback,
  __in          PVOID CallerData
);

Parameters

FileName

The name of the symbol file to be located. This parameter can be a partial path.

SymbolPath

The path where symbol files are located. This string can contain multiple paths separated by semicolons. To retrieve the symbol path, use the SymGetSearchPath function.

ImageFilePath

A pointer to a buffer that receives the full path of the executable file.

Callback

An application-defined callback function that verifies whether the correct executable file was found, or whether the function should continue its search. For more information, see FindExecutableImageProc.

This parameter can be NULL.

CallerData

Optional user-defined data for the callback function. This parameter can be NULL.

Return Value

If the function succeeds, the return value is an open handle to the executable file.

If the function fails, the return value is NULL. To retrieve extended error information, call GetLastError.

Remarks

The FindExecutableImageEx function is provided so executable files can be found in several different directories by using a single function call. If the SymbolPath parameter contains multiple paths, the function searches each specified directory tree for the executable file. When the file is found, the search stops. Thus, be sure to specify SymbolPath with the paths in the correct order.

All DbgHelp functions, such as this one, are single threaded. Therefore, calls from more than one thread to this function will likely result in unexpected behavior or memory corruption. To avoid this, you must synchronize all concurrent calls from more than one thread to this function.

To call the Unicode version of this function, define DBGHELP_TRANSLATE_TCHAR.

Requirements

Redistributable

Requires DbgHelp.dll 5.1 or later.

Header

Declared in Dbghelp.h.

Library

Use Dbghelp.lib.

DLL

Requires Dbghelp.dll.

Unicode

Implemented as FindExecutableImageExW (Unicode) and FindExecutableImageEx (ANSI).

See Also

DbgHelp FunctionsFindExecutableImageProc
SymGetSearchPath


Send comments about this topic to Microsoft

Build date: 9/25/2007

© 2007 Microsoft Corporation. All rights reserved.