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.

45 lines
1003 B

  1. ///////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) Microsoft Corp. All rights reserved.
  4. //
  5. // FILE
  6. //
  7. // NTSamNames.h
  8. //
  9. // SYNOPSIS
  10. //
  11. // This file declares the class NTSamNames.
  12. //
  13. ///////////////////////////////////////////////////////////////////////////////
  14. #ifndef _NTSAMNAMES_H_
  15. #define _NTSAMNAMES_H_
  16. #pragma once
  17. #include "namemapper.h"
  18. ///////////////////////////////////////////////////////////////////////////////
  19. //
  20. // CLASS
  21. //
  22. // NTSamNames
  23. //
  24. // DESCRIPTION
  25. //
  26. // Implements a request handler that converts the RADIUS User-Name
  27. // attribute to a fully qualified NT4 account name.
  28. //
  29. //
  30. ///////////////////////////////////////////////////////////////////////////////
  31. class ATL_NO_VTABLE NTSamNames :
  32. public NameMapper,
  33. public CComCoClass<NTSamNames, &__uuidof(NTSamNames)>
  34. {
  35. public:
  36. IAS_DECLARE_REGISTRY(NTSamNames, 1, 0, IASTypeLibrary)
  37. };
  38. #endif // _NTSAMNAMES_H_