Imported Upstream version 2.5.1
[ossec-hids.git] / src / analysisd / picviz.h
1 /* @(#) $Id$ */
2
3 /* Copyright (C) 2009 Sebastien Tricaud
4  * Copyright (C) 2009 Trend Micro Inc.
5  * All right reserved.
6  *
7  * This program is a free software; you can redistribute it
8  * and/or modify it under the terms of the GNU General Public
9  * License (version 2) as published by the FSF - Free Software
10  * Foundation
11  */
12
13 #include <stdio.h>
14 #include "eventinfo.h"
15
16 #ifndef _PICVIZ_H_
17 #define _PICVIZ_H_
18
19 void OS_PicvizOpen(char *socket);
20 void OS_PicvizLog(Eventinfo *lf);
21 void OS_PicvizClose(void);
22
23 #endif /* _PICVIZ_H_ */
24