rename some struct members to avoid C++ 'private' and 'protected' keywords

This commit is contained in:
Josh Coalson
2001-08-16 20:07:29 +00:00
parent 07afedcb32
commit fa697a98bd
6 changed files with 959 additions and 959 deletions

View File

@@ -60,8 +60,8 @@ extern const char *FLAC__StreamEncoderWriteStatusString[];
struct FLAC__StreamEncoderProtected;
struct FLAC__StreamEncoderPrivate;
typedef struct {
struct FLAC__StreamEncoderProtected *protected;
struct FLAC__StreamEncoderPrivate *private;
struct FLAC__StreamEncoderProtected *protected_; /* avoid the C++ keyword 'protected' */
struct FLAC__StreamEncoderPrivate *private_; /* avoid the C++ keyword 'private' */
} FLAC__StreamEncoder;
/***********************************************************************