Source
15
15
** You should have received a copy of the GNU General Public License
16
16
** along with this program; if not, write to the Free Software
17
17
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18
18
**/
19
19
20
20
#ifndef ZABBIX_ASYNCPOLLER_H
21
21
#define ZABBIX_ASYNCPOLLER_H
22
22
23
23
#include "zbxcommon.h"
24
24
#ifdef HAVE_LIBEVENT
25
-
#include "event.h"
25
+
#include <event.h>
26
26
27
27
typedef enum
28
28
{
29
29
ZBX_ASYNC_TASK_READ,
30
30
ZBX_ASYNC_TASK_WRITE,
31
31
ZBX_ASYNC_TASK_STOP,
32
32
33
33
}
34
34
zbx_async_task_state_t;
35
35