summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/info.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/info.h')
-rw-r--r--src/emu/info.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/emu/info.h b/src/emu/info.h
new file mode 100644
index 00000000000..76ca3b9e7f3
--- /dev/null
+++ b/src/emu/info.h
@@ -0,0 +1,22 @@
+/***************************************************************************
+
+ info.h
+
+ Dumps the MAME internal data as an XML file.
+
+ Copyright (c) 1996-2007, Nicola Salmoria and the MAME Team.
+ Visit http://mamedev.org for licensing and usage restrictions.
+
+***************************************************************************/
+
+#pragma once
+
+#ifndef __INFO_H__
+#define __INFO_H__
+
+#include "mamecore.h"
+
+/* Print the MAME database in XML format */
+void print_mame_xml(FILE* out, const game_driver* const games[], const char *gamename);
+
+#endif /* __INFO_H__ */