blob: b70739658a84e2382a521fcb6be21d0a8e908cfe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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__
bool mame_validitychecks(const game_driver *driver);
bool validate_tag(const game_driver *driver, const char *object, const char *tag);
#endif
|