It seems to have created the dll. My C++ is about limited the snippet below.
I don't even know how to do something as basic as this in civ4. Is there a quick 'n' dirty way of putting in a pop up text message so that i can make a test mod to see if it's working?
Is there a simpler freeware compiler for a win32 machine than codeblocks? Just to learn c++ basics? I was using the file test.c below as a test out of my knowledge and i failed miserably; couldn't figure out how to use codeblocks as a straight compiler rather than looking for a project etc.

I don't even know how to do something as basic as this in civ4. Is there a quick 'n' dirty way of putting in a pop up text message so that i can make a test mod to see if it's working?
Is there a simpler freeware compiler for a win32 machine than codeblocks? Just to learn c++ basics? I was using the file test.c below as a test out of my knowledge and i failed miserably; couldn't figure out how to use codeblocks as a straight compiler rather than looking for a project etc.
Spoiler :
Code:
#include <iostream.h>
main()
{
cout << "Hello World!";
return 0;
}