[SDK|UndocUser] - Add missing scroll flags.

svn path=/trunk/; revision=57245
This commit is contained in:
James Tabor 2012-09-06 15:44:10 +00:00
parent 78e5340f6c
commit 93c87d7be9
2 changed files with 6 additions and 0 deletions

View file

@ -2501,6 +2501,9 @@ extern "C" {
#define SW_SCROLLCHILDREN 1
#define SW_INVALIDATE 2
#define SW_ERASE 4
#if(WINVER >= 0x0500)
#define SW_SMOOTHSCROLL 16
#endif
#define SC_SIZE 0xF000
#define SC_MOVE 0xF010
#define SC_MINIMIZE 0xF020

View file

@ -71,6 +71,9 @@
/* NtUserSetScrollInfo mask to return original position before it is change */
#define SIF_PREVIOUSPOS 4096
/* ScrollWindow uses the window DC, ScrollWindowEx doesn't */
#define SW_SCROLLWNDDCE 0x8000
/* Non SDK Queue state flags. */
#define QS_SMRESULT 0x8000 /* see "Undoc. Windows" */