AllAPI Network - The KPD-Team

 
Allapi Network
 API-Guide
 ApiViewer

 API List

 
API Resources
 Tips & Tricks
 VB Tutorials
 Error Lookup
 
Misc Stuff
 VB examples
 VB Tools
 VB Links
 Top Downloads
 
This Site
 Search Engine
 Contact Form
 

Donate to AllAPI.net

GetBinaryType

The GetBinaryType function determines whether a file is executable, and if so, what type of executable file it is. That last property determines which subsystem an executable file runs under.

VB4-32,5,6
Declare Function GetBinaryType Lib "kernel32" Alias "GetBinaryTypeA" (ByVal lpApplicationName As String, lpBinaryType As Long) As Long

Operating Systems Supported
Requires Windows NT 3.5(1) or later; Win9x/ME: Not supported

Library
Kernel32

Parameter Information
· lpApplicationName
Points to a null-terminated string that contains the fully qualified path of the file whose binary type the function shall determine.

· lpBinaryType
Points to a variable to receive information about the executable type of the file specified by lpApplicationName. The function adjusts a set of bit flags in this variable. The following bit flag constants are defined:
SCS_32BIT_BINARY
A Win32-based application
SCS_DOS_BINARY
An MS-DOS - based application
SCS_OS216_BINARY
A 16-bit OS/2-based application
SCS_PIF_BINARY
A PIF file that executes an MS-DOS - based application
SCS_POSIX_BINARY
A POSIX - based application
SCS_WOW_BINARY
A 16-bit Windows-based application

Return Values
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 function is not executable, or if the function fails, the return value is zero.

Examples

Related Functions

 

 


Copyright © 1998-2007, The Mentalis.org Team - Privacy statement
Did you find a bug on this page? Tell us!
This site is located at http://allapi.mentalis.org/