Applies to: desktop apps only
Determines whether a file is an executable (.exe) file, and if so, which subsystem runs the executable file.
Syntax
BOOL WINAPI GetBinaryType( __in LPCTSTR lpApplicationName, __out LPDWORD lpBinaryType );
Parameters
- lpApplicationName [in]
-
The full path of the file whose executable type is to be determined.
In the ANSI version of this function, the name is limited to MAX_PATH characters. To extend this limit to 32,767 wide characters, call the Unicode version of the function and prepend "\\?\" to the path. For more information, see Naming a File.
- lpBinaryType [out]
-
A pointer to a variable to receive information about the executable type of the file specified by lpApplicationName. The following constants are defined.
Return value
If the file is executable, the return value is nonzero. The function sets the variable pointed to by lpBinaryType to indicate the file's executable type.
If the file is not executable, or if the function fails, the return value is zero. To get extended error information, call GetLastError. If the file is a DLL, the last error code is ERROR_BAD_EXE_FORMAT.
Remarks
As an alternative, you can obtain the same information by calling the SHGetFileInfo function, passing the SHGFI_EXETYPE flag in the uFlags parameter.
Symbolic link behavior—If the path points to a symbolic link, the target file is used.
Requirements
|
Minimum supported client | Windows XP |
|---|---|
|
Minimum supported server | Windows Server 2003 |
|
Header |
|
|
Library |
|
|
DLL |
|
|
Unicode and ANSI names | GetBinaryTypeW (Unicode) and GetBinaryTypeA (ANSI) |
See also
Send comments about this topic to Microsoft
Build date: 5/5/2012
