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.

31 lines
1004 B

  1. // SecurityAttributes.h: interface for the CSecurityAttributes class.
  2. //
  3. // (c) Copyright Schlumberger Technology Corp., unpublished work, created
  4. // 2001. This computer program includes Confidential, Proprietary
  5. // Information and is a Trade Secret of Schlumberger Technology Corp. All
  6. // use, disclosure, and/or reproduction is prohibited unless authorized
  7. // in writing. All Rights Reserved.
  8. //////////////////////////////////////////////////////////////////////
  9. #if !defined(AFX_SECURITYATTRIBUTES_H__372E2879_069C_4C84_8E1C_CFB50EE49DFE__INCLUDED_)
  10. #define AFX_SECURITYATTRIBUTES_H__372E2879_069C_4C84_8E1C_CFB50EE49DFE__INCLUDED_
  11. #if _MSC_VER > 1000
  12. #pragma once
  13. #endif // _MSC_VER > 1000
  14. #include <windows.h>
  15. class CSecurityAttributes
  16. {
  17. public:
  18. CSecurityAttributes();
  19. virtual ~CSecurityAttributes();
  20. SECURITY_ATTRIBUTES sa;
  21. PSID pEveryoneSID;
  22. PACL pACL;
  23. };
  24. #endif // !defined(AFX_SECURITYATTRIBUTES_H__372E2879_069C_4C84_8E1C_CFB50EE49DFE__INCLUDED_)