libebur128 icon indicating copy to clipboard operation
libebur128 copied to clipboard

struct ebur128_state forward declaration

Open jiemojiemo opened this issue 2 years ago • 0 comments

Hi all, I try to do forward declaration of ebur128_state, but failed, and I found that just simply making the following changes, it works:

before

typedef struct {
 ...
} ebur128_state;

after

typedef struct ebur128_state{
 ...
} ebur128_state;

jiemojiemo avatar Jul 21 '22 09:07 jiemojiemo