mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-21 19:41:15 +00:00
23 lines
619 B
C++
23 lines
619 B
C++
#include <string.h>
|
|
#include <gme/gme.h>
|
|
|
|
int main()
|
|
{
|
|
AEDI_EXPECT(gme_type_list() != nullptr);
|
|
|
|
const gme_type_t type = gme_ay_type;
|
|
const char* const type_system = "ZX Spectrum";
|
|
const char* const type_ext = "AY";
|
|
|
|
Music_Emu* emu = gme_new_emu(type, 44100);
|
|
AEDI_EXPECT(emu != nullptr);
|
|
AEDI_EXPECT(gme_warning(emu) == nullptr);
|
|
|
|
AEDI_EXPECT(gme_type(emu) == type);
|
|
AEDI_EXPECT(gme_type_multitrack(type) == 1);
|
|
AEDI_EXPECT(strcmp(gme_type_system(type), type_system) == 0);
|
|
AEDI_EXPECT(strcmp(gme_type_extension(type), type_ext) == 0);
|
|
|
|
gme_delete(emu);
|
|
return 0;
|
|
}
|