SDL_filesystem.h: Fixed some whitespace.

main
Ryan C. Gordon 2024-04-04 10:37:10 -04:00
parent 1a97d1f649
commit e12b8e767a
No known key found for this signature in database
GPG Key ID: FA148B892AB48044
1 changed files with 22 additions and 22 deletions

View File

@ -167,42 +167,42 @@ extern DECLSPEC char *SDLCALL SDL_GetPrefPath(const char *org, const char *app);
*/ */
typedef enum typedef enum
{ {
/** The folder which contains all of the current user's data, preferences, /** The folder which contains all of the current user's data, preferences,
and documents. It usually contains most of the other folders. If a and documents. It usually contains most of the other folders. If a
requested folder does not exist, the home folder can be considered a safe requested folder does not exist, the home folder can be considered a safe
fallback to store a user's documents. */ fallback to store a user's documents. */
SDL_FOLDER_HOME, SDL_FOLDER_HOME,
/** The folder of files that are displayed on the desktop. Note that the /** The folder of files that are displayed on the desktop. Note that the
existence of a desktop folder does not guarantee that the system does existence of a desktop folder does not guarantee that the system does
show icons on its desktop; certain GNU/Linux distros with a graphical show icons on its desktop; certain GNU/Linux distros with a graphical
environment may not have desktop icons. */ environment may not have desktop icons. */
SDL_FOLDER_DESKTOP, SDL_FOLDER_DESKTOP,
/** User document files, possibly application-specific. This is a good /** User document files, possibly application-specific. This is a good
place to save a user's projects. */ place to save a user's projects. */
SDL_FOLDER_DOCUMENTS, SDL_FOLDER_DOCUMENTS,
/** Standard folder for user files downloaded from the internet. */ /** Standard folder for user files downloaded from the internet. */
SDL_FOLDER_DOWNLOADS, SDL_FOLDER_DOWNLOADS,
/** Music files that can be played using a standard music player (mp3, /** Music files that can be played using a standard music player (mp3,
ogg...). */ ogg...). */
SDL_FOLDER_MUSIC, SDL_FOLDER_MUSIC,
/** Image files that can be displayed using a standard viewer (png, /** Image files that can be displayed using a standard viewer (png,
jpg...). */ jpg...). */
SDL_FOLDER_PICTURES, SDL_FOLDER_PICTURES,
/** Files that are meant to be shared with other users on the same /** Files that are meant to be shared with other users on the same
computer. */ computer. */
SDL_FOLDER_PUBLICSHARE, SDL_FOLDER_PUBLICSHARE,
/** Save files for games. */ /** Save files for games. */
SDL_FOLDER_SAVEDGAMES, SDL_FOLDER_SAVEDGAMES,
/** Application screenshots. */ /** Application screenshots. */
SDL_FOLDER_SCREENSHOTS, SDL_FOLDER_SCREENSHOTS,
/** Template files to be used when the user requests the desktop environment /** Template files to be used when the user requests the desktop environment
to create a new file in a certain folder, such as "New Text File.txt". to create a new file in a certain folder, such as "New Text File.txt".
Any file in the Templates folder can be used as a starting point for a Any file in the Templates folder can be used as a starting point for a
new file. */ new file. */
SDL_FOLDER_TEMPLATES, SDL_FOLDER_TEMPLATES,
/** Video files that can be played using a standard video player (mp4, /** Video files that can be played using a standard video player (mp4,
webm...). */ webm...). */
SDL_FOLDER_VIDEOS SDL_FOLDER_VIDEOS
} SDL_Folder; } SDL_Folder;
/** /**