blob: 9a6803bad61f15266981d81820673475d4cefae2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// For licensing and usage information, read docs/winui_license.txt
// MASTER
//****************************************************************************
#pragma once
#ifndef HISTORY_H
#define HISTORY_H
char * GetGameHistory(int driver_index); // Arcade-only builds (HBMAME, ARCADE)
char * GetGameHistory(int driver_index, std::string software); // Builds with software support (MESSUI, MAMEUI)
#endif
|