Platform SDK: Debugging and Error Handling |
The BindImage function computes the virtual address of each imported function.
This function has been superseded by the BindImageEx function. Use BindImageEx to provide a status routine or flags to control the image binding.
BOOL BindImage( PSTR ImageName, PSTR DllPath, PSTR SymbolPath );
If the function succeeds, the return value is TRUE.
If the function fails, the return value is FALSE. To retrieve extended error information, call GetLastError.
A call to BindImage is equivalent to the following call:
BindImageEx( 0, ImageName, DllPath, SymbolPath, NULL );
For more information, see BindImageEx.
Windows NT/2000: Requires Windows NT 4.0 or later.
Windows 95/98: Requires Windows 95 or later. Available as a redistributable for Windows 95.
Header: Declared in Imagehlp.h.
Library: Use Imagehlp.lib.
Image Help Library Overview, ImageHlp Functions, BindImageEx