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
22 lines
613 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Copyright (C) 1996-1997, Microsoft Corporation.
|
|
//
|
|
// File: cgiesc.hxx
|
|
//
|
|
// Contents: WEB CGI escape & unescape functions
|
|
//
|
|
// History: 96/Jan/3 DwightKr Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
|
|
void DecodeURLEscapes(BYTE * pIn, ULONG & l, WCHAR * pOut, ULONG ulCodePage);
|
|
|
|
void DecodeEscapes(WCHAR * pIn, ULONG & l, WCHAR * pOut);
|
|
void DecodeEscapes(WCHAR * pIn, ULONG & l );
|
|
|
|
void DecodeHtmlNumeric( WCHAR * pIn );
|
|
|