https://git.reactos.org/?p=reactos.git;a=commitdiff;h=f5b3a1088524854e9d3408d7e894f9d6dba8291d
commit f5b3a1088524854e9d3408d7e894f9d6dba8291d Author: Eric Kohl <[email protected]> AuthorDate: Tue Sep 4 22:41:04 2018 +0200 Commit: Eric Kohl <[email protected]> CommitDate: Tue Sep 4 22:42:47 2018 +0200 [IDL] Add some Flags SamrSetInformationUser.UserInternal2Information --- sdk/include/reactos/idl/sam.idl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sdk/include/reactos/idl/sam.idl b/sdk/include/reactos/idl/sam.idl index 31cb7d3ce2..ba43697a7c 100644 --- a/sdk/include/reactos/idl/sam.idl +++ b/sdk/include/reactos/idl/sam.idl @@ -644,6 +644,10 @@ typedef struct _SAMPR_USER_INTERNAL1_INFORMATION BOOLEAN PasswordExpired; } SAMPR_USER_INTERNAL1_INFORMATION, *PSAMPR_USER_INTERNAL1_INFORMATION; +/* SAMPR_USER_INTERNAL2_INFORMATION.Flags values */ +cpp_quote("#define USER_LOGON_BAD_PASSWORD 0x08000000") +cpp_quote("#define USER_LOGON_SUCCESS 0x10000000") + typedef struct _SAMPR_USER_INTERNAL2_INFORMATION { unsigned long Flags;
