mirror of
https://github.com/holub/mame
synced 2025-05-09 15:51:48 +03:00
18 lines
364 B
C
18 lines
364 B
C
/*********************************************************************
|
|
|
|
hashfile.h
|
|
|
|
Code for parsing hash info (*.hsi) files
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef __HASHFILE_H__
|
|
#define __HASHFILE_H__
|
|
|
|
#include "emu.h"
|
|
|
|
|
|
const char *hashfile_extrainfo(device_image_interface &image);
|
|
|
|
#endif /* __HASHFILE_H__ */
|