Hi. DLL files are dynamically linked to a program. If you want to statically link functions to your program they will probably go in a .lib or .obj file, or in your programs' own .exe file. I believe that linking either static or dynamic libraries is a job for your compiler, so what you need to do will depend on which one you're using. Check the documentation and something should show up.
Steven.