partly implement animations GET/SET spi, the value are store, but win32k ignore them

svn path=/trunk/; revision=28010
This commit is contained in:
Magnus Olsen 2007-07-29 15:55:09 +00:00
parent 06b622635a
commit 336c8d7905

View file

@ -939,6 +939,7 @@ IntSystemParametersInfo(
static BOOL GradientCaptions = TRUE;
static UINT FocusBorderHeight = 1;
static UINT FocusBorderWidth = 1;
static ANIMATIONINFO anim;
if (!bInitialized)
{
@ -1404,6 +1405,18 @@ IntSystemParametersInfo(
*((NONCLIENTMETRICSW*)pvParam) = pMetrics;
break;
}
case SPI_GETANIMATION:
{
ASSERT(pvParam);
*(( ANIMATIONINFO*)pvParam) = anim;
break;
}
case SPI_SETANIMATION:
{
ASSERT(pvParam);
anim = *((ANIMATIONINFO*)pvParam);
bChanged = TRUE;
}
case SPI_SETNONCLIENTMETRICS:
{
ASSERT(pvParam);