PLplot
5.13.0
|
Go to the source code of this file.
Functions | |
void | lt_dlinit (void) |
void | lt_dlexit (void) |
lt_dlhandle | lt_dlopenext (char *dllname) |
PLCHAR_VECTOR | lt_dlerror () |
void * | lt_dlsym (lt_dlhandle dlhandle, PLCHAR_VECTOR 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.
PLCHAR_VECTOR lt_dlerror | ( | ) |
return last error occured. Needs some work :).
Definition at line 97 of file ltdl_win32.c.
void lt_dlexit | ( | void | ) |
on exit free library handles and release allocate memory
Definition at line 51 of file ltdl_win32.c.
void lt_dlinit | ( | void | ) |
initialise variables
Definition at line 43 of file ltdl_win32.c.
int lt_dlmakeresident | ( | lt_dlhandle | handle | ) |
Placeholder that does nothing for now.
handle | Library handle. |
Definition at line 141 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 74 of file ltdl_win32.c.
void* lt_dlsym | ( | lt_dlhandle | dlhandle, |
PLCHAR_VECTOR | symbol | ||
) |
load symbol from library
dlhandle | Library handle as returned by ltdlopenext(). |
symbol | The name of symbol to load. |
Definition at line 112 of file ltdl_win32.c.
char errortext[512] |
Definition at line 38 of file ltdl_win32.c.
lt_dlhandle lastHandle = NULL |
Definition at line 35 of file ltdl_win32.c.