Wednesday, June 1, 2011

What is an DLL file in Windows

DLL file is an executable file, which implement some functions:
foo(int a, int b)
{
return a+b;
}

the executable of this function could be a DLL, same as .a or .so file in C

Here is more info:
http://www.easydesksoftware.com/dll.htm

No comments: