Merge remote-tracking branch 'gg/development' into gtest-tests

This commit is contained in:
Daniel Buckmaster 2014-08-30 17:51:41 +10:00
commit 5a430af051
47 changed files with 674 additions and 66 deletions

View file

@ -1589,6 +1589,13 @@ DefineEngineFunction( displaySplashWindow, bool, (const char* path), ("art/gui/s
return Platform::displaySplashWindow(path);
}
DefineEngineFunction( closeSplashWindow, void, (),,
"Close our startup splash window.\n\n"
"@note This is currently only implemented on Windows.\n\n"
"@ingroup Platform" )
{
Platform::closeSplashWindow();
}
//-----------------------------------------------------------------------------
DefineEngineFunction( getWebDeployment, bool, (),,