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.

41 lines
605 B

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name :
  4. html.h
  5. Abstract:
  6. This header declares functions for starting and ending an HTML page.
  7. Author:
  8. Kyle Geiger (kyleg) 1995-12-1
  9. Revision History:
  10. --*/
  11. # ifndef _HTML_H_
  12. # define _HTML_H_
  13. void StartHTML(char * s, int fNoCache);
  14. void EndHTML();
  15. void TranslateEscapes(char * p, DWORD l);
  16. void TranslateEscapes2(char * p, DWORD l);
  17. //
  18. // Converts SPACE to + for cgi arguments
  19. //
  20. void
  21. ConvertSP2Plus(
  22. char * String1,
  23. char * String2
  24. );
  25. #endif