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.

22 lines
613 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Copyright (C) 1996-1997, Microsoft Corporation.
  4. //
  5. // File: cgiesc.hxx
  6. //
  7. // Contents: WEB CGI escape & unescape functions
  8. //
  9. // History: 96/Jan/3 DwightKr Created
  10. //
  11. //----------------------------------------------------------------------------
  12. #pragma once
  13. void DecodeURLEscapes(BYTE * pIn, ULONG & l, WCHAR * pOut, ULONG ulCodePage);
  14. void DecodeEscapes(WCHAR * pIn, ULONG & l, WCHAR * pOut);
  15. void DecodeEscapes(WCHAR * pIn, ULONG & l );
  16. void DecodeHtmlNumeric( WCHAR * pIn );