Open ActiveWrl

Trouble Shooting

Open ActiveWrl logo

(last update: 03.07.2003)

If using C++ scripts as dlls on a windows plattform, they have to be compiled with the same compiler and linker options (single threaded, multi threaded) as the component within they are executed.

Dll scripts compiled with VC6.0 can not be loaded into components compiled with .Net and vice versa.

If you are compiling with Visual Studio you might get the following error message:
fatal error C1189: #Fehler :  WINDOWS.H already included.  MFC apps must not #include <windows.h>
This problem occures in the glut.h file if you compile with MFC libraries. You have to include the windows header in the glut.h file like follows:
#if defined(WIN32)
#ifdef _AFXDLL
#include <afx.h>
#else
#include<windows.h>
#endif

The administrator of Open ActiveWrl is mailto:winkelholz@fgan.de SourceForge.net Logo