This commit is contained in:
Jonathan Campbell
2019-03-20 13:00:59 -07:00
parent 42b0ce4783
commit 61a96dcfd8

View File

@@ -338,6 +338,9 @@ typedef _Iconv<wchar_t,char> IconvFromW;
#if defined(ENABLE_ICONV_WIN32)
# include <windows.h>
/* Alternative implementation (char to WCHAR, or WCHAR to char only) using Microsoft Win32 APIs instead of libiconv.
* For use with embedded or low memory Windows installations or environments where the added load of libiconv would
* be undesirable. */
template <typename srcT,typename dstT> class _IconvWin32 : public _IconvBase<srcT,dstT> {
protected:
using pclass = _IconvBase<srcT,dstT>;