blob: d7ce280632077fb836dc8ece438cddbe9be57350 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*********************************************************************
debughlp.h
Debugger help engine.
Copyright Nicola Salmoria and the MAME Team.
Visit http://mamedev.org for licensing and usage restrictions.
*********************************************************************/
#ifndef __DEBUGHLP_H__
#define __DEBUGHLP_H__
/***************************************************************************
FUNCTION PROTOTYPES
***************************************************************************/
/* help management */
const char * debug_get_help(const char *tag);
#endif
|