Chris@40: /* Simple test program to make sure that Win32 linking to libsndfile is Chris@40: ** working. Chris@40: */ Chris@40: Chris@40: #include Chris@40: Chris@40: #include "sndfile.h" Chris@40: Chris@40: int Chris@40: main (void) Chris@40: { static char strbuffer [256] ; Chris@40: sf_command (NULL, SFC_GET_LIB_VERSION, strbuffer, sizeof (strbuffer)) ; Chris@40: puts (strbuffer) ; Chris@40: return 0 ; Chris@40: } Chris@40: