diff options
author | kavsrf <kavsrf@gmail.com> | 2017-01-23 15:14:28 +0300 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-01-24 16:05:12 +0100 |
commit | 100b79ddfa3c2ecbe29cc1c89277e7e109778094 (patch) | |
tree | d563b0c59d8674b20b7ad36a6317e28d9a643485 | |
parent | 79d1b79745a4e8e98861ab978e4cca6fd8294161 (diff) | |
download | VeraCrypt-100b79ddfa3c2ecbe29cc1c89277e7e109778094.tar.gz VeraCrypt-100b79ddfa3c2ecbe29cc1c89277e7e109778094.zip |
XML wchar_t removed from EFI compile
-rw-r--r-- | src/Common/Xml.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Common/Xml.h b/src/Common/Xml.h index ceae2bf1..2c6612d4 100644 --- a/src/Common/Xml.h +++ b/src/Common/Xml.h @@ -20,9 +20,9 @@ char *XmlGetAttributeText (char *xmlNode, const char *xmlAttrName, char *xmlAttr char *XmlGetNodeText (char *xmlNode, char *xmlText, int xmlTextSize); char *XmlFindElementByAttributeValue (char *xml, char *nodeName, const char *attrName, const char *attrValue); char *XmlQuoteText (const char *textSrc, char *textDst, int textDstMaxSize); -wchar_t *XmlQuoteTextW (const wchar_t *textSrc, wchar_t *textDst, int textDstMaxSize); #if !defined(_UEFI) +wchar_t *XmlQuoteTextW(const wchar_t *textSrc, wchar_t *textDst, int textDstMaxSize); int XmlWriteHeader (FILE *file); int XmlWriteFooter (FILE *file); #endif !defined(_UEFI) |