2012-04-29 20:52:25 +02:00
|
|
|
//
|
|
|
|
// NamedEvent_WIN32U.h
|
|
|
|
//
|
|
|
|
// Library: Foundation
|
|
|
|
// Package: Processes
|
|
|
|
// Module: NamedEvent
|
|
|
|
//
|
|
|
|
// Definition of the NamedEventImpl class for Windows.
|
|
|
|
//
|
|
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
|
|
// and Contributors.
|
|
|
|
//
|
2014-05-04 21:02:42 +02:00
|
|
|
// SPDX-License-Identifier: BSL-1.0
|
2012-04-29 20:52:25 +02:00
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef Foundation_NamedEvent_WIN32U_INCLUDED
|
|
|
|
#define Foundation_NamedEvent_WIN32U_INCLUDED
|
|
|
|
|
|
|
|
|
|
|
|
#include "Poco/Foundation.h"
|
|
|
|
#include "Poco/UnWindows.h"
|
|
|
|
|
|
|
|
|
|
|
|
namespace Poco {
|
|
|
|
|
|
|
|
|
|
|
|
class Foundation_API NamedEventImpl
|
|
|
|
{
|
|
|
|
protected:
|
2022-07-07 11:18:20 +02:00
|
|
|
NamedEventImpl(const std::string& name);
|
2012-04-29 20:52:25 +02:00
|
|
|
~NamedEventImpl();
|
|
|
|
void setImpl();
|
|
|
|
void waitImpl();
|
2022-07-07 11:18:20 +02:00
|
|
|
|
2012-04-29 20:52:25 +02:00
|
|
|
private:
|
|
|
|
std::string _name;
|
|
|
|
std::wstring _uname;
|
2022-07-07 11:18:20 +02:00
|
|
|
HANDLE _event;
|
2012-04-29 20:52:25 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace Poco
|
|
|
|
|
|
|
|
|
|
|
|
#endif // Foundation_NamedEvent_WIN32U_INCLUDED
|