As I found there is a way to use DirectX 9 library for projects in Dev-C++,
see link for details.
Will it be possible to add DirectX functionality in Irrlicht.dll for Dev-C++?
http://216.239.51.104/search?q=cache:qP ... n&ie=UTF-8
[the link is from google cache, original page (if you are member of the site GAME TUTORIALS) is here:
http://www.gametutorials.com/forum/topi ... IC_ID=4402]
DirectX 9 for Dev-C++ in Irrlicht
me register soon looking for answers right now
so is it possible to take a vc++ 6.0 source code to a program and compile it in devc++ ?
Sure, but with some restrictions. Some things work with Visual Studio which g++ does not like. For example declaring a method like this:
void foo(const& bar=Bar());
But there are not much constructs which work with one compiler and don't work with the other. If you don't use any of this, it will work with both compilers.
void foo(const& bar=Bar());
But there are not much constructs which work with one compiler and don't work with the other. If you don't use any of this, it will work with both compilers.