Source code of Windows XP (NT5)
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.

24 lines
483 B

  1. /*
  2. * HTML support functions
  3. * Copyright (C) 2000 Microsoft Corporation
  4. */
  5. #include "precomp.h"
  6. BOOL FDetectHtmlEncodingA(LPCSTR rgch, UINT cch, UINT* pcp)
  7. {
  8. return(FALSE);
  9. UNREFERENCED_PARAMETER( rgch );
  10. UNREFERENCED_PARAMETER( cch );
  11. UNREFERENCED_PARAMETER( pcp );
  12. }
  13. BOOL FDetectHtmlEncodingW(LPCWSTR rgch, UINT cch, UINT* pcp)
  14. {
  15. return(FALSE);
  16. UNREFERENCED_PARAMETER( rgch );
  17. UNREFERENCED_PARAMETER( cch );
  18. UNREFERENCED_PARAMETER( pcp );
  19. }