|
DLL means "Dynamic Link Library". DLL files contain, typically, shared program code that many applications use. Many times, also, they're written for only the application they're delivered with.
Moving DLL's around is not really a good idea as a method to save memory. On PPC's DLL's are often in ROM which can't be moved anyway. Generally speaking, you'll cause more trouble moving DLL's around than it would be worth. Leave 'em alone.
-CB
|