windows-nt/Source/XPSP1/NT/shell/osshell/accesory/newpad/nphtml.c
2020-09-26 16:20:57 +08:00

25 lines
483 B
C

/*
* HTML support functions
* Copyright (C) 2000 Microsoft Corporation
*/
#include "precomp.h"
BOOL FDetectHtmlEncodingA(LPCSTR rgch, UINT cch, UINT* pcp)
{
return(FALSE);
UNREFERENCED_PARAMETER( rgch );
UNREFERENCED_PARAMETER( cch );
UNREFERENCED_PARAMETER( pcp );
}
BOOL FDetectHtmlEncodingW(LPCWSTR rgch, UINT cch, UINT* pcp)
{
return(FALSE);
UNREFERENCED_PARAMETER( rgch );
UNREFERENCED_PARAMETER( cch );
UNREFERENCED_PARAMETER( pcp );
}