mirror of
https://github.com/libretro/beetle-lynx-libretro.git
synced 2024-11-27 10:22:18 +00:00
10 lines
471 B
C++
10 lines
471 B
C++
#ifndef __MDFN_PLAYER_H
|
|
#define __MDFN_PLAYER_H
|
|
|
|
int Player_Init(int tsongs, const std::string &album, const std::string &artist, const std::string ©right,const std::vector<std::string> &snames = std::vector<std::string>());
|
|
int Player_Init(int tsongs, const std::string &album, const std::string &artist, const std::string ©right, char **snames);
|
|
|
|
void Player_Draw(MDFN_Surface *surface, MDFN_Rect *dr, int CurrentSong, int16 *samples, int32 sampcount);
|
|
|
|
#endif
|