1 #ifndef __MDFN_PLAYER_H
2 #define __MDFN_PLAYER_H
3 
4 namespace Mednafen
5 {
6 
7 void Player_Init(int tsongs, const std::string &album, const std::string &artist, const std::string &copyright, const std::vector<std::string> &snames = std::vector<std::string>(), bool override_gi = true) MDFN_COLD;
8 void Player_Draw(MDFN_Surface *surface, MDFN_Rect *dr, int CurrentSong, int16 *samples, int32 sampcount);
9 
10 }
11 
12 #endif
13