Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.1 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992-1999
  5. //
  6. // File: secobjs.h
  7. //
  8. // Contents: Security object-related defintions
  9. //
  10. // History: 27-Dec-93 MikeSe Created
  11. //
  12. // Notes: This file contains constant definitions used in properties
  13. // of security objects, which cannot (yet) be defined directly
  14. // in the TDL for the property sets.
  15. //
  16. // This file is never included directly. It is included from
  17. // security.h by defining SECURITY_OBJECTS.
  18. //
  19. //----------------------------------------------------------------------------
  20. #ifndef __SECOBJS_H__
  21. #define __SECOBJS_H__
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif
  25. // Account attributes, in PSLoginParameters::AccountAttrs
  26. #define ACCOUNT_DISABLED 0x00000001
  27. #define ACCOUNT_PASSWORD_NOT_REQUIRED 0x00000002
  28. #define ACCOUNT_PASSWORD_CANNOT_CHANGE 0x00000004
  29. #define ACCOUNT_DONT_EXPIRE_PASSWORD 0x00000008
  30. #endif // of ifndef __SECOBJS_H__