Files
mpd/src/event/PollEvents.hxx
Max Kellermann 08dbb4a69a event/BackendEvents: relicense to BSD-2
These headers contain only trivial integer constants and these are
probably not even copyrightable.
2023-03-12 19:53:03 +01:00

13 lines
277 B
C++

// SPDX-License-Identifier: BSD-2-Clause
#pragma once
#include <sys/poll.h>
struct PollEvents {
static constexpr unsigned READ = POLLIN;
static constexpr unsigned WRITE = POLLOUT;
static constexpr unsigned ERROR = POLLERR;
static constexpr unsigned HANGUP = POLLHUP;
};