Changed WIN32 guard to _WIN32_IMPLEMENTATION to attempt to avoid Win32 build error

This commit is contained in:
Robert Osfield
2007-12-05 18:32:15 +00:00
parent 0bfdc78f52
commit 9fbec36508

View File

@@ -494,7 +494,7 @@ void RenderSurface::setVisualInfo( VisualInfo *vi )
return;
}
_visualInfo = vi;
#ifdef WIN32
#ifdef _WIN32_IMPLEMENTATION
_ownVisualInfo = false;
#endif
}
@@ -519,7 +519,8 @@ void RenderSurface::setVisualChooser( VisualChooser *vc )
return;
}
_visualChooser = vc;
#ifdef WIN32
#ifdef _WIN32_IMPLEMENTATION
_ownVisualChooser = false;
#endif
}