The LIBPATH is just required for execution of the module you are trying to 
bind. The .x file needs to be fully qualified with the INCLUDE binder statement.
The .x file contains the exports when compiling the DLL. You always bind to the 
.x file not to the .so (DLL).
The .x file contains the IMPORT statements which functions are exported by the 
DLL with the same name, so the binder knows what functions can be resolved by 
calls to the DLL.
If you look inside the .x file, you will see the IMPORT CODE statements.

Hope that helps, Denis.

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [email protected] with the message: INFO IBM-MAIN

Reply via email to