mirror of
https://github.com/ZDoom/ZMusic.git
synced 2025-03-21 18:10:56 +00:00
- apparently newer GCCs do not like unnamed structs in typedefs anymore.
This commit is contained in:
parent
5ac16461ad
commit
8375c06737
1 changed files with 2 additions and 2 deletions
|
@ -280,8 +280,8 @@ typedef struct ZMusicConfigurationSetting_
|
|||
#define DLL_IMPORT
|
||||
#endif
|
||||
// Note that the internal 'class' definitions are not C compatible!
|
||||
typedef struct { int zm1; } *ZMusic_MidiSource;
|
||||
typedef struct { int zm2; } *ZMusic_MusicStream;
|
||||
typedef struct _ZMusic_MidiSource_Struct { int zm1; } *ZMusic_MidiSource;
|
||||
typedef struct _ZMusic_MusicStream_Struct { int zm2; } *ZMusic_MusicStream;
|
||||
struct SoundDecoder;
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue