| 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. |