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.

27 lines
436 B

  1. #ifndef MAC
  2. #include <security.h>
  3. #endif
  4. #include <bootdefs.h>
  5. #include <ntlmsspi.h>
  6. #include <crypt.h>
  7. #include <cred.h>
  8. BOOL
  9. SspGetWorkstation(
  10. PSSP_CREDENTIAL Credential
  11. );
  12. BOOL
  13. SspGetWorkstation(
  14. PSSP_CREDENTIAL Credential
  15. )
  16. {
  17. //
  18. // We don't necessarily know this during boot. The NTLMSSP
  19. // package will use "none" if we return FALSE here.
  20. //
  21. return FALSE;
  22. }