mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-17 03:55:59 +01:00
ifdef windows unicode version of main
This commit is contained in:
parent
4bc6ff063d
commit
4a8d522e29
@ -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.,
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user