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.

26 lines
554 B

  1. //*************************************************************
  2. //
  3. // Personal Classes Profile management routines
  4. //
  5. // Microsoft Confidential
  6. // Copyright (c) Microsoft Corporation 1995
  7. // All rights reserved
  8. //
  9. //*************************************************************
  10. #define UNICODE 1
  11. #include "nt.h"
  12. #include "ntrtl.h"
  13. #include "nturtl.h"
  14. #include "windows.h"
  15. #include "userenv.h"
  16. LPTSTR GetSidString(HANDLE UserToken);
  17. VOID DeleteSidString(LPTSTR SidString);
  18. PSID GetUserSid (HANDLE UserToken);
  19. VOID DeleteUserSid(PSID Sid);