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.

25 lines
652 B

  1. /*
  2. * S E C U R I T Y . H
  3. *
  4. * Url security checks. While these would seem to only apply to HttpEXT,
  5. * all impls. that care about ASP execution should really think about this.
  6. *
  7. * Bits stolen from the IIS5 project 'iis5\infocom\cache2\filemisc.cxx' and
  8. * cleaned up to fit in with the DAV sources.
  9. *
  10. * Copyright 1986-1997 Microsoft Corporation, All Rights Reserved
  11. */
  12. #ifndef _SECURITY_H_
  13. #define _SECURITY_H_
  14. SCODE __fastcall
  15. ScCheckIfShortFileName (
  16. /* [in] */ LPCWSTR pwszPath,
  17. /* [in] */ const HANDLE hitUser);
  18. SCODE __fastcall
  19. ScCheckForAltFileStream (
  20. /* [in] */ LPCWSTR pwszPath);
  21. #endif // _SECURITY_H_