GetBinaryType function
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: 4/17/2012
If you run GetBinaryType on a 64-bit machine against 32-bit and 64-bit DLLs, the function returns FALSE
with GetLastError set to ERROR_BAD_EXE_FORMAT, as expected. If you run GetBinaryType on a 32-bit
machine against 32-bit DLLs, the result is the same.
However, if you run GetBinaryType on a 32-bit machine against a 64-bit DLL, the function unexpectedly
returns TRUE with BinaryType set to SCS_64BIT_BINARY. That's quite inconsistent behaviour and not
very helpful.
- 11/21/2009
- Corinna Vinschen
- 5/2/2007
- vijaydevatha