From 2db6a8fd2e1e7d9d1ad309d4f4110712f7cb4e5d Mon Sep 17 00:00:00 2001 From: evpobr Date: Sun, 14 Feb 2021 10:53:28 +0500 Subject: [PATCH] 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). --- include/sndfile.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/sndfile.h.in b/include/sndfile.h.in index 970fb260..5e30c405 100644 --- a/include/sndfile.h.in +++ b/include/sndfile.h.in @@ -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