summaryrefslogtreecommitdiffstatshomepage
path: root/trunk/src/emu/validity.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/src/emu/validity.h')
-rw-r--r--trunk/src/emu/validity.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/trunk/src/emu/validity.h b/trunk/src/emu/validity.h
new file mode 100644
index 00000000000..9864b229e61
--- /dev/null
+++ b/trunk/src/emu/validity.h
@@ -0,0 +1,20 @@
+/***************************************************************************
+
+ validity.h
+
+ Validity checks
+
+ Copyright Nicola Salmoria and the MAME Team.
+ Visit http://mamedev.org for licensing and usage restrictions.
+
+***************************************************************************/
+
+#pragma once
+
+#ifndef __VALIDITY_H__
+#define __VALIDITY_H__
+
+void validate_drivers(emu_options &options, const game_driver *driver = NULL);
+bool validate_tag(const game_driver &driver, const char *object, const char *tag);
+
+#endif