mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-09 15:30:41 +00:00
added libraries: opus flac libsndfile updated: libvorbis libogg openal - Everything works as expected for now. Bare in mind libsndfile needed the check for whether or not it could find the xiph libraries removed in order for this to work.
16 lines
286 B
C
16 lines
286 B
C
/* Simple test program to make sure that Win32 linking to libsndfile is
|
|
** working.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "sndfile.h"
|
|
|
|
int
|
|
main (void)
|
|
{ static char strbuffer [256] ;
|
|
sf_command (NULL, SFC_GET_LIB_VERSION, strbuffer, sizeof (strbuffer)) ;
|
|
puts (strbuffer) ;
|
|
return 0 ;
|
|
}
|
|
|