PLplot
5.11.0
|
Go to the source code of this file.
Functions | |
void | lt_dlinit (void) |
void | lt_dlexit (void) |
lt_dlhandle | lt_dlopenext (char *dllname) |
const char * | lt_dlerror () |
void * | lt_dlsym (lt_dlhandle dlhandle, const char *symbol) |
int | lt_dlmakeresident (lt_dlhandle handle) |
Variables | |
lt_dlhandle | lastHandle = NULL |
char | errortext [512] |
Routines that map unix libtool commands to their window equivalent.
Definition in file ltdl_win32.c.
const char* lt_dlerror | ( | ) |
return last error occured. Needs some work :).
Definition at line 96 of file ltdl_win32.c.
on exit free library handles and release allocate memory
Definition at line 50 of file ltdl_win32.c.
initialise variables
Definition at line 42 of file ltdl_win32.c.
int lt_dlmakeresident | ( | lt_dlhandle | handle | ) |
Placeholder that does nothing for now.
handle | Library handle. |
Definition at line 140 of file ltdl_win32.c.
lt_dlhandle lt_dlopenext | ( | char * | dllname | ) |
Try to open shared library with given dllname. If there is no extension given LoadLibrary() assumes .dll. The library must be somewhere in the path or in the current directory.
dllname | The name of shared library. |
Definition at line 73 of file ltdl_win32.c.
void* lt_dlsym | ( | lt_dlhandle | dlhandle, |
const char * | symbol | ||
) |
load symbol from library
dlhandle | Library handle as returned by ltdlopenext(). |
symbol | The name of symbol to load. |
Definition at line 111 of file ltdl_win32.c.
char errortext[512] |
Definition at line 37 of file ltdl_win32.c.
lt_dlhandle lastHandle = NULL |
Definition at line 34 of file ltdl_win32.c.