microui  14.5.2
microui
ui_log.h
1 /*
2  * Copyright 2024-2025 MicroEJ Corp. All rights reserved.
3  * MicroEJ Corp. PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4  */
5 
6 #if !defined UI_LOG_H
7 #define UI_LOG_H
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
13 /*
14  * @brief Deprecated, use ui_trace.h
15  *
16  * This file is kept for the backward compatibility (since the version 1.8.0, the
17  * VG Pack is compatible with the UI Pack 14.4.0 and higher).
18  *
19  * @author MicroEJ Developer Team
20  * @version 14.5.2
21  */
22 
23 // --------------------------------------------------------------------------------
24 // Includes
25 // --------------------------------------------------------------------------------
26 
27 #include "ui_trace.h"
28 
29 // --------------------------------------------------------------------------------
30 // Defines
31 // --------------------------------------------------------------------------------
32 
33 #define UI_LOG_COUNT_ARGS UI_TRACE_COUNT_ARGS
34 #define UI_LOG_FUNCTION UI_TRACE_FUNCTION
35 #define UI_LOG_OFFSET UI_TRACE_OFFSET
36 #define UI_LOG_PARAMS UI_TRACE_PARAMS
37 #define UI_LOG_IMAGE UI_TRACE_IMAGE
38 #define UI_LOG_BUFFER UI_TRACE_BUFFER
39 #define UI_LOG_START UI_TRACE_START
40 #define UI_LOG_END UI_TRACE_END
41 #define UI_LOG_DRAW_START UI_TRACE_DRAW_START
42 #define UI_LOG_DRAW_END UI_TRACE_DRAW_END
43 
44 // --------------------------------------------------------------------------------
45 // EOF
46 // --------------------------------------------------------------------------------
47 
48 #ifdef __cplusplus
49 }
50 #endif
51 
52 #endif // UI_LOG_H