The Bind Utility

This program inspects a given object file and appends to it a list of imported functions. This list has the following format:

IMPORTS

CRTDLL.dll

_fprintf                   fprintf

USER32.dll

_LoadLibrary@4 LoadLibrary

...

$$END$$

In words: The list starts with the keyword ‘IMPORTS’, followed by a DLL list. Each DLL starts with the name, followed by the imported functions from that DLL in the object file.

Usage:

The syntax is:

bind <file name>

The argument should be the name of an existing object file.