bind
ACTION: bind a list of procedures from a Dynamic Link Library (DLL)
USE: for low level (without protoype) calls to DLL functions. the first name is the one used in the program. The second is the name used in the DLL.
EXAMPLE:
'          sys Kernel32
kernel32=LoadLibrary "kernel32.dll"

RESULT:
the first column of keywords is recognised as procedure calls. A prototype may be attached
to any of these keywords later. Otherwise the programmer must ensure that the parameters
passed are a perfect match for each procedure call.

REMARKS: Comments are supported - both semicolon and single quote marks.

RELATED: loadlibrary freelibrary getprocaddress declare library