File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change 4747{ **
4848 * \brief The predefined log priorities
4949 *}
50- const
51- SDL_LOG_PRIORITY_VERBOSE = 1 ;
52- SDL_LOG_PRIORITY_DEBUG = 2 ;
53- SDL_LOG_PRIORITY_INFO = 3 ;
54- SDL_LOG_PRIORITY_WARN = 4 ;
55- SDL_LOG_PRIORITY_ERROR = 5 ;
56- SDL_LOG_PRIORITY_CRITICAL = 6 ;
57- SDL_NUM_LOG_PRIORITIES = 7 ;
5850type
59- TSDL_LogPriority = Integer;
51+ PSDL_LogPriority = ^TSDL_LogPriority;
52+ TSDL_LogPriority = type SInt32;
53+ const
54+ SDL_LOG_PRIORITY_VERBOSE = TSDL_LogPriority(1 );
55+ SDL_LOG_PRIORITY_DEBUG = TSDL_LogPriority(2 );
56+ SDL_LOG_PRIORITY_INFO = TSDL_LogPriority(3 );
57+ SDL_LOG_PRIORITY_WARN = TSDL_LogPriority(4 );
58+ SDL_LOG_PRIORITY_ERROR = TSDL_LogPriority(5 );
59+ SDL_LOG_PRIORITY_CRITICAL = TSDL_LogPriority(6 );
60+ SDL_NUM_LOG_PRIORITIES = TSDL_LogPriority(7 );
6061
6162
6263{ **
You can’t perform that action at this time.
0 commit comments