Removed leading underscore in structure names
Fixes https://github.com/libsdl-org/SDL/issues/6856 Closes https://github.com/libsdl-org/SDL/pull/6914 Closes https://github.com/libsdl-org/SDL/pull/6915 Closes https://github.com/libsdl-org/SDL/pull/6916 Closes https://github.com/libsdl-org/SDL/pull/6917 Closes https://github.com/libsdl-org/SDL/pull/6918 Closes https://github.com/libsdl-org/SDL/pull/6919
This commit is contained in:
@@ -925,8 +925,8 @@ extern DECLSPEC int SDLCALL SDL_ConvertAudio(SDL_AudioCVT * cvt);
|
||||
- You push data as you have it, and pull it when you need it
|
||||
*/
|
||||
/* this is opaque to the outside world. */
|
||||
struct _SDL_AudioStream;
|
||||
typedef struct _SDL_AudioStream SDL_AudioStream;
|
||||
struct SDL_AudioStream;
|
||||
typedef struct SDL_AudioStream SDL_AudioStream;
|
||||
|
||||
/**
|
||||
* Create a new audio stream.
|
||||
|
||||
Reference in New Issue
Block a user