op_xml_events.h revision 84862f9f1c18e2906bd17871ed0970751de7eeae
1/**
2 * @file op_xml_events.h
3 * routines for generating event files in XML
4 *
5 * @remark Copyright 2008 OProfile authors
6 * @remark Read the file COPYING
7 *
8 * @author Dave Nomura
9 */
10
11#ifndef OP_XML_EVENTS_H
12#define OP_XML_EVENTS_H
13
14#include "op_events.h"
15
16void xml_help_for_event(struct op_event const * event);
17void open_xml_events(char const * title, char const * doc, op_cpu cpu_type);
18void close_xml_events(void);
19
20#endif /* OP_XML_EVENTS_H */
21