Home | History | Annotate | Download | only in libop
      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 
     16 void xml_help_for_event(struct op_event const * event);
     17 void open_xml_events(char const * title, char const * doc, op_cpu cpu_type);
     18 void close_xml_events(void);
     19 
     20 #endif /* OP_XML_EVENTS_H */
     21