rwops: Changed filenames that reference "rwops" to "iostream".

This commit is contained in:
Ryan C. Gordon
2024-03-14 23:30:59 -04:00
parent 6776b6108a
commit 5a21d87e69
24 changed files with 55 additions and 53 deletions

View File

@@ -68,7 +68,7 @@
#include <SDL3/SDL_quit.h>
#include <SDL3/SDL_rect.h>
#include <SDL3/SDL_render.h>
#include <SDL3/SDL_rwops.h>
#include <SDL3/SDL_iostream.h>
#include <SDL3/SDL_scancode.h>
#include <SDL3/SDL_sensor.h>
#include <SDL3/SDL_surface.h>

View File

@@ -33,7 +33,7 @@
#include <SDL3/SDL_error.h>
#include <SDL3/SDL_mutex.h>
#include <SDL3/SDL_properties.h>
#include <SDL3/SDL_rwops.h>
#include <SDL3/SDL_iostream.h>
#include <SDL3/SDL_thread.h>
#include <SDL3/SDL_begin_code.h>

View File

@@ -32,7 +32,7 @@
#include <SDL3/SDL_error.h>
#include <SDL3/SDL_joystick.h>
#include <SDL3/SDL_properties.h>
#include <SDL3/SDL_rwops.h>
#include <SDL3/SDL_iostream.h>
#include <SDL3/SDL_sensor.h>
#include <SDL3/SDL_begin_code.h>

View File

@@ -20,14 +20,14 @@
*/
/**
* \file SDL_rwops.h
* \file SDL_iostream.h
*
* This file provides a general interface for SDL to read and write
* data streams. It can easily be extended to files, memory, etc.
*/
#ifndef SDL_rwops_h_
#define SDL_rwops_h_
#ifndef SDL_iostream_h_
#define SDL_iostream_h_
#include <SDL3/SDL_stdinc.h>
#include <SDL3/SDL_error.h>
@@ -1004,4 +1004,4 @@ extern DECLSPEC SDL_bool SDLCALL SDL_WriteS64BE(SDL_IOStream *dst, Sint64 value)
#endif
#include <SDL3/SDL_close_code.h>
#endif /* SDL_rwops_h_ */
#endif /* SDL_iostream_h_ */

View File

@@ -33,7 +33,7 @@
#include <SDL3/SDL_pixels.h>
#include <SDL3/SDL_properties.h>
#include <SDL3/SDL_rect.h>
#include <SDL3/SDL_rwops.h>
#include <SDL3/SDL_iostream.h>
#include <SDL3/SDL_begin_code.h>
/* Set up for C function definitions, even when using C++ */