🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

what can i do with dll's?

Started by
0 comments, last by SigwarthSoft 24 years, 5 months ago
Whats all about with dll''s??? What can i do with dll''s? Sig ICQ: 62538030
Advertisement
The initial idea behind dlls was code sharing at runtime. Take MFC for example. With only one copy of the MFC dlls on your computer, any program that uses the MFC dlls can run on that computer.

Also, since a program doesn''t access the dlls until runtime, you can change the dll or the executable without having to recompile and relink the other. Using this idea is more powerful than it initially sounds. With some creative programming, you can have your program automatically use new dlls when they come availible. Look at 3DS Max and how it loads plugins at runtime.

This topic is closed to new replies.

Advertisement