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.

35 lines
923 B

  1. //+-----------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (c) Microsoft Corporation 1992 - 1996
  6. //
  7. // File: miscapi.cxx
  8. //
  9. // Contents: Code for miscellaneous lsa mode NtLm entrypoints
  10. // Main entry points in the dll:
  11. // SpGetUserInfo
  12. //
  13. //
  14. // History: ChandanS 26-Jul-1996 Stolen from kerberos\client2\miscapi.cxx
  15. //
  16. //------------------------------------------------------------------------
  17. #include <global.h>
  18. NTSTATUS NTAPI
  19. SpGetUserInfo(
  20. IN PLUID LogonId,
  21. IN ULONG Flags,
  22. OUT PSecurityUserData * UserData
  23. )
  24. {
  25. SspPrint((SSP_API, "Entering SpGetUserInfo\n"));
  26. UNREFERENCED_PARAMETER(LogonId);
  27. UNREFERENCED_PARAMETER(Flags);
  28. UNREFERENCED_PARAMETER(UserData);
  29. SspPrint((SSP_API, "Leaving SpGetUserInfo\n"));
  30. return(STATUS_NOT_SUPPORTED);
  31. }