2015-06-21 09:33:46 -06:00
|
|
|
/*
|
|
|
|
Simple DirectMedia Layer
|
2024-01-01 14:15:26 -07:00
|
|
|
Copyright (C) 1997-2024 Sam Lantinga <slouken@libsdl.org>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely, subject to the following restrictions:
|
|
|
|
|
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
|
|
claim that you wrote the original software. If you use this software
|
|
|
|
in a product, an acknowledgment in the product documentation would be
|
|
|
|
appreciated but is not required.
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source distribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file SDL_error.h
|
|
|
|
*
|
|
|
|
* Simple error message routines for SDL.
|
|
|
|
*/
|
|
|
|
|
2016-11-20 22:34:54 -07:00
|
|
|
#ifndef SDL_error_h_
|
|
|
|
#define SDL_error_h_
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-11-26 21:43:38 -07:00
|
|
|
#include <SDL3/SDL_stdinc.h>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-12-22 09:38:59 -07:00
|
|
|
#include <SDL3/SDL_begin_code.h>
|
2015-06-21 09:33:46 -06:00
|
|
|
/* Set up for C function definitions, even when using C++ */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Public functions */
|
2020-03-13 22:28:09 -06:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2021-03-21 12:18:39 -06:00
|
|
|
* Set the SDL error message for the current thread.
|
2020-03-13 22:28:09 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* Calling this function will replace any previous error message that was set.
|
|
|
|
*
|
2021-07-14 15:07:04 -06:00
|
|
|
* This function always returns -1, since SDL frequently uses -1 to signify an
|
|
|
|
* failing result, leading to this idiom:
|
2021-03-21 12:18:39 -06:00
|
|
|
*
|
|
|
|
* ```c
|
|
|
|
* if (error_code) {
|
|
|
|
* return SDL_SetError("This operation has failed: %d", error_code);
|
|
|
|
* }
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* \param fmt a printf()-style message format string
|
2021-07-14 15:07:04 -06:00
|
|
|
* \param ... additional parameters matching % tokens in the `fmt` string, if
|
|
|
|
* any
|
2021-03-21 12:18:39 -06:00
|
|
|
* \returns always -1.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-07-14 15:07:04 -06:00
|
|
|
* \sa SDL_ClearError
|
|
|
|
* \sa SDL_GetError
|
2020-03-13 22:28:09 -06:00
|
|
|
*/
|
2015-06-21 09:33:46 -06:00
|
|
|
extern DECLSPEC int SDLCALL SDL_SetError(SDL_PRINTF_FORMAT_STRING const char *fmt, ...) SDL_PRINTF_VARARG_FUNC(1);
|
2020-03-13 22:28:09 -06:00
|
|
|
|
|
|
|
/**
|
2021-07-14 15:07:04 -06:00
|
|
|
* Retrieve a message about the last error that occurred on the current
|
|
|
|
* thread.
|
2021-03-21 12:18:39 -06:00
|
|
|
*
|
|
|
|
* It is possible for multiple errors to occur before calling SDL_GetError().
|
|
|
|
* Only the last error is returned.
|
|
|
|
*
|
|
|
|
* The message is only applicable when an SDL function has signaled an error.
|
2021-07-14 15:07:04 -06:00
|
|
|
* You must check the return values of SDL function calls to determine when to
|
2021-09-28 11:03:06 -06:00
|
|
|
* appropriately call SDL_GetError(). You should *not* use the results of
|
2021-07-14 15:07:04 -06:00
|
|
|
* SDL_GetError() to decide if an error has occurred! Sometimes SDL will set
|
|
|
|
* an error string even when reporting success.
|
2020-03-13 22:28:09 -06:00
|
|
|
*
|
2021-09-28 11:03:06 -06:00
|
|
|
* SDL will *not* clear the error string for successful API calls. You *must*
|
2021-03-21 12:18:39 -06:00
|
|
|
* check return values for failure cases before you can assume the error
|
|
|
|
* string applies.
|
2020-03-13 22:28:09 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* Error strings are set per-thread, so an error set in a different thread
|
|
|
|
* will not interfere with the current thread's operation.
|
|
|
|
*
|
|
|
|
* The returned string is internally allocated and must not be freed by the
|
|
|
|
* application.
|
|
|
|
*
|
|
|
|
* \returns a message with information about the specific error that occurred,
|
|
|
|
* or an empty string if there hasn't been an error message set since
|
2021-07-14 15:07:04 -06:00
|
|
|
* the last call to SDL_ClearError(). The message is only applicable
|
|
|
|
* when an SDL function has signaled an error. You must check the
|
|
|
|
* return values of SDL function calls to determine when to
|
|
|
|
* appropriately call SDL_GetError().
|
2021-03-21 12:18:39 -06:00
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* \sa SDL_ClearError
|
|
|
|
* \sa SDL_SetError
|
2020-03-13 22:28:09 -06:00
|
|
|
*/
|
2015-06-21 09:33:46 -06:00
|
|
|
extern DECLSPEC const char *SDLCALL SDL_GetError(void);
|
2020-03-13 22:28:09 -06:00
|
|
|
|
|
|
|
/**
|
2021-03-21 12:18:39 -06:00
|
|
|
* Clear any previous error message for this thread.
|
|
|
|
*
|
2022-11-22 15:40:14 -07:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-26 19:36:05 -06:00
|
|
|
*
|
2021-03-21 12:18:39 -06:00
|
|
|
* \sa SDL_GetError
|
|
|
|
* \sa SDL_SetError
|
2020-03-13 22:28:09 -06:00
|
|
|
*/
|
2015-06-21 09:33:46 -06:00
|
|
|
extern DECLSPEC void SDLCALL SDL_ClearError(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \name Internal error functions
|
|
|
|
*
|
|
|
|
* \internal
|
|
|
|
* Private error reporting function - used internally.
|
|
|
|
*/
|
|
|
|
/* @{ */
|
|
|
|
#define SDL_OutOfMemory() SDL_Error(SDL_ENOMEM)
|
|
|
|
#define SDL_Unsupported() SDL_Error(SDL_UNSUPPORTED)
|
|
|
|
#define SDL_InvalidParamError(param) SDL_SetError("Parameter '%s' is invalid", (param))
|
2024-04-08 20:36:57 -06:00
|
|
|
typedef enum SDL_errorcode
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
|
|
|
SDL_ENOMEM,
|
|
|
|
SDL_EFREAD,
|
|
|
|
SDL_EFWRITE,
|
|
|
|
SDL_EFSEEK,
|
|
|
|
SDL_UNSUPPORTED,
|
|
|
|
SDL_LASTERROR
|
|
|
|
} SDL_errorcode;
|
2023-02-24 09:49:41 -07:00
|
|
|
|
2023-02-12 01:40:39 -07:00
|
|
|
/**
|
2024-04-08 20:36:57 -06:00
|
|
|
* Set an SDL error from a list of error codes.
|
2023-02-12 01:40:39 -07:00
|
|
|
*
|
|
|
|
* \param code Error code
|
|
|
|
* \returns unconditionally -1.
|
2023-02-12 12:39:22 -07:00
|
|
|
*
|
|
|
|
* \since This function is available since SDL 3.0.0.
|
2023-02-12 01:40:39 -07:00
|
|
|
*/
|
2015-06-21 09:33:46 -06:00
|
|
|
extern DECLSPEC int SDLCALL SDL_Error(SDL_errorcode code);
|
|
|
|
/* @} *//* Internal error functions */
|
|
|
|
|
|
|
|
/* Ends C function definitions when using C++ */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2022-12-22 09:38:59 -07:00
|
|
|
#include <SDL3/SDL_close_code.h>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2016-11-20 22:34:54 -07:00
|
|
|
#endif /* SDL_error_h_ */
|