View Single Post
Old 05-18-2004, 12:13 PM   #2 (permalink)
joe_bruin
LOAD "*",8,1
 
Join Date: Feb 2003
Location: la.ca.us
Posts: 254
joe_bruin is on a distinguished road
two ways. you can link implicitly, by adding it to the linker parameters of your project. this is the easiest way (and generally what is done with all library dlls). or you can link explicitly by calling LoadLibrary(), linking your functions manually using GetProcAddress(), and releasing the dll with FreeLibrary().

in unix, you would use dlopen() for explicit linking.
joe_bruin is offline   Reply With Quote