blob: b34ea2d271a51d9243b5933f0161e886f2a29f0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* LuaEvent - Copyright (C) 2007 Thomas Harning <harningt@gmail.com>
* Licensed as LGPL - See doc/COPYING for details */
#ifndef EVENT_BUFFER_H
#define EVENT_BUFFER_H
#include "luaevent.h"
#include <lua.h>
#include <sys/types.h>
#include <sys/time.h>
#include <event.h>
typedef struct {
struct evbuffer* buffer;
} le_buffer;
int event_buffer_register(lua_State* L);
#endif
|