install evrpc.h header

svn:r342
This commit is contained in:
Niels Provos 2007-03-03 08:16:40 +00:00
parent b5d2f9a255
commit 74f7118d66
2 changed files with 9 additions and 1 deletions

View File

@ -46,7 +46,7 @@ libevent_la_SOURCES = event.c buffer.c evbuffer.c log.c event_tagging.c \
libevent_la_LIBADD = @LTLIBOBJS@ $(SYS_LIBS)
libevent_la_LDFLAGS = -release @VERSION@ -version-info 1:3:0
include_HEADERS = event.h evhttp.h evdns.h
include_HEADERS = event.h evhttp.h evdns.h evrpc.h
INCLUDES = -Icompat $(SYS_INCLUDES)

View File

@ -27,6 +27,10 @@
#ifndef _EVRPC_H_
#define _EVRPC_H_
#ifdef __cplusplus
extern "C" {
#endif
/*
* This header files provides basic support for an RPC server and client.
*
@ -282,4 +286,8 @@ void evrpc_pool_add_connection(struct evrpc_pool *,
*/
void evrpc_pool_set_timeout(struct evrpc_pool *, int timeout_in_secs);
#ifdef __cplusplus
}
#endif
#endif /* _EVRPC_H_ */