When I try to compile in VC++ 6 I get an error saying that there are undeclared identifiers. I have even tryed compiling the example code that was used to make the "demo" but I still recieve errors
I have included the correct directory as I am aware of (C:/engine/irrlicht/include)
Some
nope, still get an error
here is what I get:
--------------------Configuration: Demo - Win32 Debug--------------------
Compiling...
CDemo.cpp
Compiling Irrlicht with Visual Studio 6.0, support for DX9 is disabled.
c:\engine\irrlicht\examples\demo\cdemo.cpp(112) : error C2065: 'OutputDebugString' : undeclared identifier
Error executing cl.exe.
Demo.exe - 1 error(s), 0 warning(s)
here is what I get:
--------------------Configuration: Demo - Win32 Debug--------------------
Compiling...
CDemo.cpp
Compiling Irrlicht with Visual Studio 6.0, support for DX9 is disabled.
c:\engine\irrlicht\examples\demo\cdemo.cpp(112) : error C2065: 'OutputDebugString' : undeclared identifier
Error executing cl.exe.
Demo.exe - 1 error(s), 0 warning(s)
CDemo.h only inlcudes windows.h if USE_AUDIERE is defined. If you took out the define for Audiere, cause you don't have it, either get it, or move
outside of the
block.
Code: Select all
#include <windows.h>
Code: Select all
#ifdef USE_AUDIERE
...
#endif