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