* fixed previous commit

git-svn-id: trunk@3422 -
This commit is contained in:
florian 2006-05-05 13:08:27 +00:00
parent 5afd8c5e76
commit 4ed1f3657f
2 changed files with 15 additions and 0 deletions

View File

@ -5402,6 +5402,13 @@ const
SYSRGN = 4;
UIS_SET = 1;
UIS_CLEAR = 2;
UIS_INITIALIZE = 3;
UISF_HIDEFOCUS = $1;
UISF_HIDEACCEL = $2;
UISF_ACTIVE = $4;
{$endif read_interface}

View File

@ -1253,6 +1253,14 @@ Type
TWMDestroy = TWMNoParams;
TWMClose = TWMNoParams;
TWMQueryUIState = TWMNoParams;
TWMUIState = record
Msg : UINT;
Action : Word;
Flags : Word;
Unused : HRESULT;
end;
TWMChangeUIState = TWMUIState;
TWMUpdateUIState = TWMUIState;