Minimal changes to compile T3D on WIN64.

This commit is contained in:
LuisAntonRebollo 2014-09-14 21:39:56 +02:00
parent a93f179138
commit 8ed0f508ca
13 changed files with 161 additions and 18 deletions

View file

@ -92,6 +92,23 @@ void Platform::setMathControlStateKnown()
}
}
#else
U32 Platform::getMathControlState( )
{
// @todo x64 See http://msdn.microsoft.com/en-us/library/c9676k6h.aspx
return 0;
}
void Platform::setMathControlState( U32 state )
{
// @todo x64 See http://msdn.microsoft.com/en-us/library/c9676k6h.aspx
}
void Platform::setMathControlStateKnown( )
{
// @todo x64 See http://msdn.microsoft.com/en-us/library/c9676k6h.aspx
}
#endif