mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 14:41:43 +00:00
da45e6c424
[skip ci]
11 lines
225 B
C++
11 lines
225 B
C++
#include <mpg123.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
mpg123_init();
|
|
mpg123_handle* mh = mpg123_new(NULL, NULL);
|
|
mpg123_param(mh, MPG123_VERBOSE, 1, 0.);
|
|
mpg123_delete(mh);
|
|
mpg123_exit();
|
|
return 0;
|
|
}
|