mirror of
https://github.com/holub/mame
synced 2025-05-28 00:31:33 +03:00
24 lines
614 B
C
24 lines
614 B
C
/*********************************************************************
|
|
|
|
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
|