2013-11-28 11:37:23 +01:00
|
|
|
/*
|
2020-01-18 19:22:19 +01:00
|
|
|
* Copyright 2003-2020 The Music Player Daemon Project
|
2013-11-28 11:37:23 +01:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MPD_EVENT_POLLGROUP_HXX
|
|
|
|
#define MPD_EVENT_POLLGROUP_HXX
|
|
|
|
|
2020-10-13 16:11:57 +02:00
|
|
|
#include "event/Features.h"
|
2018-11-19 12:49:45 +01:00
|
|
|
|
2020-10-12 12:50:05 +02:00
|
|
|
#ifdef _WIN32
|
2013-11-28 11:37:23 +01:00
|
|
|
|
2013-11-29 09:38:48 +01:00
|
|
|
#include "PollGroupWinSelect.hxx"
|
|
|
|
typedef PollResultGeneric PollResult;
|
|
|
|
typedef PollGroupWinSelect PollGroup;
|
|
|
|
|
2020-10-12 12:50:05 +02:00
|
|
|
#elif defined(USE_EPOLL)
|
|
|
|
|
|
|
|
#include "PollGroupEpoll.hxx"
|
|
|
|
typedef PollResultEpoll PollResult;
|
|
|
|
typedef PollGroupEpoll PollGroup;
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2013-11-30 09:45:56 +01:00
|
|
|
#include "PollGroupPoll.hxx"
|
|
|
|
typedef PollResultGeneric PollResult;
|
|
|
|
typedef PollGroupPoll PollGroup;
|
2020-10-12 12:50:05 +02:00
|
|
|
|
2013-11-30 09:45:56 +01:00
|
|
|
#endif
|
|
|
|
|
2013-11-28 11:37:23 +01:00
|
|
|
#endif
|