Home | History | Annotate | Download | only in include

Lines Matching refs:category

59  *  By default the application category is enabled at the INFO level,
60 * the assert category is enabled at the WARN level, test is enabled
120 * \brief Set the priority of a particular log category
122 extern DECLSPEC void SDLCALL SDL_LogSetPriority(int category,
126 * \brief Get the priority of a particular log category
128 extern DECLSPEC SDL_LogPriority SDLCALL SDL_LogGetPriority(int category);
145 extern DECLSPEC void SDLCALL SDL_LogVerbose(int category, const char *fmt, ...);
150 extern DECLSPEC void SDLCALL SDL_LogDebug(int category, const char *fmt, ...);
155 extern DECLSPEC void SDLCALL SDL_LogInfo(int category, const char *fmt, ...);
160 extern DECLSPEC void SDLCALL SDL_LogWarn(int category, const char *fmt, ...);
165 extern DECLSPEC void SDLCALL SDL_LogError(int category, const char *fmt, ...);
170 extern DECLSPEC void SDLCALL SDL_LogCritical(int category, const char *fmt, ...);
173 * \brief Log a message with the specified category and priority.
175 extern DECLSPEC void SDLCALL SDL_LogMessage(int category,
180 * \brief Log a message with the specified category and priority.
182 extern DECLSPEC void SDLCALL SDL_LogMessageV(int category,
189 typedef void (*SDL_LogOutputFunction)(void *userdata, int category, SDL_LogPriority priority, const char *message);