mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[NtUser]
- Initialize cbSize for animationinfo - Use widechar versions of structures svn path=/trunk/; revision=72646
This commit is contained in:
parent
3776d19ec9
commit
47b4a945d2
2 changed files with 6 additions and 5 deletions
|
@ -312,6 +312,7 @@ SpiUpdatePerUserSystemParameters(VOID)
|
|||
gspv.serialkeys.cbSize = sizeof(SERIALKEYS);
|
||||
gspv.soundsentry.cbSize = sizeof(SOUNDSENTRYW);
|
||||
gspv.highcontrast.cbSize = sizeof(HIGHCONTRASTW);
|
||||
gspv.animationinfo.cbSize = sizeof(ANIMATIONINFO);
|
||||
|
||||
/* Make sure we don't use broken values */
|
||||
SpiFixupValues();
|
||||
|
|
|
@ -52,7 +52,7 @@ typedef struct _SPIVALUES
|
|||
|
||||
/* Accessability */
|
||||
ACCESSTIMEOUT accesstimeout;
|
||||
HIGHCONTRAST highcontrast;
|
||||
HIGHCONTRASTW highcontrast;
|
||||
BOOL bScreenReader;
|
||||
#if(WINVER >= 0x0600)
|
||||
AUDIODESCRIPTION audiodescription;
|
||||
|
@ -63,7 +63,7 @@ typedef struct _SPIVALUES
|
|||
#endif
|
||||
|
||||
/* Sound */
|
||||
SOUNDSENTRY soundsentry;
|
||||
SOUNDSENTRYW soundsentry;
|
||||
BOOL bShowSounds;
|
||||
BOOL bBeep;
|
||||
|
||||
|
@ -175,11 +175,11 @@ typedef union _SPIBUFFER
|
|||
STICKYKEYS stickykeys;
|
||||
ACCESSTIMEOUT accesstimeout;
|
||||
SERIALKEYS serialkeys;
|
||||
SOUNDSENTRY soundsentry;
|
||||
SOUNDSENTRYW soundsentry;
|
||||
NONCLIENTMETRICSW ncmetrics;
|
||||
MINIMIZEDMETRICS mmmetrics;
|
||||
ICONMETRICS iconmetrics;
|
||||
HIGHCONTRAST highcontrast;
|
||||
ICONMETRICSW iconmetrics;
|
||||
HIGHCONTRASTW highcontrast;
|
||||
ANIMATIONINFO animationinfo;
|
||||
#if(WINVER >= 0x0600)
|
||||
AUDIODESCRIPTION audiodescription;
|
||||
|
|
Loading…
Reference in a new issue