diff options
author | 2010-01-06 21:09:25 +0000 | |
---|---|---|
committer | 2010-01-06 21:09:25 +0000 | |
commit | 5be4dc8d54d0477346290a2fa5b3d27a6b3590b5 (patch) | |
tree | cd489d025b05e754ce1525bf21a36c5f25efd243 /src/emu/validity.h | |
parent | 5373335acaed149655be371051e77852a994bdd0 (diff) |
Added some missing header declarations and static qualifiers. Added validity.h to the core for consistency as well as an explicit foo.h in each foo.c. [Atari Ace]
---------- Forwarded message ----------
From: Atari Ace <atari_ace@verizon.net>
Date: Sat, Dec 26, 2009 at 5:01 PM
Subject: [patch] Header/static cleanups
To: submit@mamedev.org
Cc: atariace@hotmail.com
- Hide quoted text -
Hi mamedev,
This patch add some missing header declarations and static qualifiers,
and adjusts a few names. In the core, it adds validity.h for
consistency as well as an explicit foo.h in each foo.c.
~aa
Diffstat (limited to 'src/emu/validity.h')
-rw-r--r-- | src/emu/validity.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/emu/validity.h b/src/emu/validity.h new file mode 100644 index 00000000000..314869e2fd2 --- /dev/null +++ b/src/emu/validity.h @@ -0,0 +1,22 @@ +/*************************************************************************** + + validity.h + + Validity checks + + Copyright Nicola Salmoria and the MAME Team. + Visit http://mamedev.org for licensing and usage restrictions. + +***************************************************************************/ + +#pragma once + +#include "mamecore.h" + +#ifndef __VALIDITY_H__ +#define __VALIDITY_H__ + +extern int mame_validitychecks(const game_driver *driver); + +#endif + |