🎉 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!

Allegro40.dll

Started by
1 comment, last by BlackReign 19 years, 10 months ago
I have this program: <code> #include <conio.h> #include <iostream> #include "allegro.h" using std::cout; int main (){ allegro_init(); cout << "Allegro version " << allegro_id; cout << "Press any key"; getch(); return 0; } END_OF_MAIN(); </code> and it says I can't run it without Allegro40.dll. I must have installed Allegro improperly or something. I tried downloading allegro40.dll but what folder should I put it in to get the program to work. I am using Dev-C++. Windows XP if it helps. Thanks for any help.
Advertisement
Either put it in the same folder as your .exe, or copy it to your window's system folder.
Thanks a lot, I was thinking I needed to put in the lib folder. I'm stupid.

This topic is closed to new replies.

Advertisement