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