Assuming you want to integrate a Dll in a language like C++, you will need to create a .lib file for the linker to know how to call the exported functions. The calling convention can be STDCALL or CDECL (which is somewhat standard).

There are several techniques to accomplish this and before I write my own I thought I would see if anyone has been down this road before.