Source code of Windows XP (NT5)
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.

14 lines
316 B

  1. //Copyright (c) 1998 - 1999 Microsoft Corporation
  2. #ifndef _SECURITY_H_
  3. #define _SECURITY_H_
  4. struct EVENT_CHECK_TYPE
  5. {
  6. HANDLE handle;
  7. BOOLEAN bEventTriggered;
  8. };
  9. void DirectorySecurityCheck( EVENT_CHECK_TYPE *pDirectoryEventCheck );
  10. void RegistrySecurityCheck( EVENT_CHECK_TYPE *pRegistryEventCheck );
  11. #endif