You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
362 B
C++
23 lines
362 B
C++
// SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
#pragma once
|
|
|
|
#include "event/Features.h"
|
|
|
|
#ifdef _WIN32
|
|
|
|
#include "WinSelectEvents.hxx"
|
|
using EventPollBackendEvents = WinSelectEvents;
|
|
|
|
#elif defined(USE_EPOLL)
|
|
|
|
#include "EpollEvents.hxx"
|
|
using EventPollBackendEvents = EpollEvents;
|
|
|
|
#else
|
|
|
|
#include "PollEvents.hxx"
|
|
using EventPollBackendEvents = PollEvents;
|
|
|
|
#endif
|