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