wikiheaders: bridge wiki Category docs to the headers!

Did an initial cleanup on the headers and wrote a few pieces of documentation,
but this needs more work to fill out the documentation.
This commit is contained in:
Ryan C. Gordon
2024-05-16 10:44:37 -04:00
parent 558630d59c
commit 5e6d85b8f0
68 changed files with 617 additions and 388 deletions

View File

@@ -22,13 +22,14 @@
/* WIKI CATEGORY: IOStream */
/**
* \file SDL_iostream.h
* # CategoryIOStream
*
* This file provides a general interface for SDL to read and write
* data streams. It can easily be extended to files, memory, etc.
* SDL provides an abstract interface for reading and writing data streams. It
* offers implementations for files, memory, etc, and the app can provideo
* their own implementations, too.
*
* SDL_IOStream is not related to the standard C++ iostream class, other
* than both are abstract interfaces to read/write data.
* SDL_IOStream is not related to the standard C++ iostream class, other than
* both are abstract interfaces to read/write data.
*/
#ifndef SDL_iostream_h_