mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 07:32:57 +00:00
partly implement animations GET/SET spi, the value are store, but win32k ignore them
svn path=/trunk/; revision=28010
This commit is contained in:
parent
06b622635a
commit
336c8d7905
1 changed files with 13 additions and 0 deletions
|
@ -939,6 +939,7 @@ IntSystemParametersInfo(
|
||||||
static BOOL GradientCaptions = TRUE;
|
static BOOL GradientCaptions = TRUE;
|
||||||
static UINT FocusBorderHeight = 1;
|
static UINT FocusBorderHeight = 1;
|
||||||
static UINT FocusBorderWidth = 1;
|
static UINT FocusBorderWidth = 1;
|
||||||
|
static ANIMATIONINFO anim;
|
||||||
|
|
||||||
if (!bInitialized)
|
if (!bInitialized)
|
||||||
{
|
{
|
||||||
|
@ -1404,6 +1405,18 @@ IntSystemParametersInfo(
|
||||||
*((NONCLIENTMETRICSW*)pvParam) = pMetrics;
|
*((NONCLIENTMETRICSW*)pvParam) = pMetrics;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case SPI_GETANIMATION:
|
||||||
|
{
|
||||||
|
ASSERT(pvParam);
|
||||||
|
*(( ANIMATIONINFO*)pvParam) = anim;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case SPI_SETANIMATION:
|
||||||
|
{
|
||||||
|
ASSERT(pvParam);
|
||||||
|
anim = *((ANIMATIONINFO*)pvParam);
|
||||||
|
bChanged = TRUE;
|
||||||
|
}
|
||||||
case SPI_SETNONCLIENTMETRICS:
|
case SPI_SETNONCLIENTMETRICS:
|
||||||
{
|
{
|
||||||
ASSERT(pvParam);
|
ASSERT(pvParam);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue