dlls in VC++

Started by
2 comments, last by uncutno 19 years, 8 months ago
Well, my game worked at home. I brough it to work and even on the high spec machines it woudln't work - it couldn't find the openAL32.dll and the glut32.dll. Is there a way of having these compiled into the exe on creating the exe so the users don't have to trawl for dlls on the web ?
Advertisement
Like I told you in the other thread. DLLs are dynamically linked libraries, hence they link at runtime. You need to use a static versions of the libraries, or distrubite the dlls with your app.
ok !
So how do I get the static versions of the libraries ?

cheers
Either: at the homepage of the libs, or:
If open source, you can compile you own...
If not, i think i heard about tools that can convert a lib from dynamic to static... (dll to lib)...
google is you freand, and give you nice links to click. ;-)
-Anders-Oredsson-Norway-

This topic is closed to new replies.

Advertisement