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