SDL: SDL_Enumerate[Storage]Directory() comments: Use enum constant names instead of integers.

From 04a478b6a931bb7467ebfa5d9b9575ea89e6a3a0 Mon Sep 17 00:00:00 2001
From: Petar Popovic <[EMAIL REDACTED]>
Date: Sun, 27 Oct 2024 20:34:32 +0100
Subject: [PATCH] SDL_Enumerate[Storage]Directory() comments: Use enum constant
 names instead of integers.

---
 include/SDL3/SDL_filesystem.h | 4 ++--
 include/SDL3/SDL_storage.h    | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/SDL3/SDL_filesystem.h b/include/SDL3/SDL_filesystem.h
index 51789f9fd7593..eac237cd7e45f 100644
--- a/include/SDL3/SDL_filesystem.h
+++ b/include/SDL3/SDL_filesystem.h
@@ -306,10 +306,10 @@ typedef SDL_EnumerationResult (SDLCALL *SDL_EnumerateDirectoryCallback)(void *us
  *
  * This function provides every directory entry through an app-provided
  * callback, called once for each directory entry, until all results have been
- * provided or the callback returns <= 0.
+ * provided or the callback returns either SDL_ENUM_SUCCESS or SDL_ENUM_FAILURE.
  *
  * This will return false if there was a system problem in general, or if a
- * callback returns -1. A successful return means a callback returned 1 to
+ * callback returns SDL_ENUM_FAILURE. A successful return means a callback returned SDL_ENUM_SUCCESS to
  * halt enumeration, or all directory entries were enumerated.
  *
  * \param path the path of the directory to enumerate.
diff --git a/include/SDL3/SDL_storage.h b/include/SDL3/SDL_storage.h
index a0b4e4966c331..d24aca1258d9f 100644
--- a/include/SDL3/SDL_storage.h
+++ b/include/SDL3/SDL_storage.h
@@ -318,10 +318,10 @@ extern SDL_DECLSPEC bool SDLCALL SDL_CreateStorageDirectory(SDL_Storage *storage
  *
  * This function provides every directory entry through an app-provided
  * callback, called once for each directory entry, until all results have been
- * provided or the callback returns <= 0.
+ * provided or the callback returns either SDL_ENUM_SUCCESS or SDL_ENUM_FAILURE.
  *
  * This will return false if there was a system problem in general, or if a
- * callback returns -1. A successful return means a callback returned 1 to
+ * callback returns SDL_ENUM_FAILURE. A successful return means a callback returned SDL_ENUM_SUCCESS to
  * halt enumeration, or all directory entries were enumerated.
  *
  * \param storage a storage container.