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.

51 lines
641 B

  1. /*++
  2. Microsoft Confidential
  3. Copyright (c) 1992-1997 Microsoft Corporation
  4. All rights reserved
  5. Module Name:
  6. sid.h
  7. Abstract:
  8. Public declarations for SID management functions
  9. Author:
  10. (davidc) 26-Aug-1992
  11. Revision History:
  12. 17-Oct-1997 scotthal
  13. Split public declarations into separate header
  14. --*/
  15. #ifndef _SYSDM_SID_H_
  16. #define _SYSDM_SID_H_
  17. //
  18. // Public function prototypes
  19. //
  20. LPTSTR
  21. GetSidString(
  22. void
  23. );
  24. VOID
  25. DeleteSidString(
  26. IN LPTSTR SidString
  27. );
  28. PSID
  29. GetUserSid(
  30. void
  31. );
  32. VOID
  33. DeleteUserSid(
  34. IN PSID Sid
  35. );
  36. #endif // _SYSDM_SID_H_