ifdef windows unicode version of main

This commit is contained in:
Alex Fabijanic 2017-10-16 23:42:27 -05:00
parent 4bc6ff063d
commit 4a8d522e29
2 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,7 @@ public:
/// Note that as of release 1.3.7, init() no longer
/// calls initialize(). This is now called from run().
#if !defined(POCO_NO_WSTRING)
#if defined (POCO_OS_FAMILY_WINDOWS) && !defined(POCO_NO_WSTRING)
void init(int argc, wchar_t* argv[]);
/// Processes the application's command line arguments
/// and sets the application's properties (e.g.,

View File

@ -134,7 +134,7 @@ void Application::init(int argc, char* pArgv[])
}
#if !defined(POCO_NO_WSTRING)
#if defined (POCO_OS_FAMILY_WINDOWS) && !defined(POCO_NO_WSTRING)
void Application::init(int argc, wchar_t* argv[])
{
std::vector<std::string> args;