synced with main repository

This commit is contained in:
Guenter Obiltschnig 2008-01-28 17:30:40 +00:00
parent 239471d354
commit 40e7be0bab
113 changed files with 136 additions and 134 deletions

View File

@ -1,7 +1,7 @@
#
# Makefile
#
# $Id: //poco/Main/Util/Makefile#11 $
# $Id: //poco/svn/Util/Makefile#1 $
#
# Makefile for Poco Util
#

View File

@ -1,7 +1,7 @@
#
# Util.vmsbuild
#
# $Id: //poco/Main/Util/Util.vmsbuild#2 $
# $Id: //poco/svn/Util/Util.vmsbuild#1 $
#
LIB=PocoUtil
AbstractConfiguration

View File

@ -39,7 +39,7 @@
Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
AdditionalDependencies="PocoFoundationd.lib PocoXMLd.lib"
AdditionalDependencies="PocoFoundationd.lib PocoXMLd.lib unicows.lib"
OutputFile="..\bin\PocoUtild.dll"
LinkIncremental="2"
SuppressStartupBanner="TRUE"
@ -104,7 +104,7 @@
Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
AdditionalDependencies="PocoFoundation.lib PocoXML.lib"
AdditionalDependencies="PocoFoundation.lib PocoXML.lib unicows.lib"
OutputFile="..\bin\PocoUtil.dll"
LinkIncremental="1"
SuppressStartupBanner="TRUE"

View File

@ -1,7 +1,7 @@
//
// AbstractConfiguration.h
//
// $Id: //poco/Main/Util/include/Poco/Util/AbstractConfiguration.h#2 $
// $Id: //poco/svn/Util/include/Poco/Util/AbstractConfiguration.h#1 $
//
// Library: Util
// Package: Configuration

View File

@ -1,7 +1,7 @@
//
// Application.h
//
// $Id: //poco/Main/Util/include/Poco/Util/Application.h#15 $
// $Id: //poco/svn/Util/include/Poco/Util/Application.h#1 $
//
// Library: Util
// Package: Application
@ -148,7 +148,7 @@ public:
/// Initializes the application and all registered subsystems,
/// using the given command line arguments.
#if defined(POCO_WIN32_UTF8)
#if defined(POCO_WIN32_UTF8) && !defined(POCO_NO_WSTRING)
void init(int argc, wchar_t* argv[]);
/// Initializes the application and all registered subsystems,
/// using the given command line arguments.
@ -445,7 +445,7 @@ inline Poco::Timespan Application::uptime() const
//
// Macro to implement main()
//
#if defined(_WIN32) && defined(POCO_WIN32_UTF8)
#if defined(_WIN32) && defined(POCO_WIN32_UTF8) && !defined(POCO_NO_WSTRING)
#define POCO_APP_MAIN(App) \
int wmain(int argc, wchar_t** argv) \
{ \

View File

@ -1,7 +1,7 @@
//
// ConfigurationMapper.h
//
// $Id: //poco/Main/Util/include/Poco/Util/ConfigurationMapper.h#2 $
// $Id: //poco/svn/Util/include/Poco/Util/ConfigurationMapper.h#1 $
//
// Library: Util
// Package: Configuration

View File

@ -1,7 +1,7 @@
//
// ConfigurationView.h
//
// $Id: //poco/Main/Util/include/Poco/Util/ConfigurationView.h#2 $
// $Id: //poco/svn/Util/include/Poco/Util/ConfigurationView.h#1 $
//
// Library: Util
// Package: Configuration

View File

@ -1,7 +1,7 @@
//
// FilesystemConfiguration.h
//
// $Id: //poco/Main/Util/include/Poco/Util/FilesystemConfiguration.h#2 $
// $Id: //poco/svn/Util/include/Poco/Util/FilesystemConfiguration.h#1 $
//
// Library: Util
// Package: Configuration

View File

@ -1,7 +1,7 @@
//
// HelpFormatter.h
//
// $Id: //poco/Main/Util/include/Poco/Util/HelpFormatter.h#2 $
// $Id: //poco/svn/Util/include/Poco/Util/HelpFormatter.h#1 $
//
// Library: Util
// Package: Options

View File

@ -1,7 +1,7 @@
//
// IniFileConfiguration.h
//
// $Id: //poco/Main/Util/include/Poco/Util/IniFileConfiguration.h#2 $
// $Id: //poco/svn/Util/include/Poco/Util/IniFileConfiguration.h#1 $
//
// Library: Util
// Package: Configuration

View File

@ -1,7 +1,7 @@
//
// IntValidator.h
//
// $Id: //poco/Main/Util/include/Poco/Util/IntValidator.h#1 $
// $Id: //poco/svn/Util/include/Poco/Util/IntValidator.h#1 $
//
// Library: Util
// Package: Options

View File

@ -1,7 +1,7 @@
//
// LayeredConfiguration.h
//
// $Id: //poco/Main/Util/include/Poco/Util/LayeredConfiguration.h#3 $
// $Id: //poco/svn/Util/include/Poco/Util/LayeredConfiguration.h#1 $
//
// Library: Util
// Package: Configuration

View File

@ -1,7 +1,7 @@
//
// LoggingConfigurator.h
//
// $Id: //poco/Main/Util/include/Poco/Util/LoggingConfigurator.h#3 $
// $Id: //poco/svn/Util/include/Poco/Util/LoggingConfigurator.h#1 $
//
// Library: Util
// Package: Configuration

View File

@ -1,7 +1,7 @@
//
// LoggingSubsystem.h
//
// $Id: //poco/Main/Util/include/Poco/Util/LoggingSubsystem.h#2 $
// $Id: //poco/svn/Util/include/Poco/Util/LoggingSubsystem.h#1 $
//
// Library: Util
// Package: Application

View File

@ -1,7 +1,7 @@
//
// MapConfiguration.h
//
// $Id: //poco/Main/Util/include/Poco/Util/MapConfiguration.h#2 $
// $Id: //poco/svn/Util/include/Poco/Util/MapConfiguration.h#1 $
//
// Library: Util
// Package: Configuration

View File

@ -1,7 +1,7 @@
//
// Option.h
//
// $Id: //poco/Main/Util/include/Poco/Util/Option.h#5 $
// $Id: //poco/svn/Util/include/Poco/Util/Option.h#2 $
//
// Library: Util
// Package: Options
@ -104,7 +104,7 @@ public:
Option(const std::string& fullName, const std::string& shortName, const std::string& description, bool required = false);
/// Creates an option with the given properties.
Option(const std::string& fullName, const std::string& shortName, const std::string& description, bool required, const std::string& argName, bool argOptional = false);
Option(const std::string& fullName, const std::string& shortName, const std::string& description, bool required, const std::string& argName, bool argRequired = false);
/// Creates an option with the given properties.
~Option();

View File

@ -1,7 +1,7 @@
//
// OptionCallback.h
//
// $Id: //poco/Main/Util/include/Poco/Util/OptionCallback.h#3 $
// $Id: //poco/svn/Util/include/Poco/Util/OptionCallback.h#1 $
//
// Library: Util
// Package: Options

View File

@ -1,7 +1,7 @@
//
// OptionException.h
//
// $Id: //poco/Main/Util/include/Poco/Util/OptionException.h#3 $
// $Id: //poco/svn/Util/include/Poco/Util/OptionException.h#1 $
//
// Library: Util
// Package: Options

View File

@ -1,7 +1,7 @@
//
// OptionProcessor.h
//
// $Id: //poco/Main/Util/include/Poco/Util/OptionProcessor.h#3 $
// $Id: //poco/svn/Util/include/Poco/Util/OptionProcessor.h#1 $
//
// Library: Util
// Package: Options

View File

@ -1,7 +1,7 @@
//
// OptionSet.h
//
// $Id: //poco/Main/Util/include/Poco/Util/OptionSet.h#2 $
// $Id: //poco/svn/Util/include/Poco/Util/OptionSet.h#1 $
//
// Library: Util
// Package: Options

View File

@ -1,7 +1,7 @@
//
// PropertyFileConfiguration.h
//
// $Id: //poco/Main/Util/include/Poco/Util/PropertyFileConfiguration.h#2 $
// $Id: //poco/svn/Util/include/Poco/Util/PropertyFileConfiguration.h#1 $
//
// Library: Util
// Package: Configuration

View File

@ -1,7 +1,7 @@
//
// RegExpValidator.h
//
// $Id: //poco/Main/Util/include/Poco/Util/RegExpValidator.h#1 $
// $Id: //poco/svn/Util/include/Poco/Util/RegExpValidator.h#1 $
//
// Library: Util
// Package: Options

View File

@ -1,7 +1,7 @@
//
// ServerApplication.h
//
// $Id: //poco/Main/Util/include/Poco/Util/ServerApplication.h#5 $
// $Id: //poco/svn/Util/include/Poco/Util/ServerApplication.h#1 $
//
// Library: Util
// Package: Application
@ -141,7 +141,7 @@ public:
/// Runs the application by performing additional initializations
/// and calling the main() method.
#if defined(POCO_WIN32_UTF8)
#if defined(POCO_WIN32_UTF8) && !defined(POCO_NO_WSTRING)
int run(int argc, wchar_t** argv);
/// Runs the application by performing additional initializations
/// and calling the main() method.
@ -170,7 +170,7 @@ private:
};
static BOOL __stdcall ConsoleCtrlHandler(DWORD ctrlType);
static void __stdcall ServiceControlHandler(DWORD control);
#if defined(POCO_WIN32_UTF8)
#if defined(POCO_WIN32_UTF8) && !defined(POCO_NO_WSTRING)
static void __stdcall ServiceMain(DWORD argc, LPWSTR* argv);
#else
static void __stdcall ServiceMain(DWORD argc, LPTSTR* argv);

View File

@ -1,7 +1,7 @@
//
// Subsystem.h
//
// $Id: //poco/Main/Util/include/Poco/Util/Subsystem.h#4 $
// $Id: //poco/svn/Util/include/Poco/Util/Subsystem.h#1 $
//
// Library: Util
// Package: Application

View File

@ -1,7 +1,7 @@
//
// SystemConfiguration.h
//
// $Id: //poco/Main/Util/include/Poco/Util/SystemConfiguration.h#3 $
// $Id: //poco/svn/Util/include/Poco/Util/SystemConfiguration.h#1 $
//
// Library: Util
// Package: Configuration

View File

@ -1,7 +1,7 @@
//
// Util.h
//
// $Id: //poco/Main/Util/include/Poco/Util/Util.h#3 $
// $Id: //poco/svn/Util/include/Poco/Util/Util.h#1 $
//
// Library: Util
// Package: Util

View File

@ -1,7 +1,7 @@
//
// Validator.h
//
// $Id: //poco/Main/Util/include/Poco/Util/Validator.h#1 $
// $Id: //poco/svn/Util/include/Poco/Util/Validator.h#1 $
//
// Library: Util
// Package: Options

View File

@ -1,7 +1,7 @@
//
// WinRegistryConfiguration.h
//
// $Id: //poco/Main/Util/include/Poco/Util/WinRegistryConfiguration.h#2 $
// $Id: //poco/svn/Util/include/Poco/Util/WinRegistryConfiguration.h#1 $
//
// Library: Util
// Package: Windows

View File

@ -1,7 +1,7 @@
//
// WinRegistryKey.h
//
// $Id: //poco/Main/Util/include/Poco/Util/WinRegistryKey.h#3 $
// $Id: //poco/svn/Util/include/Poco/Util/WinRegistryKey.h#1 $
//
// Library: Util
// Package: Windows

View File

@ -1,7 +1,7 @@
//
// WinService.h
//
// $Id: //poco/Main/Util/include/Poco/Util/WinService.h#4 $
// $Id: //poco/svn/Util/include/Poco/Util/WinService.h#1 $
//
// Library: Util
// Package: Windows

View File

@ -1,7 +1,7 @@
//
// XMLConfiguration.h
//
// $Id: //poco/Main/Util/include/Poco/Util/XMLConfiguration.h#2 $
// $Id: //poco/svn/Util/include/Poco/Util/XMLConfiguration.h#1 $
//
// Library: Util
// Package: Configuration

View File

@ -1,7 +1,7 @@
#
# Makefile
#
# $Id: //poco/Main/Util/samples/Makefile#3 $
# $Id: //poco/svn/Util/samples/Makefile#1 $
#
# Makefile for Poco Util Samples
#

View File

@ -1,7 +1,7 @@
#
# Makefile
#
# $Id: //poco/Main/Util/samples/SampleApp/Makefile#3 $
# $Id: //poco/svn/Util/samples/SampleApp/Makefile#1 $
#
# Makefile for Poco SampleApp
#

View File

@ -1,7 +1,7 @@
#
# sample.vmsbuild
#
# $Id: //poco/Main/Util/samples/SampleApp/SampleApp.vmsbuild#2 $
# $Id: //poco/svn/Util/samples/SampleApp/SampleApp.vmsbuild#1 $
#
EXE=SampleApp
SampleApp

View File

@ -1,7 +1,7 @@
//
// SampleApp.cpp
//
// $Id: //poco/Main/Util/samples/SampleApp/src/SampleApp.cpp#10 $
// $Id: //poco/svn/Util/samples/SampleApp/src/SampleApp.cpp#1 $
//
// This sample demonstrates the Application class.
//

View File

@ -1,7 +1,7 @@
#
# Makefile
#
# $Id: //poco/Main/Util/samples/SampleServer/Makefile#3 $
# $Id: //poco/svn/Util/samples/SampleServer/Makefile#1 $
#
# Makefile for Poco SampleServer
#

View File

@ -1,7 +1,7 @@
#
# sample.vmsbuild
#
# $Id: //poco/Main/Util/samples/SampleServer/SampleServer.vmsbuild#1 $
# $Id: //poco/svn/Util/samples/SampleServer/SampleServer.vmsbuild#1 $
#
EXE=SampleServer
SampleServer

View File

@ -1,7 +1,7 @@
//
// SampleServer.cpp
//
// $Id: //poco/Main/Util/samples/SampleServer/src/SampleServer.cpp#9 $
// $Id: //poco/svn/Util/samples/SampleServer/src/SampleServer.cpp#1 $
//
// This sample demonstrates the ServerApplication class.
//

View File

@ -1,7 +1,7 @@
//
// AbstractConfiguration.cpp
//
// $Id: //poco/Main/Util/src/AbstractConfiguration.cpp#7 $
// $Id: //poco/svn/Util/src/AbstractConfiguration.cpp#1 $
//
// Library: Util
// Package: Configuration

View File

@ -1,7 +1,7 @@
//
// Application.cpp
//
// $Id: //poco/Main/Util/src/Application.cpp#28 $
// $Id: //poco/svn/Util/src/Application.cpp#1 $
//
// Library: Util
// Package: Application
@ -58,7 +58,7 @@
#if defined(POCO_OS_FAMILY_UNIX)
#include "Poco/SignalHandler.h"
#endif
#if defined(POCO_WIN32_UTF8)
#if defined(POCO_WIN32_UTF8) && !defined(POCO_NO_WSTRING)
#include "Poco/UnicodeConverter.h"
#endif
@ -156,7 +156,7 @@ void Application::init(int argc, char* argv[])
}
#if defined(POCO_WIN32_UTF8)
#if defined(POCO_WIN32_UTF8) && !defined(POCO_NO_WSTRING)
void Application::init(int argc, wchar_t* argv[])
{
std::vector<std::string> args;
@ -398,7 +398,7 @@ void Application::getApplicationPath(Poco::Path& appPath) const
appPath = Path(Path::current(), _command);
}
#elif defined(POCO_OS_FAMILY_WINDOWS)
#if defined(POCO_WIN32_UTF8)
#if defined(POCO_WIN32_UTF8) && !defined(POCO_NO_WSTRING)
wchar_t path[1024];
int n = GetModuleFileNameW(0, path, sizeof(path)/sizeof(wchar_t));
if (n > 0)

View File

@ -1,7 +1,7 @@
//
// ConfigurationMapper.cpp
//
// $Id: //poco/Main/Util/src/ConfigurationMapper.cpp#6 $
// $Id: //poco/svn/Util/src/ConfigurationMapper.cpp#1 $
//
// Library: Util
// Package: Configuration

View File

@ -1,7 +1,7 @@
//
// ConfigurationView.cpp
//
// $Id: //poco/Main/Util/src/ConfigurationView.cpp#7 $
// $Id: //poco/svn/Util/src/ConfigurationView.cpp#1 $
//
// Library: Util
// Package: Configuration

View File

@ -1,7 +1,7 @@
//
// FilesystemConfiguration.cpp
//
// $Id: //poco/Main/Util/src/FilesystemConfiguration.cpp#8 $
// $Id: //poco/svn/Util/src/FilesystemConfiguration.cpp#1 $
//
// Library: Util
// Package: Configuration

View File

@ -1,7 +1,7 @@
//
// HelpFormatter.cpp
//
// $Id: //poco/Main/Util/src/HelpFormatter.cpp#8 $
// $Id: //poco/svn/Util/src/HelpFormatter.cpp#1 $
//
// Library: Util
// Package: Options

View File

@ -1,7 +1,7 @@
//
// IniFileConfiguration.cpp
//
// $Id: //poco/Main/Util/src/IniFileConfiguration.cpp#9 $
// $Id: //poco/svn/Util/src/IniFileConfiguration.cpp#1 $
//
// Library: Util
// Package: Configuration

View File

@ -1,7 +1,7 @@
//
// IntValidator.cpp
//
// $Id: //poco/Main/Util/src/IntValidator.cpp#1 $
// $Id: //poco/svn/Util/src/IntValidator.cpp#1 $
//
// Library: Util
// Package: Options

View File

@ -1,7 +1,7 @@
//
// LayeredConfiguration.cpp
//
// $Id: //poco/Main/Util/src/LayeredConfiguration.cpp#8 $
// $Id: //poco/svn/Util/src/LayeredConfiguration.cpp#1 $
//
// Library: Util
// Package: Configuration

View File

@ -1,7 +1,7 @@
//
// LoggingConfigurator.cpp
//
// $Id: //poco/Main/Util/src/LoggingConfigurator.cpp#12 $
// $Id: //poco/svn/Util/src/LoggingConfigurator.cpp#1 $
//
// Library: Util
// Package: Configuration

View File

@ -1,7 +1,7 @@
//
// LoggingSubsystem.cpp
//
// $Id: //poco/Main/Util/src/LoggingSubsystem.cpp#8 $
// $Id: //poco/svn/Util/src/LoggingSubsystem.cpp#1 $
//
// Library: Util
// Package: Application

View File

@ -1,7 +1,7 @@
//
// MapConfiguration.cpp
//
// $Id: //poco/Main/Util/src/MapConfiguration.cpp#6 $
// $Id: //poco/svn/Util/src/MapConfiguration.cpp#1 $
//
// Library: Util
// Package: Configuration

View File

@ -1,7 +1,7 @@
//
// Option.cpp
//
// $Id: //poco/Main/Util/src/Option.cpp#10 $
// $Id: //poco/svn/Util/src/Option.cpp#2 $
//
// Library: Util
// Package: Options
@ -107,14 +107,14 @@ Option::Option(const std::string& fullName, const std::string& shortName, const
}
Option::Option(const std::string& fullName, const std::string& shortName, const std::string& description, bool required, const std::string& argName, bool argOptional):
Option::Option(const std::string& fullName, const std::string& shortName, const std::string& description, bool required, const std::string& argName, bool argRequired):
_shortName(shortName),
_fullName(fullName),
_description(description),
_required(required),
_repeatable(false),
_argName(argName),
_argRequired(argOptional),
_argRequired(argRequired),
_pValidator(0),
_pCallback(0),
_pConfig(0)
@ -243,7 +243,6 @@ Option& Option::validator(Validator* pValidator)
{
if (_pValidator) _pValidator->release();
_pValidator = pValidator;
if (_pValidator) _pValidator->duplicate();
return *this;
}

View File

@ -1,7 +1,7 @@
//
// OptionCallback.cpp
//
// $Id: //poco/Main/Util/src/OptionCallback.cpp#2 $
// $Id: //poco/svn/Util/src/OptionCallback.cpp#1 $
//
// Library: Util
// Package: Options

View File

@ -1,7 +1,7 @@
//
// OptionException.cpp
//
// $Id: //poco/Main/Util/src/OptionException.cpp#8 $
// $Id: //poco/svn/Util/src/OptionException.cpp#1 $
//
// Library: Util
// Package: Options

View File

@ -1,7 +1,7 @@
//
// OptionProcessor.cpp
//
// $Id: //poco/Main/Util/src/OptionProcessor.cpp#8 $
// $Id: //poco/svn/Util/src/OptionProcessor.cpp#1 $
//
// Library: Util
// Package: Options

View File

@ -1,7 +1,7 @@
//
// OptionSet.cpp
//
// $Id: //poco/Main/Util/src/OptionSet.cpp#8 $
// $Id: //poco/svn/Util/src/OptionSet.cpp#1 $
//
// Library: Util
// Package: Options

View File

@ -1,7 +1,7 @@
//
// PropertyFileConfiguration.cpp
//
// $Id: //poco/Main/Util/src/PropertyFileConfiguration.cpp#9 $
// $Id: //poco/svn/Util/src/PropertyFileConfiguration.cpp#2 $
//
// Library: Util
// Package: Configuration
@ -39,6 +39,7 @@
#include "Poco/String.h"
#include "Poco/Path.h"
#include "Poco/FileStream.h"
#include "Poco/LineEndingConverter.h"
#include <cctype>
@ -109,7 +110,9 @@ void PropertyFileConfiguration::save(const std::string& path) const
Poco::FileOutputStream ostr(path);
if (ostr.good())
{
save(ostr);
Poco::OutputLineEndingConverter lec(ostr);
save(lec);
lec.flush();
ostr.flush();
if (!ostr.good()) throw Poco::WriteFileException(path);
}

View File

@ -1,7 +1,7 @@
//
// RegExpValidator.cpp
//
// $Id: //poco/Main/Util/src/RegExpValidator.cpp#2 $
// $Id: //poco/svn/Util/src/RegExpValidator.cpp#1 $
//
// Library: Util
// Package: Options

View File

@ -1,7 +1,7 @@
//
// ServerApplication.cpp
//
// $Id: //poco/Main/Util/src/ServerApplication.cpp#22 $
// $Id: //poco/svn/Util/src/ServerApplication.cpp#2 $
//
// Library: Util
// Package: Application
@ -53,7 +53,7 @@
#include "Poco/UnWindows.h"
#include <cstring>
#endif
#if defined(POCO_WIN32_UTF8)
#if defined(POCO_WIN32_UTF8) && !defined(POCO_NO_WSTRING)
#include "Poco/UnicodeConverter.h"
#endif
@ -146,7 +146,7 @@ void ServerApplication::ServiceControlHandler(DWORD control)
}
#if defined(POCO_WIN32_UTF8)
#if defined(POCO_WIN32_UTF8) && !defined(POCO_NO_WSTRING)
void ServerApplication::ServiceMain(DWORD argc, LPWSTR* argv)
#else
void ServerApplication::ServiceMain(DWORD argc, LPTSTR* argv)
@ -154,7 +154,9 @@ void ServerApplication::ServiceMain(DWORD argc, LPTSTR* argv)
{
ServerApplication& app = static_cast<ServerApplication&>(Application::instance());
#if defined(POCO_WIN32_UTF8)
app.config().setBool("application.runAsService", true);
#if defined(POCO_WIN32_UTF8) && !defined(POCO_NO_WSTRING)
_serviceStatusHandle = RegisterServiceCtrlHandlerW(L"", ServiceControlHandler);
#else
_serviceStatusHandle = RegisterServiceCtrlHandler("", ServiceControlHandler);
@ -173,7 +175,7 @@ void ServerApplication::ServiceMain(DWORD argc, LPTSTR* argv)
try
{
#if defined(POCO_WIN32_UTF8)
#if defined(POCO_WIN32_UTF8) && !defined(POCO_NO_WSTRING)
std::vector<std::string> args;
for (DWORD i = 0; i < argc; ++i)
{
@ -230,7 +232,6 @@ int ServerApplication::run(int argc, char** argv)
{
if (!hasConsole() && isService())
{
config().setBool("application.runAsService", true);
return 0;
}
else
@ -264,12 +265,11 @@ int ServerApplication::run(int argc, char** argv)
}
#if defined(POCO_WIN32_UTF8)
#if defined(POCO_WIN32_UTF8) && !defined(POCO_NO_WSTRING)
int ServerApplication::run(int argc, wchar_t** argv)
{
if (!hasConsole() && isService())
{
config().setBool("application.runAsService", true);
return 0;
}
else
@ -306,7 +306,7 @@ int ServerApplication::run(int argc, wchar_t** argv)
bool ServerApplication::isService()
{
#if defined(POCO_WIN32_UTF8)
#if defined(POCO_WIN32_UTF8) && !defined(POCO_NO_WSTRING)
SERVICE_TABLE_ENTRYW svcDispatchTable[2];
svcDispatchTable[0].lpServiceName = L"";
svcDispatchTable[0].lpServiceProc = ServiceMain;

View File

@ -1,7 +1,7 @@
//
// Subsystem.cpp
//
// $Id: //poco/Main/Util/src/Subsystem.cpp#8 $
// $Id: //poco/svn/Util/src/Subsystem.cpp#1 $
//
// Library: Util
// Package: Application

View File

@ -1,7 +1,7 @@
//
// SystemConfiguration.cpp
//
// $Id: //poco/Main/Util/src/SystemConfiguration.cpp#6 $
// $Id: //poco/svn/Util/src/SystemConfiguration.cpp#1 $
//
// Library: Util
// Package: Configuration

View File

@ -1,7 +1,7 @@
//
// Validator.cpp
//
// $Id: //poco/Main/Util/src/Validator.cpp#1 $
// $Id: //poco/svn/Util/src/Validator.cpp#1 $
//
// Library: Util
// Package: Options

View File

@ -1,7 +1,7 @@
//
// WinRegistryConfiguration.cpp
//
// $Id: //poco/Main/Util/src/WinRegistryConfiguration.cpp#7 $
// $Id: //poco/svn/Util/src/WinRegistryConfiguration.cpp#1 $
//
// Library: Util
// Package: Windows

View File

@ -1,7 +1,7 @@
//
// WinRegistryKey.cpp
//
// $Id: //poco/Main/Util/src/WinRegistryKey.cpp#13 $
// $Id: //poco/svn/Util/src/WinRegistryKey.cpp#1 $
//
// Library: Util
// Package: Windows

View File

@ -1,7 +1,7 @@
//
// WinService.cpp
//
// $Id: //poco/Main/Util/src/WinService.cpp#10 $
// $Id: //poco/svn/Util/src/WinService.cpp#1 $
//
// Library: Util
// Package: Windows

View File

@ -1,7 +1,7 @@
//
// XMLConfiguration.cpp
//
// $Id: //poco/Main/Util/src/XMLConfiguration.cpp#6 $
// $Id: //poco/svn/Util/src/XMLConfiguration.cpp#1 $
//
// Library: Util
// Package: Configuration

View File

@ -1,7 +1,7 @@
#
# Makefile
#
# $Id: //poco/Main/Util/testsuite/Makefile#5 $
# $Id: //poco/svn/Util/testsuite/Makefile#1 $
#
# Makefile for Poco Util testsuite
#

View File

@ -1,7 +1,7 @@
#
# TestSuite.vmsbuild
#
# $Id: //poco/Main/Util/testsuite/TestSuite.vmsbuild#3 $
# $Id: //poco/svn/Util/testsuite/TestSuite.vmsbuild#1 $
#
EXE=TestRunner
AbstractConfigurationTest

View File

@ -1,7 +1,7 @@
//
// AbstractConfigurationTest.cpp
//
// $Id: //poco/Main/Util/testsuite/src/AbstractConfigurationTest.cpp#6 $
// $Id: //poco/svn/Util/testsuite/src/AbstractConfigurationTest.cpp#1 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.

View File

@ -1,7 +1,7 @@
//
// AbstractConfigurationTest.h
//
// $Id: //poco/Main/Util/testsuite/src/AbstractConfigurationTest.h#5 $
// $Id: //poco/svn/Util/testsuite/src/AbstractConfigurationTest.h#1 $
//
// Definition of the AbstractConfigurationTest class.
//

View File

@ -1,7 +1,7 @@
//
// ConfigurationMapperTest.cpp
//
// $Id: //poco/Main/Util/testsuite/src/ConfigurationMapperTest.cpp#5 $
// $Id: //poco/svn/Util/testsuite/src/ConfigurationMapperTest.cpp#1 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.

View File

@ -1,7 +1,7 @@
//
// ConfigurationMapperTest.h
//
// $Id: //poco/Main/Util/testsuite/src/ConfigurationMapperTest.h#5 $
// $Id: //poco/svn/Util/testsuite/src/ConfigurationMapperTest.h#1 $
//
// Definition of the ConfigurationMapperTest class.
//

View File

@ -1,7 +1,7 @@
//
// ConfigurationTestSuite.cpp
//
// $Id: //poco/Main/Util/testsuite/src/ConfigurationTestSuite.cpp#6 $
// $Id: //poco/svn/Util/testsuite/src/ConfigurationTestSuite.cpp#1 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.

View File

@ -1,7 +1,7 @@
//
// ConfigurationTestSuite.h
//
// $Id: //poco/Main/Util/testsuite/src/ConfigurationTestSuite.h#4 $
// $Id: //poco/svn/Util/testsuite/src/ConfigurationTestSuite.h#1 $
//
// Definition of the ConfigurationTestSuite class.
//

View File

@ -1,7 +1,7 @@
//
// ConfigurationViewTest.cpp
//
// $Id: //poco/Main/Util/testsuite/src/ConfigurationViewTest.cpp#6 $
// $Id: //poco/svn/Util/testsuite/src/ConfigurationViewTest.cpp#1 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.

View File

@ -1,7 +1,7 @@
//
// ConfigurationViewTest.h
//
// $Id: //poco/Main/Util/testsuite/src/ConfigurationViewTest.h#5 $
// $Id: //poco/svn/Util/testsuite/src/ConfigurationViewTest.h#1 $
//
// Definition of the ConfigurationViewTest class.
//

View File

@ -1,7 +1,7 @@
//
// Driver.cpp
//
// $Id: //poco/Main/Util/testsuite/src/Driver.cpp#5 $
// $Id: //poco/svn/Util/testsuite/src/Driver.cpp#1 $
//
// Console-based test driver for Poco Util.
//

View File

@ -1,7 +1,7 @@
//
// FilesystemConfigurationTest.cpp
//
// $Id: //poco/Main/Util/testsuite/src/FilesystemConfigurationTest.cpp#6 $
// $Id: //poco/svn/Util/testsuite/src/FilesystemConfigurationTest.cpp#1 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.

View File

@ -1,7 +1,7 @@
//
// FilesystemConfigurationTest.h
//
// $Id: //poco/Main/Util/testsuite/src/FilesystemConfigurationTest.h#4 $
// $Id: //poco/svn/Util/testsuite/src/FilesystemConfigurationTest.h#1 $
//
// Definition of the FilesystemConfigurationTest class.
//

View File

@ -1,7 +1,7 @@
//
// HelpFormatterTest.cpp
//
// $Id: //poco/Main/Util/testsuite/src/HelpFormatterTest.cpp#6 $
// $Id: //poco/svn/Util/testsuite/src/HelpFormatterTest.cpp#1 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.

View File

@ -1,7 +1,7 @@
//
// HelpFormatterTest.h
//
// $Id: //poco/Main/Util/testsuite/src/HelpFormatterTest.h#4 $
// $Id: //poco/svn/Util/testsuite/src/HelpFormatterTest.h#1 $
//
// Definition of the HelpFormatterTest class.
//

View File

@ -1,7 +1,7 @@
//
// IniFileConfigurationTest.cpp
//
// $Id: //poco/Main/Util/testsuite/src/IniFileConfigurationTest.cpp#5 $
// $Id: //poco/svn/Util/testsuite/src/IniFileConfigurationTest.cpp#1 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.

View File

@ -1,7 +1,7 @@
//
// IniFileConfigurationTest.h
//
// $Id: //poco/Main/Util/testsuite/src/IniFileConfigurationTest.h#4 $
// $Id: //poco/svn/Util/testsuite/src/IniFileConfigurationTest.h#1 $
//
// Definition of the IniFileConfigurationTest class.
//

View File

@ -1,7 +1,7 @@
//
// LayeredConfigurationTest.cpp
//
// $Id: //poco/Main/Util/testsuite/src/LayeredConfigurationTest.cpp#6 $
// $Id: //poco/svn/Util/testsuite/src/LayeredConfigurationTest.cpp#1 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.

View File

@ -1,7 +1,7 @@
//
// LayeredConfigurationTest.h
//
// $Id: //poco/Main/Util/testsuite/src/LayeredConfigurationTest.h#5 $
// $Id: //poco/svn/Util/testsuite/src/LayeredConfigurationTest.h#1 $
//
// Definition of the LayeredConfigurationTest class.
//

View File

@ -1,7 +1,7 @@
//
// LoggingConfiguratorTest.cpp
//
// $Id: //poco/Main/Util/testsuite/src/LoggingConfiguratorTest.cpp#6 $
// $Id: //poco/svn/Util/testsuite/src/LoggingConfiguratorTest.cpp#1 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.

View File

@ -1,7 +1,7 @@
//
// LoggingConfiguratorTest.h
//
// $Id: //poco/Main/Util/testsuite/src/LoggingConfiguratorTest.h#4 $
// $Id: //poco/svn/Util/testsuite/src/LoggingConfiguratorTest.h#1 $
//
// Definition of the LoggingConfiguratorTest class.
//

View File

@ -1,7 +1,7 @@
//
// MapConfigurationTest.cpp
//
// $Id: //poco/Main/Util/testsuite/src/MapConfigurationTest.cpp#5 $
// $Id: //poco/svn/Util/testsuite/src/MapConfigurationTest.cpp#1 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.

View File

@ -1,7 +1,7 @@
//
// MapConfigurationTest.h
//
// $Id: //poco/Main/Util/testsuite/src/MapConfigurationTest.h#4 $
// $Id: //poco/svn/Util/testsuite/src/MapConfigurationTest.h#1 $
//
// Definition of the MapConfigurationTest class.
//

View File

@ -1,7 +1,7 @@
//
// OptionProcessorTest.cpp
//
// $Id: //poco/Main/Util/testsuite/src/OptionProcessorTest.cpp#6 $
// $Id: //poco/svn/Util/testsuite/src/OptionProcessorTest.cpp#1 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.

View File

@ -1,7 +1,7 @@
//
// OptionProcessorTest.h
//
// $Id: //poco/Main/Util/testsuite/src/OptionProcessorTest.h#5 $
// $Id: //poco/svn/Util/testsuite/src/OptionProcessorTest.h#1 $
//
// Definition of the OptionProcessorTest class.
//

View File

@ -1,7 +1,7 @@
//
// OptionSetTest.cpp
//
// $Id: //poco/Main/Util/testsuite/src/OptionSetTest.cpp#6 $
// $Id: //poco/svn/Util/testsuite/src/OptionSetTest.cpp#1 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.

View File

@ -1,7 +1,7 @@
//
// OptionSetTest.h
//
// $Id: //poco/Main/Util/testsuite/src/OptionSetTest.h#4 $
// $Id: //poco/svn/Util/testsuite/src/OptionSetTest.h#1 $
//
// Definition of the OptionSetTest class.
//

View File

@ -1,7 +1,7 @@
//
// OptionTest.cpp
//
// $Id: //poco/Main/Util/testsuite/src/OptionTest.cpp#6 $
// $Id: //poco/svn/Util/testsuite/src/OptionTest.cpp#1 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.

View File

@ -1,7 +1,7 @@
//
// OptionTest.h
//
// $Id: //poco/Main/Util/testsuite/src/OptionTest.h#4 $
// $Id: //poco/svn/Util/testsuite/src/OptionTest.h#1 $
//
// Definition of the OptionTest class.
//

View File

@ -1,7 +1,7 @@
//
// OptionsTestSuite.cpp
//
// $Id: //poco/Main/Util/testsuite/src/OptionsTestSuite.cpp#5 $
// $Id: //poco/svn/Util/testsuite/src/OptionsTestSuite.cpp#1 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.

View File

@ -1,7 +1,7 @@
//
// OptionsTestSuite.h
//
// $Id: //poco/Main/Util/testsuite/src/OptionsTestSuite.h#4 $
// $Id: //poco/svn/Util/testsuite/src/OptionsTestSuite.h#1 $
//
// Definition of the OptionsTestSuite class.
//

View File

@ -1,7 +1,7 @@
//
// PropertyFileConfigurationTest.cpp
//
// $Id: //poco/Main/Util/testsuite/src/PropertyFileConfigurationTest.cpp#5 $
// $Id: //poco/svn/Util/testsuite/src/PropertyFileConfigurationTest.cpp#1 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.

View File

@ -1,7 +1,7 @@
//
// PropertyFileConfigurationTest.h
//
// $Id: //poco/Main/Util/testsuite/src/PropertyFileConfigurationTest.h#4 $
// $Id: //poco/svn/Util/testsuite/src/PropertyFileConfigurationTest.h#1 $
//
// Definition of the PropertyFileConfigurationTest class.
//

View File

@ -1,7 +1,7 @@
//
// SystemConfigurationTest.cpp
//
// $Id: //poco/Main/Util/testsuite/src/SystemConfigurationTest.cpp#5 $
// $Id: //poco/svn/Util/testsuite/src/SystemConfigurationTest.cpp#1 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.

View File

@ -1,7 +1,7 @@
//
// SystemConfigurationTest.h
//
// $Id: //poco/Main/Util/testsuite/src/SystemConfigurationTest.h#4 $
// $Id: //poco/svn/Util/testsuite/src/SystemConfigurationTest.h#1 $
//
// Definition of the SystemConfigurationTest class.
//

Some files were not shown because too many files have changed in this diff Show More