Change SNDFILE type to be a typedef of a real struct

For developers it is typedef to the actual `sf_private_tag` struct now.

For users it is still opaque type (no API break).
This commit is contained in:
evpobr 2021-02-14 10:53:28 +05:00
parent 23daaebc2a
commit 2db6a8fd2e

View File

@ -337,7 +337,7 @@ enum
/* A SNDFILE* pointer can be passed around much like stdio.h's FILE* pointer. */
typedef struct SNDFILE_tag SNDFILE ;
typedef struct sf_private_tag SNDFILE ;
/* The following typedef is system specific and is defined when libsndfile is
** compiled. sf_count_t will be a 64 bit value when the underlying OS allows