Re: Shared Library

2005-08-11 Thread r_zaca
nction in a shared library is available > before I call this function. It sounds as if you want dlopen/dlsym. -- Glynn Clements <[EMAIL PROTECTED]> - To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in the body of a message to [EMAIL PROTEC

Re: Shared Library

2005-08-10 Thread Glynn Clements
r_zaca wrote: > Is it possible to check what shared libraries a program is using or what > shared libraries is available to a program inside the code? > I mean, I need to be sure that a function in a shared library is available > before I call this function. It sounds as

Re: Shared Library

2005-08-09 Thread Arvind Kalyan
On 8/10/05, r_zaca <[EMAIL PROTECTED]> wrote: > Is it possible to check what shared libraries a program is using or what > shared libraries is available to a program inside the code? > I mean, I need to be sure that a function in a shared library is available > before I

Shared Library

2005-08-09 Thread r_zaca
Hello all, Is it possible to check what shared libraries a program is using or what shared libraries is available to a program inside the code? I mean, I need to be sure that a function in a shared library is available before I call this function. Thanks.