Fixed issue 505

This commit is contained in:
Nick Bolton
2010-06-05 12:52:30 +00:00
parent a8df07a362
commit f83e91f304
3 changed files with 22 additions and 0 deletions

View File

@@ -48,6 +48,7 @@ CApp::~CApp()
CApp::CArgsBase::CArgsBase() :
#if SYSAPI_WIN32
m_daemon(false), // daemon mode not supported on windows (use --service)
m_debugServiceWait(false),
#else
m_daemon(true), // backward compatibility for unix (daemon by default)
#endif

View File

@@ -39,6 +39,9 @@ public:
const char* m_logFile;
const char* m_display;
CString m_name;
#if SYSAPI_WIN32
bool m_debugServiceWait;
#endif
};
CApp(CArgsBase* args);