コード例 #1
0
ファイル: uicommands.c プロジェクト: martinpiper/VICE
static UI_CALLBACK(sound_record_aiff)
{
    sound_record_start("aiff","*.aiff");
}
コード例 #2
0
ファイル: uicommands.c プロジェクト: martinpiper/VICE
static UI_CALLBACK(sound_record_mp3)
{
    sound_record_start("mp3","*.mp3");
}
コード例 #3
0
ファイル: uicommands.c プロジェクト: martinpiper/VICE
static UI_CALLBACK(sound_record_voc)
{
    sound_record_start("voc","*.voc");
}
コード例 #4
0
ファイル: uicommands.c プロジェクト: martinpiper/VICE
static UI_CALLBACK(sound_record_iff)
{
    sound_record_start("iff","*.iff");
}
コード例 #5
0
ファイル: uicommands.c プロジェクト: martinpiper/VICE
static UI_CALLBACK(sound_record_wav)
{
    sound_record_start("wav","*.wav");
}
コード例 #6
0
ファイル: uicommands.c プロジェクト: bobsummerwill/VICE
static UI_CALLBACK(sound_record_mp3)
{
    sound_record_start("mp3", UILIB_FILTER_MP3);
}
コード例 #7
0
ファイル: uicommands.c プロジェクト: bobsummerwill/VICE
static UI_CALLBACK(sound_record_aiff)
{
    sound_record_start("aiff", UILIB_FILTER_AIFF);
}
コード例 #8
0
ファイル: uicommands.c プロジェクト: bobsummerwill/VICE
static UI_CALLBACK(sound_record_voc)
{
    sound_record_start("voc", UILIB_FILTER_VOC);
}
コード例 #9
0
ファイル: uicommands.c プロジェクト: bobsummerwill/VICE
static UI_CALLBACK(sound_record_wav)
{
    sound_record_start("wav", UILIB_FILTER_WAV);
}