mpg123-1.30.0

This commit is contained in:
Ozkan Sezer
2022-06-28 07:10:00 +03:00
parent 01b6013145
commit c46daebce1
56 changed files with 3497 additions and 1035 deletions

31
src/term_none.c Normal file
View File

@@ -0,0 +1,31 @@
/*
term_none: no-op terminal, nothing at all
copyright 2008-2022 by the mpg123 project - free software under the terms of the LGPL 2.1
see COPYING and AUTHORS files in distribution or http://mpg123.org
initially written by Thomas Orgis and Jonathan Yong
*/
int term_have_fun(int fd, int want_visuals)
{
return 0;
}
int term_width(int fd)
{
return -1;
}
int term_setup(void)
{
return -1;
}
void term_restore(void)
{
}
int term_get_key(int do_delay, char *val)
{
return 0;
}