Typedefs | |
typedef void(* | GenericFunc )(void) |
Functions | |
void * | _mesa_dlopen (const char *libname, int flags) |
Wrapper functions for dlopen(), dlsym(), dlclose(). | |
GenericFunc | _mesa_dlsym (void *handle, const char *fname) |
Wrapper for dlsym() that does a cast to a generic function type, rather than a void *. | |
void | _mesa_dlclose (void *handle) |
Wrapper for dlclose(). |
typedef void(* GenericFunc)(void) |
void _mesa_dlclose | ( | void * | handle | ) |
Wrapper for dlclose().
void* _mesa_dlopen | ( | const char * | libname, | |
int | flags | |||
) |
Wrapper functions for dlopen(), dlsym(), dlclose().
Note that the ifdef tests for various environments should be expanded. Wrapper for dlopen(). Note that 'flags' isn't used at this time.
GenericFunc _mesa_dlsym | ( | void * | handle, | |
const char * | fname | |||
) |
Wrapper for dlsym() that does a cast to a generic function type, rather than a void *.
This reduces the number of warnings that are generated.