mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
14 lines
300 B
C++
14 lines
300 B
C++
// -*- C++ -*-
|
|
#include "ace/config-macros.h"
|
|
#include "ace/ace_wchar.h"
|
|
|
|
|
|
|
|
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
|
|
|
#if defined(ACE_HAS_ICONV)
|
|
iconv_t ACE_Wide_To_Ascii::ACE_Wide_To_Ascii_iconv_env = 0;
|
|
iconv_t ACE_Ascii_To_Wide::ACE_Ascii_To_Wide_iconv_env = 0;
|
|
#endif
|
|
|
|
ACE_END_VERSIONED_NAMESPACE_DECL
|