Compiling reference implementation on VS.NET

Hasany body had any success in compiling the reference implementation on VS.NET (7.1)? I am getting the most bizarre error messages like

c:\src\gles-1.0c\GLES\egl.h(160) : error C2040: ‘EGLConfig’ : ‘int’ differs in levels of indirection from ‘void *’

for a line that reads

GLAPI EGLBoolean APIENTRY eglChooseConfig (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config);

I already checked all the compiler options, include directories and even had a look at the preprocessed source, but no clue so far…

Any help is appreciated,
HM

[ March 28, 2004: Message edited by: Hans-Martin Will ]

Oh well, found it myself:

stdint.h is missing in VS.NET, yet the definitions of int32_t and the like have already been moved out of <sys/types.h> into this file…

This topic was automatically closed 183 days after the last reply. New replies are no longer allowed.