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.

47 lines
506 B

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. secure.h
  5. Abstract:
  6. Security related routines
  7. Author:
  8. Colin Brace (ColinBr)
  9. Environment:
  10. User Mode
  11. Revision History:
  12. --*/
  13. #ifndef __SECURE_H__
  14. #define __SECURE_H__
  15. BOOLEAN
  16. DsRolepCreateInterfaceSDs(
  17. VOID
  18. );
  19. DWORD
  20. DsRolepCheckPromoteAccess(
  21. VOID
  22. );
  23. DWORD
  24. DsRolepCheckDemoteAccess(
  25. VOID
  26. );
  27. DWORD
  28. DsRolepGetImpersonationToken(
  29. OUT HANDLE *ImpersonationToken
  30. );
  31. #endif // __SECURE_H__