From 97453a17f9abd09a57eb0db72d371cb2c212fc2e Mon Sep 17 00:00:00 2001 From: daleylin <76830418+daleylin@users.noreply.github.com> Date: Sun, 24 Jan 2021 00:03:49 +0800 Subject: [PATCH 01/10] bugfix: fix string length MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1、此处字符串长度最大为 sizeof(str_value)-1,实际比这个更小,错误的长度导致 gx_prompt_text_set_ext(prompt,&string)函数报错 --- samples/demo_guix_thermostat/demo_guix_thermostat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/demo_guix_thermostat/demo_guix_thermostat.c b/samples/demo_guix_thermostat/demo_guix_thermostat.c index 298e851f..afb39d11 100644 --- a/samples/demo_guix_thermostat/demo_guix_thermostat.c +++ b/samples/demo_guix_thermostat/demo_guix_thermostat.c @@ -122,7 +122,7 @@ GX_STRING string; gx_utility_ltoa(i_temperature, str_value, 10); string.gx_string_ptr = str_value; - string.gx_string_length = sizeof(str_value) - 1; + string.gx_string_length = GX_STRLEN(str_value); gx_prompt_text_set_ext(prompt, &string); } From a521e2e2eba38a4ed7109cca1f4ce02be9d069f0 Mon Sep 17 00:00:00 2001 From: parsley Date: Thu, 29 Jan 2026 16:17:58 +0100 Subject: [PATCH 02/10] replaced _gx_system_lock and _gx_system_unlock with GX_ENTER_CRITICAL and GX_EXIT_CRITICAL --- common/src/gx_horizontal_list_total_columns_set.c | 8 ++++---- common/src/gx_system_animation_free.c | 4 ++-- common/src/gx_system_animation_get.c | 4 ++-- common/src/gx_system_timer_start.c | 4 ++-- common/src/gx_system_timer_stop.c | 4 ++-- common/src/gx_system_timer_update.c | 4 ++-- common/src/gx_vertical_list_total_rows_set.c | 8 ++++---- common/src/gx_widget_attach.c | 4 ++-- common/src/gx_widget_back_attach.c | 4 ++-- common/src/gx_widget_create.c | 4 ++-- common/src/gx_widget_delete.c | 3 ++- common/src/gx_widget_detach.c | 4 ++-- 12 files changed, 28 insertions(+), 27 deletions(-) diff --git a/common/src/gx_horizontal_list_total_columns_set.c b/common/src/gx_horizontal_list_total_columns_set.c index 45a62b4a..4d5671eb 100644 --- a/common/src/gx_horizontal_list_total_columns_set.c +++ b/common/src/gx_horizontal_list_total_columns_set.c @@ -55,8 +55,8 @@ /* */ /* CALLS */ /* */ -/* _gx_system_lock Obtain GUIX system lock */ -/* _gx_system_unlock Release GUIX system lock */ +/* GX_ENTER_CRITICAL Obtain GUIX system lock */ +/* GX_EXIT_CRITICAL Release GUIX system lock */ /* _gx_first_client_child_get Get the first client child */ /* _gx_window_scrollbar_find Find the scrollbar */ /* _gx_scrollbar_reset Reset the schollbar */ @@ -85,7 +85,7 @@ INT index; GX_WIDGET *test; GX_SCROLLBAR *pScroll; - _gx_system_lock(); + GX_ENTER_CRITICAL /* Update total count of rows. */ list -> gx_horizontal_list_total_columns = count; @@ -183,7 +183,7 @@ GX_SCROLLBAR *pScroll; _gx_scrollbar_reset(pScroll, GX_NULL); } - _gx_system_unlock(); + GX_EXIT_CRITICAL /* Refresh screen. */ if (list -> gx_widget_status & GX_STATUS_VISIBLE) diff --git a/common/src/gx_system_animation_free.c b/common/src/gx_system_animation_free.c index cdbacf76..d0688fc0 100644 --- a/common/src/gx_system_animation_free.c +++ b/common/src/gx_system_animation_free.c @@ -52,8 +52,8 @@ /* */ /* CALLS */ /* */ -/* _gx_system_lock lock system mutex */ -/* _gx_system_unlock unlock system mutex */ +/* GX_ENTER_CRITICAL lock system mutex */ +/* GX_EXIT_CRITICAL unlock system mutex */ /* */ /* CALLED BY */ /* */ diff --git a/common/src/gx_system_animation_get.c b/common/src/gx_system_animation_get.c index 0c793cea..a4a14e08 100644 --- a/common/src/gx_system_animation_get.c +++ b/common/src/gx_system_animation_get.c @@ -52,8 +52,8 @@ /* */ /* CALLS */ /* */ -/* _gx_system_lock lock system mutex */ -/* _gx_system_unlock unlock system mutex */ +/* GX_ENTER_CRITICAL lock system mutex */ +/* GX_EXIT_CRITICAL unlock system mutex */ /* */ /* CALLED BY */ /* */ diff --git a/common/src/gx_system_timer_start.c b/common/src/gx_system_timer_start.c index 2419b5ed..14c7ea7a 100644 --- a/common/src/gx_system_timer_start.c +++ b/common/src/gx_system_timer_start.c @@ -56,8 +56,8 @@ /* CALLS */ /* */ /* tx_timer_activate start the ThreadX timer */ -/* _gx_system_lock lock system mutex */ -/* _gx_system_unlock unlock system mutex */ +/* GX_ENTER_CRITICAL lock system mutex */ +/* GX_EXIT_CRITICAL unlock system mutex */ /* */ /* CALLED BY */ /* */ diff --git a/common/src/gx_system_timer_stop.c b/common/src/gx_system_timer_stop.c index 94b8f894..b3c16f97 100644 --- a/common/src/gx_system_timer_stop.c +++ b/common/src/gx_system_timer_stop.c @@ -53,8 +53,8 @@ /* */ /* CALLS */ /* */ -/* _gx_system_lock lock critical section */ -/* _gx_system_unlock unlock critical section */ +/* GX_ENTER_CRITICAL lock critical section */ +/* GX_EXIT_CRITICAL unlock critical section */ /* tx_timer_deactivate stop the ThreadX timer */ /* */ /* CALLED BY */ diff --git a/common/src/gx_system_timer_update.c b/common/src/gx_system_timer_update.c index c75574d3..ba221b07 100644 --- a/common/src/gx_system_timer_update.c +++ b/common/src/gx_system_timer_update.c @@ -54,8 +54,8 @@ /* */ /* CALLS */ /* */ -/* _gx_system_lock Lock system mutex */ -/* _gx_system_unlock Unlock system mutex */ +/* GX_ENTER_CRITICAL Lock system mutex */ +/* GX_EXIT_CRITICAL Unlock system mutex */ /* [gx_widget_event_process_function] Event handler of timer owner */ /* _gx_system_timer_stop Stop the system timer */ /* _gx_animation_update Update the animation sequence */ diff --git a/common/src/gx_vertical_list_total_rows_set.c b/common/src/gx_vertical_list_total_rows_set.c index c427e62a..e454d666 100644 --- a/common/src/gx_vertical_list_total_rows_set.c +++ b/common/src/gx_vertical_list_total_rows_set.c @@ -55,8 +55,8 @@ /* */ /* CALLS */ /* */ -/* _gx_system_lock Obtain GUIX system lock */ -/* _gx_system_unlock Release GUIX system lock */ +/* GX_ENTER_CRITICAL Obtain GUIX system lock */ +/* GX_EXIT_CRITICAL Release GUIX system lock */ /* _gx_first_client_child_get Get the first client child */ /* [gx_vertical_list_callback] Vertical list callback */ /* _gx_window_scrollbar_find Find the scrollbar */ @@ -86,7 +86,7 @@ INT index; GX_WIDGET *test; GX_SCROLLBAR *pScroll; - _gx_system_lock(); + GX_ENTER_CRITICAL /* Update total count of rows. */ list -> gx_vertical_list_total_rows = count; @@ -183,7 +183,7 @@ GX_SCROLLBAR *pScroll; _gx_scrollbar_reset(pScroll, GX_NULL); } - _gx_system_unlock(); + GX_EXIT_CRITICAL /* Refresh screen. */ if (list -> gx_widget_status & GX_STATUS_VISIBLE) diff --git a/common/src/gx_widget_attach.c b/common/src/gx_widget_attach.c index 3ceb2bb9..1635d4f2 100644 --- a/common/src/gx_widget_attach.c +++ b/common/src/gx_widget_attach.c @@ -55,10 +55,10 @@ /* */ /* CALLS */ /* */ -/* _gx_system_lock Obtain GUIX system lock */ +/* GX_ENTER_CRITICAL Obtain GUIX system lock */ /* _gx_widget_detach Detach from current parent */ /* _gx_widget_link Link widget */ -/* _gx_system_unlock Release GUIX system lock */ +/* GX_EXIT_CRITICAL Release GUIX system lock */ /* */ /* CALLED BY */ /* */ diff --git a/common/src/gx_widget_back_attach.c b/common/src/gx_widget_back_attach.c index 627df461..c1f80fd2 100644 --- a/common/src/gx_widget_back_attach.c +++ b/common/src/gx_widget_back_attach.c @@ -55,10 +55,10 @@ /* */ /* CALLS */ /* */ -/* _gx_system_lock Obtain GUIX system lock */ +/* GX_ENTER_CRITICAL Obtain GUIX system lock */ /* _gx_widget_detach Detach widget */ /* _gx_widget_back_link Link widget in back */ -/* _gx_system_unlock Release GUIX system lock */ +/* GX_EXIT_CRITICAL Release GUIX system lock */ /* */ /* CALLED BY */ /* */ diff --git a/common/src/gx_widget_create.c b/common/src/gx_widget_create.c index ee9512c6..ab278a00 100644 --- a/common/src/gx_widget_create.c +++ b/common/src/gx_widget_create.c @@ -59,9 +59,9 @@ /* */ /* CALLS */ /* */ -/* _gx_system_lock Lock access to GUIX */ +/* GX_ENTER_CRITICAL Lock access to GUIX */ /* _gx_widget_link Link a widget to parent */ -/* _gx_system_unlock Release the protection */ +/* GX_EXIT_CRITICAL Release the protection */ /* */ /* CALLED BY */ /* */ diff --git a/common/src/gx_widget_delete.c b/common/src/gx_widget_delete.c index a76f3d63..576430b9 100644 --- a/common/src/gx_widget_delete.c +++ b/common/src/gx_widget_delete.c @@ -138,9 +138,10 @@ GX_EVENT delete_event; /* */ /* CALLS */ /* */ -/* _gx_system_lock Lock access to GUIX */ +/* GX_ENTER_CRITICAL Lock access to GUIX */ /* _gx_widget_delete_helper Safely delete widget instance */ /* _gx_widget_free Free memory owned by widget */ +/* GX_EXIT_CRITICAL Release the protection */ /* */ /* CALLED BY */ /* */ diff --git a/common/src/gx_widget_detach.c b/common/src/gx_widget_detach.c index ac2a64dc..83f9b2aa 100644 --- a/common/src/gx_widget_detach.c +++ b/common/src/gx_widget_detach.c @@ -53,10 +53,10 @@ /* */ /* CALLS */ /* */ -/* _gx_system_lock Lock access to GUIX */ +/* GX_ENTER_CRITICAL Lock access to GUIX */ /* _gx_widget_hide Hide the widget */ /* _gx_widget_unlink Unlink the widget */ -/* _gx_system_unlock Release the protection */ +/* GX_EXIT_CRITICAL Release the protection */ /* */ /* CALLED BY */ /* */ From 4944e9427f38fffbc392d5f79ccd74f9fbcfb700 Mon Sep 17 00:00:00 2001 From: parsley Date: Mon, 2 Feb 2026 16:42:03 +0100 Subject: [PATCH 03/10] fix for IAR compiler (IAR could not find associated function prototype when function parameter is empty) --- common/inc/gx_rich_text_view.h | 8 ++++---- common/src/gx_rich_text_view_context_pop.c | 2 +- common/src/gx_rich_text_view_context_reset.c | 2 +- common/src/gx_rich_text_view_context_restore.c | 2 +- common/src/gx_rich_text_view_context_save.c | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/common/inc/gx_rich_text_view.h b/common/inc/gx_rich_text_view.h index 4891982c..c97d6276 100644 --- a/common/inc/gx_rich_text_view.h +++ b/common/inc/gx_rich_text_view.h @@ -59,11 +59,11 @@ typedef struct GX_RICH_TEXT_LINE_INFO_STRUCT /* Define rich text view management function prototypes. */ UINT _gx_rich_text_view_context_peek(GX_RICH_TEXT_CONTEXT *context); -UINT _gx_rich_text_view_context_pop(); +UINT _gx_rich_text_view_context_pop(VOID); UINT _gx_rich_text_view_context_push(GX_RICH_TEXT_CONTEXT *context); -UINT _gx_rich_text_view_context_save(); -UINT _gx_rich_text_view_context_reset(); -UINT _gx_rich_text_view_context_restore(); +UINT _gx_rich_text_view_context_save(VOID); +UINT _gx_rich_text_view_context_reset(VOID); +UINT _gx_rich_text_view_context_restore(VOID); UINT _gx_rich_text_view_create(GX_RICH_TEXT_VIEW *text_view, GX_CONST GX_CHAR *name, GX_WIDGET *parent, diff --git a/common/src/gx_rich_text_view_context_pop.c b/common/src/gx_rich_text_view_context_pop.c index e6300029..bc54c934 100644 --- a/common/src/gx_rich_text_view_context_pop.c +++ b/common/src/gx_rich_text_view_context_pop.c @@ -65,7 +65,7 @@ /* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ /* */ /**************************************************************************/ -UINT _gx_rich_text_view_context_pop() +UINT _gx_rich_text_view_context_pop(VOID) { if (_gx_system_rich_text_context_stack.gx_rich_text_context_stack_top <= 0) { diff --git a/common/src/gx_rich_text_view_context_reset.c b/common/src/gx_rich_text_view_context_reset.c index 06872505..7753f295 100644 --- a/common/src/gx_rich_text_view_context_reset.c +++ b/common/src/gx_rich_text_view_context_reset.c @@ -64,7 +64,7 @@ /* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ /* */ /**************************************************************************/ -UINT _gx_rich_text_view_context_reset() +UINT _gx_rich_text_view_context_reset(VOID) { _gx_system_rich_text_context_stack.gx_rich_text_context_stack_top = 0; diff --git a/common/src/gx_rich_text_view_context_restore.c b/common/src/gx_rich_text_view_context_restore.c index f5faa6bf..71e5945b 100644 --- a/common/src/gx_rich_text_view_context_restore.c +++ b/common/src/gx_rich_text_view_context_restore.c @@ -64,7 +64,7 @@ /* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ /* */ /**************************************************************************/ -UINT _gx_rich_text_view_context_restore() +UINT _gx_rich_text_view_context_restore(VOID) { GX_UBYTE top = _gx_system_rich_text_context_stack_save.gx_rich_text_context_stack_top; diff --git a/common/src/gx_rich_text_view_context_save.c b/common/src/gx_rich_text_view_context_save.c index 0a38036d..fccfb5da 100644 --- a/common/src/gx_rich_text_view_context_save.c +++ b/common/src/gx_rich_text_view_context_save.c @@ -64,7 +64,7 @@ /* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ /* */ /**************************************************************************/ -UINT _gx_rich_text_view_context_save() +UINT _gx_rich_text_view_context_save(VOID) { GX_UBYTE top = _gx_system_rich_text_context_stack.gx_rich_text_context_stack_top; From 0f4781022525d8180041d0858aba4ac214ce469f Mon Sep 17 00:00:00 2001 From: parsley Date: Mon, 2 Feb 2026 16:44:45 +0100 Subject: [PATCH 04/10] added missing include guard --- common/inc/gx_multi_line_text_view.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/inc/gx_multi_line_text_view.h b/common/inc/gx_multi_line_text_view.h index 36738ec0..e55054c5 100644 --- a/common/inc/gx_multi_line_text_view.h +++ b/common/inc/gx_multi_line_text_view.h @@ -46,6 +46,9 @@ /* */ /**************************************************************************/ +#ifndef GX_MULTI_LINE_TEXT_VIEW_H +#define GX_MULTI_LINE_TEXT_VIEW_H + /* Define multi-line text view management function prototypes. */ UINT _gx_multi_line_text_view_create(GX_MULTI_LINE_TEXT_VIEW *text_view_ptr, GX_CONST GX_CHAR *name_ptr, @@ -110,3 +113,4 @@ UINT _gxe_rich_text_view_create(GX_RICH_TEXT_VIEW *rich_view, UINT control_block_size); UINT _gxe_rich_text_view_fonts_set(GX_RICH_TEXT_VIEW *rich_view, GX_RICH_TEXT_FONTS *fonts); +#endif From d0074ee2a69b137f3983e21e4cde1dad06f7d3ac Mon Sep 17 00:00:00 2001 From: parsley Date: Mon, 2 Feb 2026 16:58:22 +0100 Subject: [PATCH 05/10] fixed missing configuration check "#ifdef GX_BINARY_RESOURCE_SUPPORT" --- common/src/gx_binres_font_load.c | 3 ++- common/src/gx_binres_pixelmap_load.c | 5 ++++- common/src/gxe_binres_font_load.c | 3 ++- common/src/gxe_binres_pixelmap_load.c | 3 ++- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/common/src/gx_binres_font_load.c b/common/src/gx_binres_font_load.c index b1c4a19a..0c6be2c3 100644 --- a/common/src/gx_binres_font_load.c +++ b/common/src/gx_binres_font_load.c @@ -77,6 +77,7 @@ /* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ /* */ /**************************************************************************/ +#ifdef GX_BINARY_RESOURCE_SUPPORT UINT _gx_binres_font_load(GX_UBYTE *root_address, UINT font_index, GX_UBYTE *buffer, ULONG *buffer_size) { UINT status = GX_SUCCESS; @@ -136,4 +137,4 @@ UINT required_size; return status; } - +#endif diff --git a/common/src/gx_binres_pixelmap_load.c b/common/src/gx_binres_pixelmap_load.c index 1c972684..20d3cb44 100644 --- a/common/src/gx_binres_pixelmap_load.c +++ b/common/src/gx_binres_pixelmap_load.c @@ -66,6 +66,7 @@ /* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ /* */ /**************************************************************************/ +#ifdef GX_BINARY_RESOURCE_SUPPORT UINT _gx_binres_standalone_resource_seek(GX_BINRES_DATA_INFO *info, UINT res_index) { USHORT type; @@ -97,6 +98,7 @@ ULONG count; return GX_SUCCESS; } +#endif /**************************************************************************/ /* */ @@ -141,6 +143,7 @@ ULONG count; /* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ /* */ /**************************************************************************/ +#ifdef GX_BINARY_RESOURCE_SUPPORT UINT _gx_binres_pixelmap_load(GX_UBYTE *root_address, UINT map_index, GX_PIXELMAP *pixelmap) { UINT status = GX_SUCCESS; @@ -184,4 +187,4 @@ GX_BINRES_DATA_INFO info; return status; } - +#endif diff --git a/common/src/gxe_binres_font_load.c b/common/src/gxe_binres_font_load.c index 3e2f1cfc..42184802 100644 --- a/common/src/gxe_binres_font_load.c +++ b/common/src/gxe_binres_font_load.c @@ -76,6 +76,7 @@ /* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ /* */ /**************************************************************************/ +#ifdef GX_BINARY_RESOURCE_SUPPORT UINT _gxe_binres_font_load(GX_UBYTE *root_address, UINT font_index, GX_UBYTE *buffer, ULONG *buffer_size) { if (root_address == GX_NULL || buffer == GX_NULL || buffer_size == GX_NULL) @@ -85,4 +86,4 @@ UINT _gxe_binres_font_load(GX_UBYTE *root_address, UINT font_index, GX_UBYTE *bu return _gx_binres_font_load(root_address, font_index, buffer, buffer_size); } - +#endif diff --git a/common/src/gxe_binres_pixelmap_load.c b/common/src/gxe_binres_pixelmap_load.c index 10f106d5..4a15e48b 100644 --- a/common/src/gxe_binres_pixelmap_load.c +++ b/common/src/gxe_binres_pixelmap_load.c @@ -71,6 +71,7 @@ /* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ /* */ /**************************************************************************/ +#ifdef GX_BINARY_RESOURCE_SUPPORT UINT _gxe_binres_pixelmap_load(GX_UBYTE *root_address, UINT map_index, GX_PIXELMAP *pixelmap) { if (root_address == GX_NULL || pixelmap == GX_NULL) @@ -80,4 +81,4 @@ UINT _gxe_binres_pixelmap_load(GX_UBYTE *root_address, UINT map_index, GX_PIXELM return _gx_binres_pixelmap_load(root_address, map_index, pixelmap); } - +#endif From 2be1da816d669f415d335e27fdf6c3173d0b1ed0 Mon Sep 17 00:00:00 2001 From: parsley Date: Thu, 29 Jan 2026 13:37:07 +0100 Subject: [PATCH 06/10] fixed missing configuration check "#if (GX_ANIMATION_POOL_SIZE > 0)" --- common/inc/gx_animation.h | 2 ++ common/inc/gx_api.h | 2 ++ common/src/gx_animation_canvas_define.c | 3 ++- common/src/gx_animation_complete.c | 7 ++++--- common/src/gx_animation_create.c | 3 ++- common/src/gx_animation_delete.c | 4 ++-- common/src/gx_animation_drag_disable.c | 3 ++- common/src/gx_animation_drag_enable.c | 3 ++- common/src/gx_animation_drag_event_process.c | 5 ++++- common/src/gx_animation_drag_tracking.c | 3 ++- common/src/gx_animation_drag_tracking_start.c | 3 ++- common/src/gx_animation_landing_speed_set.c | 3 ++- common/src/gx_animation_slide_landing.c | 3 ++- common/src/gx_animation_slide_landing_start.c | 3 ++- common/src/gx_animation_start.c | 3 ++- common/src/gx_animation_stop.c | 3 ++- common/src/gx_animation_update.c | 3 ++- common/src/gx_system_timer_update.c | 2 ++ common/src/gxe_animation_canvas_define.c | 3 ++- common/src/gxe_animation_create.c | 3 ++- common/src/gxe_animation_delete.c | 3 ++- common/src/gxe_animation_drag_disable.c | 3 ++- common/src/gxe_animation_drag_enable.c | 3 ++- common/src/gxe_animation_landing_speed_set.c | 3 ++- common/src/gxe_animation_start.c | 3 ++- common/src/gxe_animation_stop.c | 3 ++- 26 files changed, 56 insertions(+), 26 deletions(-) diff --git a/common/inc/gx_animation.h b/common/inc/gx_animation.h index f54cac42..a41e0690 100644 --- a/common/inc/gx_animation.h +++ b/common/inc/gx_animation.h @@ -52,6 +52,7 @@ #ifndef GX_ANIMATION_H #define GX_ANIMATION_H +#if (GX_ANIMATION_POOL_SIZE > 0) #define GX_ANIMATION_SLIDE_LEFT 0x0001 #define GX_ANIMATION_SLIDE_RIGHT 0x0002 #define GX_ANIMATION_SLIDE_UP 0x0040 @@ -92,4 +93,5 @@ UINT _gxe_animation_stop(GX_ANIMATION *animation); UINT _gxe_animation_landing_speed_set(GX_ANIMATION *animation, USHORT shift_per_step); #endif +#endif diff --git a/common/inc/gx_api.h b/common/inc/gx_api.h index b3d90d82..b8f673f5 100644 --- a/common/inc/gx_api.h +++ b/common/inc/gx_api.h @@ -5714,8 +5714,10 @@ UINT _gxe_string_scroll_wheel_string_list_set_ext(GX_STRING_SCROLL_WHEEL *wheel, INT string_count); UINT _gxe_system_active_language_set(GX_UBYTE language); +#if (GX_ANIMATION_POOL_SIZE > 0) UINT _gxe_system_animation_get(GX_ANIMATION **animation); UINT _gxe_system_animation_free(GX_ANIMATION *animation); +#endif #if defined(GX_DYNAMIC_BIDI_TEXT_SUPPORT) UINT _gx_system_bidi_text_enable(VOID); UINT _gx_system_bidi_text_disable(VOID); diff --git a/common/src/gx_animation_canvas_define.c b/common/src/gx_animation_canvas_define.c index 17ee0340..b95cfe33 100644 --- a/common/src/gx_animation_canvas_define.c +++ b/common/src/gx_animation_canvas_define.c @@ -73,6 +73,7 @@ /* resulting in version 6.1 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) UINT _gx_animation_canvas_define(GX_ANIMATION *animation, GX_CANVAS *canvas) { if (animation -> gx_animation_status != GX_ANIMATION_IDLE) @@ -85,4 +86,4 @@ UINT _gx_animation_canvas_define(GX_ANIMATION *animation, GX_CANVAS *canvas) /* Return completion status code. */ return(GX_SUCCESS); } - +#endif diff --git a/common/src/gx_animation_complete.c b/common/src/gx_animation_complete.c index 047354ae..dca1aac4 100644 --- a/common/src/gx_animation_complete.c +++ b/common/src/gx_animation_complete.c @@ -71,6 +71,7 @@ /* resulting in version 6.1 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) VOID _gx_animation_complete_event_send(GX_ANIMATION *animation) { GX_EVENT complete_event; @@ -93,7 +94,7 @@ GX_EVENT complete_event; _gx_system_event_send(&complete_event); } } - +#endif /**************************************************************************/ @@ -146,7 +147,7 @@ GX_EVENT complete_event; /* resulting in version 6.1.3 */ /* */ /**************************************************************************/ - +#if (GX_ANIMATION_POOL_SIZE > 0) VOID _gx_animation_complete(GX_ANIMATION *animation) { GX_WIDGET *target; @@ -255,4 +256,4 @@ GX_VALUE yshift; _gx_system_animation_free(animation); } } - +#endif diff --git a/common/src/gx_animation_create.c b/common/src/gx_animation_create.c index 01f39fcd..c73188c8 100644 --- a/common/src/gx_animation_create.c +++ b/common/src/gx_animation_create.c @@ -70,6 +70,7 @@ /* resulting in version 6.1 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) UINT _gx_animation_create(GX_ANIMATION *animation) { memset(animation, 0, sizeof(GX_ANIMATION)); @@ -79,4 +80,4 @@ UINT _gx_animation_create(GX_ANIMATION *animation) /* Return completion status code. */ return(GX_SUCCESS); } - +#endif diff --git a/common/src/gx_animation_delete.c b/common/src/gx_animation_delete.c index d433a573..2493fc77 100644 --- a/common/src/gx_animation_delete.c +++ b/common/src/gx_animation_delete.c @@ -71,7 +71,7 @@ /* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ /* */ /**************************************************************************/ - +#if (GX_ANIMATION_POOL_SIZE > 0) UINT _gx_animation_delete(GX_ANIMATION *target, GX_WIDGET *parent) { GX_ANIMATION *animation; @@ -122,4 +122,4 @@ GX_ANIMATION *next; return(GX_SUCCESS); } - +#endif diff --git a/common/src/gx_animation_drag_disable.c b/common/src/gx_animation_drag_disable.c index 543e3f11..98d80a70 100644 --- a/common/src/gx_animation_drag_disable.c +++ b/common/src/gx_animation_drag_disable.c @@ -70,6 +70,7 @@ /* resulting in version 6.1 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) UINT _gx_animation_drag_disable(GX_ANIMATION *animation, GX_WIDGET *widget) { UINT status; @@ -82,4 +83,4 @@ UINT status; status = _gx_animation_stop(animation); return status; } - +#endif diff --git a/common/src/gx_animation_drag_enable.c b/common/src/gx_animation_drag_enable.c index 1961ec52..3017d3d1 100644 --- a/common/src/gx_animation_drag_enable.c +++ b/common/src/gx_animation_drag_enable.c @@ -71,6 +71,7 @@ /* resulting in version 6.1 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) UINT _gx_animation_drag_enable(GX_ANIMATION *animation, GX_WIDGET *widget, GX_ANIMATION_INFO *info) { /* Test invalid animation status. */ @@ -93,4 +94,4 @@ UINT _gx_animation_drag_enable(GX_ANIMATION *animation, GX_WIDGET *widget, GX_A /* Return completion status code. */ return(GX_SUCCESS); } - +#endif diff --git a/common/src/gx_animation_drag_event_process.c b/common/src/gx_animation_drag_event_process.c index 92124061..409a8386 100644 --- a/common/src/gx_animation_drag_event_process.c +++ b/common/src/gx_animation_drag_event_process.c @@ -85,6 +85,7 @@ /* resulting in version 6.1.8 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) static UINT _gx_animation_drag_event_check(GX_ANIMATION *animation, GX_EVENT *event_ptr) { GX_ANIMATION_INFO *info = &animation -> gx_animation_info; @@ -277,6 +278,7 @@ INT shift; return GX_SUCCESS; } +#endif /**************************************************************************/ /* */ @@ -320,6 +322,7 @@ INT shift; /* resulting in version 6.1 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) UINT _gx_animation_drag_event_process(GX_WIDGET *widget, GX_EVENT *event_ptr) { GX_ANIMATION *animation; @@ -342,4 +345,4 @@ GX_ANIMATION *animation; return GX_SUCCESS; } - +#endif diff --git a/common/src/gx_animation_drag_tracking.c b/common/src/gx_animation_drag_tracking.c index 60153559..57b9d342 100644 --- a/common/src/gx_animation_drag_tracking.c +++ b/common/src/gx_animation_drag_tracking.c @@ -78,6 +78,7 @@ /* resulting in version 6.1.11 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) UINT _gx_animation_drag_tracking(GX_ANIMATION *animation, GX_POINT penpos) { GX_VALUE delta_x = 0; @@ -221,4 +222,4 @@ GX_VALUE border_width; /* Return completion status code. */ return(GX_SUCCESS); } - +#endif diff --git a/common/src/gx_animation_drag_tracking_start.c b/common/src/gx_animation_drag_tracking_start.c index 4f8aa955..e0ab2ba2 100644 --- a/common/src/gx_animation_drag_tracking_start.c +++ b/common/src/gx_animation_drag_tracking_start.c @@ -73,6 +73,7 @@ /* resulting in version 6.1.11 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) UINT _gx_animation_drag_tracking_start(GX_ANIMATION *animation, GX_POINT penpos) { GX_ANIMATION_INFO *info; @@ -305,4 +306,4 @@ VOID (*active_display_area_set)(INT layer, GX_RECTANGLE *size); /* Return completion status code. */ return(GX_SUCCESS); } - +#endif diff --git a/common/src/gx_animation_landing_speed_set.c b/common/src/gx_animation_landing_speed_set.c index fe8684f1..5e27e18d 100644 --- a/common/src/gx_animation_landing_speed_set.c +++ b/common/src/gx_animation_landing_speed_set.c @@ -70,6 +70,7 @@ /* resulting in version 6.1 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) UINT _gx_animation_landing_speed_set(GX_ANIMATION *animation, USHORT shift_per_step) { animation -> gx_animation_landing_speed = shift_per_step; @@ -77,4 +78,4 @@ UINT _gx_animation_landing_speed_set(GX_ANIMATION *animation, USHORT shift_per_ /* Return completion status code. */ return(GX_SUCCESS); } - +#endif diff --git a/common/src/gx_animation_slide_landing.c b/common/src/gx_animation_slide_landing.c index 2247b583..9d3dab0f 100644 --- a/common/src/gx_animation_slide_landing.c +++ b/common/src/gx_animation_slide_landing.c @@ -79,6 +79,7 @@ /* resulting in version 6.1.11 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) UINT _gx_animation_slide_landing(GX_ANIMATION *animation) { GX_ANIMATION_INFO *info = &animation -> gx_animation_info; @@ -296,4 +297,4 @@ GX_VALUE border_width; /* Return completion status code. */ return(GX_SUCCESS); } - +#endif diff --git a/common/src/gx_animation_slide_landing_start.c b/common/src/gx_animation_slide_landing_start.c index 9fb7f525..419f3ccb 100644 --- a/common/src/gx_animation_slide_landing_start.c +++ b/common/src/gx_animation_slide_landing_start.c @@ -73,6 +73,7 @@ /* resulting in version 6.1.11 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) UINT _gx_animation_slide_landing_start(GX_ANIMATION *animation) { GX_ANIMATION_INFO *info; @@ -119,4 +120,4 @@ GX_RECTANGLE *target_size; /* Return completion status code. */ return(GX_SUCCESS); } - +#endif diff --git a/common/src/gx_animation_start.c b/common/src/gx_animation_start.c index f4965fee..8f1e33b7 100644 --- a/common/src/gx_animation_start.c +++ b/common/src/gx_animation_start.c @@ -85,6 +85,7 @@ /* resulting in version 6.1.3 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) UINT _gx_animation_start(GX_ANIMATION *animation, GX_ANIMATION_INFO *info) { UINT status = GX_SUCCESS; @@ -207,4 +208,4 @@ GX_VALUE top; return(status); } - +#endif diff --git a/common/src/gx_animation_stop.c b/common/src/gx_animation_stop.c index 0ecbfd7a..d0e13b96 100644 --- a/common/src/gx_animation_stop.c +++ b/common/src/gx_animation_stop.c @@ -76,6 +76,7 @@ /* resulting in version 6.1.3 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) UINT _gx_animation_stop(GX_ANIMATION *animation) { UINT status = GX_SUCCESS; @@ -123,4 +124,4 @@ GX_ANIMATION *previous; GX_EXIT_CRITICAL return(status); } - +#endif diff --git a/common/src/gx_animation_update.c b/common/src/gx_animation_update.c index 14ebf137..995e54de 100644 --- a/common/src/gx_animation_update.c +++ b/common/src/gx_animation_update.c @@ -81,6 +81,7 @@ /* resulting in version 6.1.11 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) VOID _gx_animation_update(VOID) { GX_ANIMATION *animation; @@ -245,4 +246,4 @@ GX_RECTANGLE block; animation = next; } } - +#endif diff --git a/common/src/gx_system_timer_update.c b/common/src/gx_system_timer_update.c index c75574d3..fd791060 100644 --- a/common/src/gx_system_timer_update.c +++ b/common/src/gx_system_timer_update.c @@ -127,10 +127,12 @@ GX_ENTER_CRITICAL current_timer = next_timer; } +#if (GX_ANIMATION_POOL_SIZE > 0) if (_gx_system_animation_list) { _gx_animation_update(); } +#endif /* release our lock */ GX_EXIT_CRITICAL diff --git a/common/src/gxe_animation_canvas_define.c b/common/src/gxe_animation_canvas_define.c index 50003907..13fe9a42 100644 --- a/common/src/gxe_animation_canvas_define.c +++ b/common/src/gxe_animation_canvas_define.c @@ -72,6 +72,7 @@ /* resulting in version 6.1 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) UINT _gxe_animation_canvas_define(GX_ANIMATION *animation, GX_CANVAS *canvas) { UINT status = GX_SUCCESS; @@ -103,4 +104,4 @@ ULONG required_size; /* Return completion status code. */ return(status); } - +#endif diff --git a/common/src/gxe_animation_create.c b/common/src/gxe_animation_create.c index 105d228b..8d40a25f 100644 --- a/common/src/gxe_animation_create.c +++ b/common/src/gxe_animation_create.c @@ -66,6 +66,7 @@ /* resulting in version 6.1 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) UINT _gxe_animation_create(GX_ANIMATION *animation) { UINT status; @@ -87,4 +88,4 @@ UINT status; /* Return completion status. */ return(status); } - +#endif diff --git a/common/src/gxe_animation_delete.c b/common/src/gxe_animation_delete.c index 7e5b9e00..7f022421 100644 --- a/common/src/gxe_animation_delete.c +++ b/common/src/gxe_animation_delete.c @@ -69,6 +69,7 @@ GX_CALLER_CHECKING_EXTERNS /* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) UINT _gxe_animation_delete(GX_ANIMATION *target, GX_WIDGET *parent) { /* Check for appropriate caller. */ @@ -81,4 +82,4 @@ UINT _gxe_animation_delete(GX_ANIMATION *target, GX_WIDGET *parent) return _gx_animation_delete(target, parent); } - +#endif diff --git a/common/src/gxe_animation_drag_disable.c b/common/src/gxe_animation_drag_disable.c index 98644e4a..1999af77 100644 --- a/common/src/gxe_animation_drag_disable.c +++ b/common/src/gxe_animation_drag_disable.c @@ -73,6 +73,7 @@ GX_CALLER_CHECKING_EXTERNS /* resulting in version 6.1 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) UINT _gxe_animation_drag_disable(GX_ANIMATION *animation, GX_WIDGET *widget) { /* Check for appropriate caller. */ @@ -92,4 +93,4 @@ UINT _gxe_animation_drag_disable(GX_ANIMATION *animation, GX_WIDGET *widget) return _gx_animation_drag_disable(animation, widget); } - +#endif diff --git a/common/src/gxe_animation_drag_enable.c b/common/src/gxe_animation_drag_enable.c index 2a76116b..7ef7a705 100644 --- a/common/src/gxe_animation_drag_enable.c +++ b/common/src/gxe_animation_drag_enable.c @@ -72,6 +72,7 @@ /* resulting in version 6.1 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) UINT _gxe_animation_drag_enable(GX_ANIMATION *animation, GX_WIDGET *widget, GX_ANIMATION_INFO *info) { /* Check for invalid pointer. */ @@ -107,4 +108,4 @@ UINT _gxe_animation_drag_enable(GX_ANIMATION *animation, GX_WIDGET *widget, GX_A return(_gx_animation_drag_enable(animation, widget, info)); } - +#endif diff --git a/common/src/gxe_animation_landing_speed_set.c b/common/src/gxe_animation_landing_speed_set.c index 96c1cdfd..c8e9453f 100644 --- a/common/src/gxe_animation_landing_speed_set.c +++ b/common/src/gxe_animation_landing_speed_set.c @@ -70,6 +70,7 @@ /* resulting in version 6.1 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) UINT _gxe_animation_landing_speed_set(GX_ANIMATION *animation, USHORT shift_per_step) { /* Check for invalid input pointers. */ @@ -85,4 +86,4 @@ UINT _gxe_animation_landing_speed_set(GX_ANIMATION *animation, USHORT shift_per_ return _gx_animation_landing_speed_set(animation, shift_per_step); } - +#endif diff --git a/common/src/gxe_animation_start.c b/common/src/gxe_animation_start.c index d47f9e24..f0692112 100644 --- a/common/src/gxe_animation_start.c +++ b/common/src/gxe_animation_start.c @@ -80,6 +80,7 @@ GX_CALLER_CHECKING_EXTERNS /* resulting in version 6.3.0 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) UINT _gxe_animation_start(GX_ANIMATION *animation, GX_ANIMATION_INFO *info) { /* Check for appropriate caller. */ @@ -120,4 +121,4 @@ UINT _gxe_animation_start(GX_ANIMATION *animation, GX_ANIMATION_INFO *info) return(_gx_animation_start(animation, info)); } - +#endif diff --git a/common/src/gxe_animation_stop.c b/common/src/gxe_animation_stop.c index 35a2d392..65103d82 100644 --- a/common/src/gxe_animation_stop.c +++ b/common/src/gxe_animation_stop.c @@ -73,6 +73,7 @@ GX_CALLER_CHECKING_EXTERNS /* resulting in version 6.1 */ /* */ /**************************************************************************/ +#if (GX_ANIMATION_POOL_SIZE > 0) UINT _gxe_animation_stop(GX_ANIMATION *animation) { /* Check for appropriate caller. */ @@ -90,4 +91,4 @@ UINT _gxe_animation_stop(GX_ANIMATION *animation) return _gx_animation_stop(animation); } - +#endif From eec5057baa6ac6e37680085cfcf4d2d9b0dfdbed Mon Sep 17 00:00:00 2001 From: parsley Date: Fri, 30 Jan 2026 09:55:07 +0100 Subject: [PATCH 07/10] fix "variable "brush_alpha" was set but never used" if GX_BRUSH_ALPHA_SUPPORT is undefined --- common/src/gx_canvas_pixel_draw.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/src/gx_canvas_pixel_draw.c b/common/src/gx_canvas_pixel_draw.c index 7d52ef9b..77bd3482 100644 --- a/common/src/gx_canvas_pixel_draw.c +++ b/common/src/gx_canvas_pixel_draw.c @@ -77,7 +77,9 @@ GX_DRAW_CONTEXT *context; GX_DISPLAY *display; GX_VIEW *view; GX_COLOR pixcolor; +#if defined(GX_BRUSH_ALPHA_SUPPORT) GX_UBYTE brush_alpha; +#endif /* pick up the current drawing context */ context = _gx_system_current_draw_context; @@ -92,7 +94,9 @@ GX_UBYTE brush_alpha; /* pick up current display driver */ display = context -> gx_draw_context_display; +#if defined(GX_BRUSH_ALPHA_SUPPORT) brush_alpha = context -> gx_draw_context_brush.gx_brush_alpha; +#endif /* pick up the pixel color */ pixcolor = context -> gx_draw_context_brush.gx_brush_line_color; From c40927a49065de48dab53e0efb49b6f7c3f31223 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Desbiens?= Date: Fri, 6 Mar 2026 12:20:39 +0100 Subject: [PATCH 08/10] Updated copyright headers and removed revision history --- common/inc/gx_animation.h | 18 +- common/inc/gx_api.h | 94 +------ common/inc/gx_binres_loader.h | 20 +- common/inc/gx_button.h | 16 +- common/inc/gx_canvas.h | 18 +- common/inc/gx_circular_gauge.h | 15 +- common/inc/gx_context.h | 15 +- common/inc/gx_display.h | 36 +-- common/inc/gx_drop_list.h | 15 +- common/inc/gx_icon.h | 15 +- common/inc/gx_image_reader.h | 28 +- common/inc/gx_line_chart.h | 15 +- common/inc/gx_menu.h | 18 +- common/inc/gx_multi_line_text_input.h | 15 +- common/inc/gx_multi_line_text_view.h | 15 +- common/inc/gx_numeric_pixelmap_prompt.h | 15 +- common/inc/gx_numeric_prompt.h | 15 +- common/inc/gx_pixelmap_prompt.h | 15 +- common/inc/gx_progress_bar.h | 15 +- common/inc/gx_prompt.h | 16 +- common/inc/gx_radial_progress_bar.h | 15 +- common/inc/gx_radial_slider.h | 15 +- common/inc/gx_rich_text_view.h | 13 +- common/inc/gx_screen_stack.h | 15 +- common/inc/gx_scroll_wheel.h | 28 +- common/inc/gx_scrollbar.h | 15 +- common/inc/gx_single_line_text_input.h | 15 +- common/inc/gx_slider.h | 15 +- common/inc/gx_sprite.h | 15 +- common/inc/gx_system.h | 25 +- common/inc/gx_system_rtos_bind.h | 15 +- common/inc/gx_text_input_cursor.h | 15 +- common/inc/gx_tree_view.h | 15 +- common/inc/gx_user_sample.h | 27 +- common/inc/gx_utility.h | 27 +- common/inc/gx_widget.h | 19 +- common/inc/gx_window.h | 15 +- common/src/gx_accordion_menu_create.c | 15 +- common/src/gx_accordion_menu_draw.c | 15 +- common/src/gx_accordion_menu_event_process.c | 69 +---- common/src/gx_accordion_menu_position.c | 23 +- common/src/gx_animation_canvas_define.c | 15 +- common/src/gx_animation_complete.c | 26 +- common/src/gx_animation_create.c | 15 +- common/src/gx_animation_delete.c | 13 +- common/src/gx_animation_drag_disable.c | 15 +- common/src/gx_animation_drag_enable.c | 15 +- common/src/gx_animation_drag_event_process.c | 26 +- common/src/gx_animation_drag_tracking.c | 19 +- common/src/gx_animation_drag_tracking_start.c | 18 +- common/src/gx_animation_landing_speed_set.c | 15 +- common/src/gx_animation_slide_landing.c | 19 +- common/src/gx_animation_slide_landing_start.c | 18 +- common/src/gx_animation_start.c | 19 +- common/src/gx_animation_stop.c | 21 +- common/src/gx_animation_update.c | 21 +- common/src/gx_binres_font_load.c | 13 +- common/src/gx_binres_language_count_get.c | 15 +- common/src/gx_binres_language_info_load.c | 15 +- common/src/gx_binres_language_table_load.c | 62 +---- common/src/gx_binres_pixelmap_load.c | 19 +- common/src/gx_binres_theme_load.c | 192 +------------ common/src/gx_brush_default.c | 15 +- common/src/gx_brush_define.c | 15 +- common/src/gx_button_background_draw.c | 15 +- common/src/gx_button_create.c | 16 +- common/src/gx_button_deselect.c | 15 +- common/src/gx_button_draw.c | 15 +- common/src/gx_button_event_process.c | 15 +- common/src/gx_button_select.c | 15 +- common/src/gx_button_siblings_deselect.c | 15 +- common/src/gx_canvas_alpha_set.c | 15 +- common/src/gx_canvas_arc_draw.c | 15 +- common/src/gx_canvas_block_move.c | 18 +- common/src/gx_canvas_circle_draw.c | 15 +- common/src/gx_canvas_composite_create.c | 15 +- common/src/gx_canvas_create.c | 21 +- common/src/gx_canvas_delete.c | 15 +- common/src/gx_canvas_dirty_mark.c | 15 +- common/src/gx_canvas_drawing_complete.c | 15 +- common/src/gx_canvas_drawing_initiate.c | 25 +- common/src/gx_canvas_ellipse_draw.c | 15 +- common/src/gx_canvas_glyphs_draw.c | 39 +-- common/src/gx_canvas_hardware_layer_bind.c | 15 +- common/src/gx_canvas_hide.c | 18 +- common/src/gx_canvas_line_draw.c | 18 +- common/src/gx_canvas_memory_define.c | 19 +- common/src/gx_canvas_mouse_define.c | 15 +- common/src/gx_canvas_mouse_hide.c | 15 +- common/src/gx_canvas_mouse_show.c | 18 +- common/src/gx_canvas_offset_set.c | 18 +- common/src/gx_canvas_pie_draw.c | 15 +- common/src/gx_canvas_pixel_draw.c | 15 +- common/src/gx_canvas_pixelmap_blend.c | 15 +- common/src/gx_canvas_pixelmap_draw.c | 15 +- common/src/gx_canvas_pixelmap_get.c | 15 +- common/src/gx_canvas_pixelmap_rotate.c | 27 +- common/src/gx_canvas_pixelmap_tile.c | 15 +- common/src/gx_canvas_polygon_draw.c | 15 +- common/src/gx_canvas_rectangle_draw.c | 23 +- common/src/gx_canvas_rotated_text_draw.c | 27 +- common/src/gx_canvas_shift.c | 15 +- common/src/gx_canvas_show.c | 15 +- common/src/gx_canvas_text_draw.c | 33 +-- common/src/gx_checkbox_create.c | 16 +- common/src/gx_checkbox_draw.c | 16 +- common/src/gx_checkbox_event_process.c | 16 +- common/src/gx_checkbox_pixelmap_set.c | 15 +- common/src/gx_checkbox_select.c | 15 +- common/src/gx_circular_gauge_angle_get.c | 15 +- ...circular_gauge_angle_increment_calculate.c | 15 +- common/src/gx_circular_gauge_angle_set.c | 15 +- common/src/gx_circular_gauge_animation_set.c | 15 +- .../src/gx_circular_gauge_background_draw.c | 20 +- common/src/gx_circular_gauge_create.c | 18 +- common/src/gx_circular_gauge_draw.c | 15 +- common/src/gx_circular_gauge_event_process.c | 19 +- .../src/gx_circular_gauge_needle_dirty_mark.c | 15 +- ...ircular_gauge_needle_rectangle_calculate.c | 18 +- common/src/gx_circular_gauge_needle_rotate.c | 15 +- common/src/gx_context_brush_default.c | 15 +- common/src/gx_context_brush_define.c | 15 +- common/src/gx_context_brush_get.c | 15 +- common/src/gx_context_brush_pattern_set.c | 15 +- common/src/gx_context_brush_set.c | 15 +- common/src/gx_context_brush_style_set.c | 15 +- common/src/gx_context_brush_width_set.c | 15 +- common/src/gx_context_color_get.c | 15 +- common/src/gx_context_fill_color_set.c | 15 +- common/src/gx_context_font_get.c | 15 +- common/src/gx_context_font_set.c | 15 +- common/src/gx_context_line_color_set.c | 15 +- common/src/gx_context_pixelmap_get.c | 15 +- common/src/gx_context_pixelmap_set.c | 15 +- common/src/gx_context_raw_brush_define.c | 15 +- common/src/gx_context_raw_fill_color_set.c | 15 +- common/src/gx_context_raw_line_color_set.c | 15 +- common/src/gx_context_string_get.c | 23 +- common/src/gx_display_active_language_set.c | 15 +- common/src/gx_display_canvas_dirty.c | 15 +- common/src/gx_display_color_set.c | 15 +- common/src/gx_display_color_table_set.c | 15 +- common/src/gx_display_create.c | 15 +- common/src/gx_display_delete.c | 15 +- .../gx_display_driver_1555xrgb_canvas_blend.c | 15 +- .../gx_display_driver_1555xrgb_jpeg_draw.c | 19 +- ...display_driver_1555xrgb_native_color_get.c | 15 +- .../gx_display_driver_1555xrgb_pixel_blend.c | 15 +- ..._display_driver_1555xrgb_pixelmap_rotate.c | 37 +-- .../src/gx_display_driver_1555xrgb_png_draw.c | 15 +- common/src/gx_display_driver_1555xrgb_setup.c | 15 +- .../src/gx_display_driver_16bpp_block_move.c | 18 +- .../src/gx_display_driver_16bpp_canvas_copy.c | 18 +- ...isplay_driver_16bpp_horizontal_line_draw.c | 19 +- ...river_16bpp_horizontal_pattern_line_draw.c | 19 +- .../gx_display_driver_16bpp_mouse_capture.c | 15 +- .../gx_display_driver_16bpp_mouse_restore.c | 15 +- .../src/gx_display_driver_16bpp_pixel_write.c | 19 +- .../gx_display_driver_16bpp_pixelmap_blend.c | 79 +----- .../gx_display_driver_16bpp_pixelmap_draw.c | 127 +-------- .../gx_display_driver_16bpp_pixelmap_rotate.c | 64 +---- ..._display_driver_16bpp_rotated_block_move.c | 13 +- ...display_driver_16bpp_rotated_canvas_copy.c | 13 +- ...river_16bpp_rotated_horizontal_line_draw.c | 13 +- ...bpp_rotated_horizontal_pattern_line_draw.c | 13 +- ...display_driver_16bpp_rotated_pixel_write.c | 13 +- ...play_driver_16bpp_rotated_pixelmap_blend.c | 49 +--- ...splay_driver_16bpp_rotated_pixelmap_draw.c | 69 +---- ...lay_driver_16bpp_rotated_pixelmap_rotate.c | 37 +-- ...ay_driver_16bpp_rotated_simple_line_draw.c | 13 +- ..._driver_16bpp_rotated_vertical_line_draw.c | 13 +- ...16bpp_rotated_vertical_pattern_line_draw.c | 13 +- .../gx_display_driver_16bpp_row_pitch_get.c | 15 +- ...gx_display_driver_16bpp_simple_line_draw.c | 19 +- ..._display_driver_16bpp_vertical_line_draw.c | 19 +- ..._driver_16bpp_vertical_pattern_line_draw.c | 19 +- .../src/gx_display_driver_1bpp_block_move.c | 15 +- .../src/gx_display_driver_1bpp_canvas_copy.c | 15 +- .../gx_display_driver_1bpp_glyph_1bpp_draw.c | 15 +- ...display_driver_1bpp_horizontal_line_draw.c | 15 +- ...driver_1bpp_horizontal_pattern_line_draw.c | 15 +- ...river_1bpp_horizontal_pixelmap_line_draw.c | 47 +--- .../gx_display_driver_1bpp_mouse_capture.c | 15 +- .../gx_display_driver_1bpp_mouse_restore.c | 15 +- .../gx_display_driver_1bpp_native_color_get.c | 15 +- .../src/gx_display_driver_1bpp_pixel_write.c | 15 +- .../gx_display_driver_1bpp_pixelmap_draw.c | 47 +--- .../gx_display_driver_1bpp_pixelmap_rotate.c | 61 +--- .../gx_display_driver_1bpp_row_pitch_get.c | 15 +- .../gx_display_driver_1bpp_simple_line_draw.c | 15 +- ...x_display_driver_1bpp_vertical_line_draw.c | 15 +- ...y_driver_1bpp_vertical_pattern_line_draw.c | 15 +- .../gx_display_driver_24xrgb_canvas_blend.c | 15 +- .../src/gx_display_driver_24xrgb_jpeg_draw.c | 19 +- .../gx_display_driver_24xrgb_mouse_capture.c | 15 +- .../gx_display_driver_24xrgb_mouse_restore.c | 15 +- ...x_display_driver_24xrgb_native_color_get.c | 15 +- .../gx_display_driver_24xrgb_pixel_blend.c | 18 +- .../gx_display_driver_24xrgb_pixelmap_blend.c | 87 +----- .../src/gx_display_driver_24xrgb_png_draw.c | 15 +- ...splay_driver_24xrgb_rotated_canvas_blend.c | 13 +- ..._display_driver_24xrgb_rotated_jpeg_draw.c | 17 +- ...isplay_driver_24xrgb_rotated_pixel_blend.c | 13 +- ...x_display_driver_24xrgb_rotated_png_draw.c | 13 +- .../gx_display_driver_24xrgb_rotated_setup.c | 13 +- common/src/gx_display_driver_24xrgb_setup.c | 19 +- ...x_display_driver_32argb_native_color_get.c | 15 +- .../gx_display_driver_32argb_pixel_blend.c | 18 +- .../gx_display_driver_32argb_pixelmap_blend.c | 39 +-- .../gx_display_driver_32argb_pixelmap_draw.c | 53 +--- ...isplay_driver_32argb_rotated_pixel_blend.c | 13 +- .../gx_display_driver_32argb_rotated_setup.c | 13 +- common/src/gx_display_driver_32argb_setup.c | 18 +- .../src/gx_display_driver_32bpp_block_move.c | 15 +- .../src/gx_display_driver_32bpp_canvas_copy.c | 15 +- .../gx_display_driver_32bpp_glyph_1bit_draw.c | 18 +- ...isplay_driver_32bpp_horizontal_line_draw.c | 15 +- ...river_32bpp_horizontal_pattern_line_draw.c | 15 +- ...iver_32bpp_horizontal_pixelmap_line_draw.c | 79 +----- .../src/gx_display_driver_32bpp_pixel_write.c | 15 +- .../gx_display_driver_32bpp_pixelmap_draw.c | 136 +-------- .../gx_display_driver_32bpp_pixelmap_rotate.c | 51 +--- ..._display_driver_32bpp_rotated_block_move.c | 13 +- ...display_driver_32bpp_rotated_canvas_copy.c | 13 +- ...lay_driver_32bpp_rotated_glyph_1bit_draw.c | 16 +- ...river_32bpp_rotated_horizontal_line_draw.c | 13 +- ...bpp_rotated_horizontal_pattern_line_draw.c | 13 +- ...pp_rotated_horizontal_pixelmap_line_draw.c | 61 +--- ...display_driver_32bpp_rotated_pixel_write.c | 13 +- ...play_driver_32bpp_rotated_pixelmap_blend.c | 76 +---- ...splay_driver_32bpp_rotated_pixelmap_draw.c | 133 +-------- ...lay_driver_32bpp_rotated_pixelmap_rotate.c | 40 +-- ...ay_driver_32bpp_rotated_simple_line_draw.c | 13 +- ..._driver_32bpp_rotated_vertical_line_draw.c | 13 +- ...32bpp_rotated_vertical_pattern_line_draw.c | 13 +- .../gx_display_driver_32bpp_row_pitch_get.c | 15 +- ...gx_display_driver_32bpp_simple_line_draw.c | 15 +- ..._display_driver_32bpp_vertical_line_draw.c | 15 +- ..._driver_32bpp_vertical_pattern_line_draw.c | 15 +- ...x_display_driver_332rgb_native_color_get.c | 15 +- .../gx_display_driver_332rgb_pixel_blend.c | 15 +- .../gx_display_driver_332rgb_pixelmap_draw.c | 47 +--- ...gx_display_driver_332rgb_pixelmap_rotate.c | 49 +--- common/src/gx_display_driver_332rgb_setup.c | 15 +- .../gx_display_driver_4444argb_canvas_blend.c | 15 +- ...r_4444argb_horizontal_pixelmap_line_draw.c | 73 +---- ...display_driver_4444argb_native_color_get.c | 15 +- .../gx_display_driver_4444argb_pixel_blend.c | 15 +- ...gx_display_driver_4444argb_pixelmap_draw.c | 47 +--- ..._display_driver_4444argb_pixelmap_rotate.c | 38 +-- common/src/gx_display_driver_4444argb_setup.c | 15 +- .../src/gx_display_driver_4bpp_block_move.c | 15 +- .../src/gx_display_driver_4bpp_canvas_copy.c | 15 +- .../gx_display_driver_4bpp_glyph_1bit_draw.c | 15 +- .../gx_display_driver_4bpp_glyph_4bit_draw.c | 15 +- .../gx_display_driver_4bpp_grayscale_setup.c | 19 +- ...display_driver_4bpp_horizontal_line_draw.c | 15 +- ...driver_4bpp_horizontal_pattern_line_draw.c | 15 +- ...river_4bpp_horizontal_pixelmap_line_draw.c | 47 +--- .../gx_display_driver_4bpp_mouse_capture.c | 15 +- .../gx_display_driver_4bpp_mouse_restore.c | 15 +- .../gx_display_driver_4bpp_native_color_get.c | 15 +- .../src/gx_display_driver_4bpp_pixel_write.c | 15 +- .../gx_display_driver_4bpp_pixelmap_draw.c | 47 +--- .../gx_display_driver_4bpp_pixelmap_rotate.c | 61 +--- .../gx_display_driver_4bpp_row_pitch_get.c | 15 +- .../gx_display_driver_4bpp_simple_line_draw.c | 15 +- ...x_display_driver_4bpp_vertical_line_draw.c | 15 +- ...y_driver_4bpp_vertical_pattern_line_draw.c | 19 +- .../gx_display_driver_565rgb_canvas_blend.c | 17 +- ...gx_display_driver_565rgb_glyph_1bit_draw.c | 22 +- ...ver_565rgb_horizontal_pixelmap_line_draw.c | 81 +----- .../src/gx_display_driver_565rgb_jpeg_draw.c | 19 +- ...x_display_driver_565rgb_native_color_get.c | 15 +- .../gx_display_driver_565rgb_pixel_blend.c | 19 +- .../src/gx_display_driver_565rgb_png_draw.c | 15 +- ...splay_driver_565rgb_rotated_canvas_blend.c | 13 +- ...ay_driver_565rgb_rotated_glyph_1bit_draw.c | 13 +- ...gb_rotated_horizontal_pixelmap_line_draw.c | 55 +--- ..._display_driver_565rgb_rotated_jpeg_draw.c | 17 +- ...isplay_driver_565rgb_rotated_pixel_blend.c | 13 +- ...x_display_driver_565rgb_rotated_png_draw.c | 13 +- .../gx_display_driver_565rgb_rotated_setup.c | 13 +- common/src/gx_display_driver_565rgb_setup.c | 19 +- ...lay_driver_8bit_palette_native_color_get.c | 15 +- ...isplay_driver_8bit_palette_rotated_setup.c | 13 +- .../gx_display_driver_8bit_palette_setup.c | 19 +- .../src/gx_display_driver_8bpp_block_move.c | 15 +- .../src/gx_display_driver_8bpp_canvas_copy.c | 15 +- .../gx_display_driver_8bpp_glyph_1bit_draw.c | 18 +- .../gx_display_driver_8bpp_glyph_3bit_draw.c | 15 +- .../gx_display_driver_8bpp_glyph_4bit_draw.c | 15 +- ...display_driver_8bpp_horizontal_line_draw.c | 15 +- ...driver_8bpp_horizontal_pattern_line_draw.c | 15 +- ...river_8bpp_horizontal_pixelmap_line_draw.c | 103 +------ .../gx_display_driver_8bpp_mouse_capture.c | 15 +- .../gx_display_driver_8bpp_mouse_restore.c | 15 +- .../src/gx_display_driver_8bpp_pixel_write.c | 15 +- .../gx_display_driver_8bpp_pixelmap_blend.c | 31 +-- .../gx_display_driver_8bpp_pixelmap_draw.c | 55 +--- .../gx_display_driver_8bpp_pixelmap_rotate.c | 61 +--- ...x_display_driver_8bpp_rotated_block_move.c | 13 +- ..._display_driver_8bpp_rotated_canvas_copy.c | 13 +- ...play_driver_8bpp_rotated_glyph_1bit_draw.c | 13 +- ...play_driver_8bpp_rotated_glyph_3bit_draw.c | 13 +- ...play_driver_8bpp_rotated_glyph_4bit_draw.c | 13 +- ...driver_8bpp_rotated_horizontal_line_draw.c | 13 +- ...bpp_rotated_horizontal_pattern_line_draw.c | 13 +- ...pp_rotated_horizontal_pixelmap_line_draw.c | 40 +-- ..._display_driver_8bpp_rotated_pixel_write.c | 13 +- ...isplay_driver_8bpp_rotated_pixelmap_draw.c | 37 +-- ...play_driver_8bpp_rotated_pixelmap_rotate.c | 37 +-- ...lay_driver_8bpp_rotated_simple_line_draw.c | 13 +- ...y_driver_8bpp_rotated_vertical_line_draw.c | 13 +- ..._8bpp_rotated_vertical_pattern_line_draw.c | 13 +- .../gx_display_driver_8bpp_row_pitch_get.c | 15 +- .../gx_display_driver_8bpp_simple_line_draw.c | 15 +- ...x_display_driver_8bpp_vertical_line_draw.c | 15 +- ...y_driver_8bpp_vertical_pattern_line_draw.c | 15 +- .../src/gx_display_driver_arc_clipping_get.c | 15 +- ..._display_driver_generic_aliased_arc_draw.c | 15 +- ...splay_driver_generic_aliased_circle_draw.c | 15 +- ...play_driver_generic_aliased_ellipse_draw.c | 15 +- ...river_generic_aliased_filled_circle_draw.c | 19 +- ...er_generic_aliased_fixed_point_line_draw.c | 18 +- ...display_driver_generic_aliased_line_draw.c | 15 +- ...lay_driver_generic_aliased_wide_arc_draw.c | 23 +- ..._driver_generic_aliased_wide_circle_draw.c | 18 +- ...driver_generic_aliased_wide_ellipse_draw.c | 15 +- ...ay_driver_generic_aliased_wide_line_draw.c | 18 +- .../gx_display_driver_generic_alphamap_draw.c | 47 +--- .../src/gx_display_driver_generic_arc_draw.c | 15 +- .../src/gx_display_driver_generic_arc_fill.c | 15 +- .../gx_display_driver_generic_circle_draw.c | 15 +- .../gx_display_driver_generic_circle_fill.c | 15 +- ..._display_driver_generic_drawing_complete.c | 15 +- ..._display_driver_generic_drawing_initiate.c | 15 +- .../gx_display_driver_generic_ellipse_draw.c | 18 +- .../gx_display_driver_generic_ellipse_fill.c | 20 +- ...isplay_driver_generic_filled_circle_draw.c | 15 +- ...x_display_driver_generic_glyph_4bpp_draw.c | 15 +- ...x_display_driver_generic_glyph_8bpp_draw.c | 15 +- ...splay_driver_generic_mouse_cursor_define.c | 15 +- .../gx_display_driver_generic_mouse_draw.c | 15 +- .../gx_display_driver_generic_mouse_enable.c | 15 +- ...isplay_driver_generic_mouse_position_set.c | 15 +- .../src/gx_display_driver_generic_pie_fill.c | 17 +- .../gx_display_driver_generic_polygon_draw.c | 15 +- .../gx_display_driver_generic_polygon_fill.c | 72 +---- ...lay_driver_generic_rotated_alphamap_draw.c | 37 +-- ..._display_driver_generic_rotated_arc_fill.c | 13 +- ...splay_driver_generic_rotated_circle_fill.c | 13 +- ...play_driver_generic_rotated_ellipse_fill.c | 18 +- ...y_driver_generic_rotated_glyph_4bit_draw.c | 13 +- ...y_driver_generic_rotated_glyph_8bit_draw.c | 13 +- ..._display_driver_generic_rotated_pie_fill.c | 22 +- ...play_driver_generic_rotated_polygon_fill.c | 61 +--- ...ay_driver_generic_rotated_wide_line_fill.c | 13 +- ...x_display_driver_generic_simple_pie_fill.c | 15 +- ...lay_driver_generic_simple_wide_line_draw.c | 18 +- .../gx_display_driver_generic_wide_arc_draw.c | 23 +- ..._display_driver_generic_wide_circle_draw.c | 15 +- ...display_driver_generic_wide_ellipse_draw.c | 15 +- ...gx_display_driver_generic_wide_line_fill.c | 15 +- ...river_generic_wide_line_points_calculate.c | 15 +- ...isplay_driver_horizontal_line_alpha_draw.c | 15 +- .../src/gx_display_driver_monochrome_setup.c | 19 +- ...gx_display_driver_simple_line_alpha_draw.c | 15 +- ..._display_driver_vertical_line_alpha_draw.c | 15 +- common/src/gx_display_font_table_set.c | 15 +- common/src/gx_display_language_table_get.c | 23 +- common/src/gx_display_language_table_set.c | 31 +-- common/src/gx_display_pixelmap_table_set.c | 15 +- common/src/gx_display_string_get.c | 23 +- common/src/gx_display_string_table_get.c | 23 +- common/src/gx_display_theme_install.c | 15 +- common/src/gx_drop_list_background_draw.c | 15 +- common/src/gx_drop_list_close.c | 15 +- common/src/gx_drop_list_create.c | 15 +- common/src/gx_drop_list_draw.c | 25 +- common/src/gx_drop_list_event_process.c | 15 +- common/src/gx_drop_list_open.c | 15 +- common/src/gx_drop_list_pixelmap_set.c | 15 +- common/src/gx_drop_list_popup_get.c | 15 +- ...x_generic_scroll_wheel_children_position.c | 13 +- common/src/gx_generic_scroll_wheel_create.c | 13 +- .../src/gx_generic_scroll_wheel_down_wrap.c | 13 +- common/src/gx_generic_scroll_wheel_draw.c | 13 +- .../gx_generic_scroll_wheel_event_process.c | 13 +- .../gx_generic_scroll_wheel_row_height_set.c | 13 +- common/src/gx_generic_scroll_wheel_scroll.c | 19 +- .../gx_generic_scroll_wheel_total_rows_set.c | 13 +- common/src/gx_generic_scroll_wheel_up_wrap.c | 13 +- ...gx_generic_scroll_wheel_wrap_style_check.c | 13 +- .../gx_horizontal_list_children_position.c | 15 +- common/src/gx_horizontal_list_create.c | 19 +- common/src/gx_horizontal_list_event_process.c | 19 +- common/src/gx_horizontal_list_left_wrap.c | 15 +- .../src/gx_horizontal_list_page_index_set.c | 15 +- common/src/gx_horizontal_list_right_wrap.c | 15 +- common/src/gx_horizontal_list_scroll.c | 24 +- .../src/gx_horizontal_list_scroll_info_get.c | 19 +- .../gx_horizontal_list_selected_index_get.c | 15 +- common/src/gx_horizontal_list_selected_set.c | 19 +- .../src/gx_horizontal_list_selected_visible.c | 15 +- .../gx_horizontal_list_selected_widget_get.c | 15 +- .../src/gx_horizontal_list_slide_back_check.c | 15 +- .../gx_horizontal_list_total_columns_set.c | 18 +- common/src/gx_horizontal_scrollbar_create.c | 15 +- common/src/gx_icon_background_draw.c | 15 +- common/src/gx_icon_button_create.c | 15 +- common/src/gx_icon_button_draw.c | 18 +- common/src/gx_icon_button_pixelmap_set.c | 15 +- common/src/gx_icon_create.c | 15 +- common/src/gx_icon_draw.c | 15 +- common/src/gx_icon_event_process.c | 15 +- common/src/gx_icon_pixelmap_set.c | 15 +- common/src/gx_icon_pixelmap_update.c | 15 +- .../src/gx_image_reader_colorspace_convert.c | 37 +-- common/src/gx_image_reader_create.c | 15 +- common/src/gx_image_reader_image_decode.c | 27 +- common/src/gx_image_reader_jpeg_decode.c | 262 +----------------- ...x_image_reader_nearest_palette_color_get.c | 15 +- common/src/gx_image_reader_palette_set.c | 15 +- .../gx_image_reader_pixel_read_callback_set.c | 183 +----------- ...gx_image_reader_pixel_write_callback_set.c | 154 +--------- common/src/gx_image_reader_png_decode.c | 195 +------------ common/src/gx_image_reader_rle_encode.c | 55 +--- common/src/gx_image_reader_start.c | 42 +-- common/src/gx_line_chart_axis_draw.c | 15 +- common/src/gx_line_chart_create.c | 15 +- common/src/gx_line_chart_data_draw.c | 15 +- common/src/gx_line_chart_draw.c | 15 +- common/src/gx_line_chart_update.c | 15 +- common/src/gx_line_chart_y_scale_calculate.c | 15 +- common/src/gx_menu_create.c | 18 +- common/src/gx_menu_draw.c | 15 +- common/src/gx_menu_event_process.c | 13 +- common/src/gx_menu_insert.c | 15 +- common/src/gx_menu_position.c | 23 +- common/src/gx_menu_remove.c | 15 +- common/src/gx_menu_text_draw.c | 15 +- common/src/gx_menu_text_offset_set.c | 15 +- ...ochrome_driver_disabled_button_line_draw.c | 15 +- common/src/gx_multi_line_text_button_create.c | 15 +- common/src/gx_multi_line_text_button_draw.c | 15 +- .../gx_multi_line_text_button_event_process.c | 18 +- ...multi_line_text_button_line_pointers_set.c | 21 +- .../src/gx_multi_line_text_button_text_draw.c | 17 +- .../gx_multi_line_text_button_text_id_set.c | 15 +- .../src/gx_multi_line_text_button_text_set.c | 29 +- .../src/gx_multi_line_text_input_backspace.c | 19 +- .../gx_multi_line_text_input_buffer_clear.c | 15 +- .../src/gx_multi_line_text_input_buffer_get.c | 15 +- .../gx_multi_line_text_input_char_insert.c | 23 +- .../gx_multi_line_text_input_char_remove.c | 15 +- common/src/gx_multi_line_text_input_copy.c | 15 +- common/src/gx_multi_line_text_input_create.c | 18 +- ...lti_line_text_input_cursor_pos_calculate.c | 15 +- .../gx_multi_line_text_input_cursor_pos_get.c | 15 +- ..._multi_line_text_input_cursor_pos_update.c | 15 +- .../gx_multi_line_text_input_cursor_visible.c | 15 +- common/src/gx_multi_line_text_input_cut.c | 15 +- common/src/gx_multi_line_text_input_delete.c | 15 +- .../src/gx_multi_line_text_input_down_arrow.c | 15 +- common/src/gx_multi_line_text_input_draw.c | 15 +- common/src/gx_multi_line_text_input_end.c | 15 +- .../gx_multi_line_text_input_event_process.c | 35 +-- .../gx_multi_line_text_input_fill_color_set.c | 15 +- ..._line_text_input_highlight_rectangle_get.c | 15 +- common/src/gx_multi_line_text_input_home.c | 15 +- ...gx_multi_line_text_input_keydown_process.c | 15 +- .../src/gx_multi_line_text_input_left_arrow.c | 15 +- .../src/gx_multi_line_text_input_mark_down.c | 15 +- .../src/gx_multi_line_text_input_mark_end.c | 15 +- .../src/gx_multi_line_text_input_mark_home.c | 15 +- .../src/gx_multi_line_text_input_mark_next.c | 15 +- .../gx_multi_line_text_input_mark_previous.c | 19 +- common/src/gx_multi_line_text_input_mark_up.c | 15 +- common/src/gx_multi_line_text_input_paste.c | 15 +- .../gx_multi_line_text_input_right_arrow.c | 15 +- .../src/gx_multi_line_text_input_style_add.c | 15 +- .../gx_multi_line_text_input_style_remove.c | 15 +- .../src/gx_multi_line_text_input_style_set.c | 15 +- .../gx_multi_line_text_input_text_color_set.c | 15 +- ...multi_line_text_input_text_rectangle_get.c | 15 +- .../gx_multi_line_text_input_text_select.c | 15 +- .../src/gx_multi_line_text_input_text_set.c | 31 +-- .../src/gx_multi_line_text_input_up_arrow.c | 15 +- common/src/gx_multi_line_text_view_create.c | 19 +- ...gx_multi_line_text_view_display_info_get.c | 16 +- common/src/gx_multi_line_text_view_draw.c | 15 +- .../gx_multi_line_text_view_event_process.c | 18 +- common/src/gx_multi_line_text_view_font_set.c | 15 +- ...x_multi_line_text_view_line_cache_update.c | 61 +--- .../gx_multi_line_text_view_line_space_set.c | 15 +- common/src/gx_multi_line_text_view_scroll.c | 17 +- .../gx_multi_line_text_view_scroll_info_get.c | 15 +- ...line_text_view_string_total_rows_compute.c | 22 +- .../gx_multi_line_text_view_text_color_set.c | 15 +- .../src/gx_multi_line_text_view_text_draw.c | 19 +- .../src/gx_multi_line_text_view_text_id_set.c | 17 +- common/src/gx_multi_line_text_view_text_set.c | 25 +- ...ulti_line_text_view_visible_rows_compute.c | 15 +- .../gx_multi_line_text_view_whitespace_set.c | 15 +- .../src/gx_numeric_pixelmap_prompt_create.c | 15 +- .../src/gx_numeric_pixelmap_prompt_format.c | 15 +- ...eric_pixelmap_prompt_format_function_set.c | 15 +- .../gx_numeric_pixelmap_prompt_value_set.c | 17 +- common/src/gx_numeric_prompt_create.c | 15 +- common/src/gx_numeric_prompt_format.c | 15 +- .../gx_numeric_prompt_format_function_set.c | 15 +- common/src/gx_numeric_prompt_value_set.c | 21 +- common/src/gx_numeric_scroll_wheel_create.c | 18 +- .../src/gx_numeric_scroll_wheel_range_set.c | 17 +- common/src/gx_numeric_scroll_wheel_text_get.c | 15 +- common/src/gx_pixelmap_button_create.c | 15 +- common/src/gx_pixelmap_button_draw.c | 15 +- common/src/gx_pixelmap_button_event_process.c | 15 +- common/src/gx_pixelmap_button_pixelmap_set.c | 15 +- .../gx_pixelmap_button_transparent_detect.c | 15 +- .../src/gx_pixelmap_prompt_background_draw.c | 15 +- common/src/gx_pixelmap_prompt_create.c | 15 +- common/src/gx_pixelmap_prompt_draw.c | 15 +- common/src/gx_pixelmap_prompt_pixelmap_set.c | 15 +- common/src/gx_pixelmap_slider_create.c | 15 +- common/src/gx_pixelmap_slider_draw.c | 15 +- common/src/gx_pixelmap_slider_event_process.c | 15 +- common/src/gx_pixelmap_slider_pixelmap_set.c | 15 +- .../src/gx_pixelmap_slider_pixelmap_update.c | 15 +- common/src/gx_popup_list_event_process.c | 15 +- common/src/gx_progress_bar_background_draw.c | 15 +- common/src/gx_progress_bar_create.c | 15 +- common/src/gx_progress_bar_draw.c | 15 +- common/src/gx_progress_bar_event_process.c | 15 +- common/src/gx_progress_bar_font_set.c | 15 +- common/src/gx_progress_bar_info_set.c | 15 +- common/src/gx_progress_bar_pixelmap_set.c | 15 +- common/src/gx_progress_bar_range_set.c | 15 +- common/src/gx_progress_bar_text_color_set.c | 15 +- common/src/gx_progress_bar_text_draw.c | 15 +- common/src/gx_progress_bar_value_set.c | 15 +- common/src/gx_prompt_create.c | 20 +- common/src/gx_prompt_draw.c | 15 +- common/src/gx_prompt_event_process.c | 13 +- common/src/gx_prompt_font_set.c | 15 +- common/src/gx_prompt_text_color_set.c | 15 +- common/src/gx_prompt_text_draw.c | 15 +- common/src/gx_prompt_text_get.c | 29 +- common/src/gx_prompt_text_id_set.c | 17 +- common/src/gx_prompt_text_set.c | 25 +- .../src/gx_radial_progress_bar_anchor_set.c | 15 +- .../gx_radial_progress_bar_background_draw.c | 19 +- common/src/gx_radial_progress_bar_create.c | 15 +- common/src/gx_radial_progress_bar_draw.c | 15 +- .../gx_radial_progress_bar_event_process.c | 19 +- common/src/gx_radial_progress_bar_font_set.c | 15 +- common/src/gx_radial_progress_bar_info_set.c | 15 +- common/src/gx_radial_progress_bar_resize.c | 20 +- .../src/gx_radial_progress_bar_size_update.c | 15 +- .../gx_radial_progress_bar_text_color_set.c | 15 +- common/src/gx_radial_progress_bar_text_draw.c | 15 +- .../gx_radial_progress_bar_value_calculate.c | 15 +- common/src/gx_radial_progress_bar_value_set.c | 15 +- .../gx_radial_slider_anchor_angle_calculate.c | 15 +- .../src/gx_radial_slider_anchor_angles_set.c | 15 +- common/src/gx_radial_slider_angle_calculate.c | 15 +- common/src/gx_radial_slider_angle_set.c | 15 +- common/src/gx_radial_slider_animation_set.c | 15 +- common/src/gx_radial_slider_animation_start.c | 15 +- .../src/gx_radial_slider_animation_update.c | 18 +- common/src/gx_radial_slider_create.c | 15 +- common/src/gx_radial_slider_draw.c | 15 +- common/src/gx_radial_slider_event_process.c | 54 +--- common/src/gx_radial_slider_info_get.c | 15 +- common/src/gx_radial_slider_info_set.c | 15 +- ...radial_slider_needle_rectangle_calculate.c | 18 +- common/src/gx_radial_slider_pixelmap_set.c | 15 +- common/src/gx_radio_button_create.c | 15 +- common/src/gx_radio_button_draw.c | 16 +- common/src/gx_radio_button_pixelmap_set.c | 15 +- common/src/gx_rich_text_view_context_peek.c | 13 +- common/src/gx_rich_text_view_context_pop.c | 13 +- common/src/gx_rich_text_view_context_push.c | 13 +- common/src/gx_rich_text_view_context_reset.c | 13 +- .../src/gx_rich_text_view_context_restore.c | 13 +- common/src/gx_rich_text_view_context_save.c | 13 +- common/src/gx_rich_text_view_create.c | 13 +- common/src/gx_rich_text_view_draw.c | 13 +- common/src/gx_rich_text_view_fonts_set.c | 13 +- common/src/gx_rich_text_view_line_info_get.c | 16 +- .../src/gx_rich_text_view_scroll_info_get.c | 13 +- common/src/gx_rich_text_view_tag_enter.c | 31 +-- common/src/gx_rich_text_view_text_draw.c | 22 +- ...ch_text_view_text_total_height_calculate.c | 13 +- common/src/gx_screen_stack_create.c | 15 +- common/src/gx_screen_stack_pop.c | 15 +- common/src/gx_screen_stack_push.c | 15 +- common/src/gx_screen_stack_reset.c | 15 +- common/src/gx_scroll_thumb_create.c | 15 +- common/src/gx_scroll_thumb_draw.c | 15 +- common/src/gx_scroll_thumb_event_process.c | 15 +- common/src/gx_scroll_thumb_shift_limit.c | 15 +- common/src/gx_scroll_wheel_create.c | 19 +- common/src/gx_scroll_wheel_event_process.c | 57 +--- .../src/gx_scroll_wheel_gradient_alpha_set.c | 15 +- common/src/gx_scroll_wheel_gradient_create.c | 21 +- common/src/gx_scroll_wheel_row_height_set.c | 15 +- common/src/gx_scroll_wheel_scroll.c | 19 +- .../gx_scroll_wheel_selected_background_set.c | 15 +- common/src/gx_scroll_wheel_selected_get.c | 15 +- .../gx_scroll_wheel_selected_row_calculate.c | 19 +- common/src/gx_scroll_wheel_selected_set.c | 18 +- common/src/gx_scroll_wheel_speed_set.c | 15 +- common/src/gx_scroll_wheel_total_rows_set.c | 15 +- common/src/gx_scroll_wheel_wrap_style_check.c | 13 +- common/src/gx_scrollbar_draw.c | 18 +- common/src/gx_scrollbar_event_process.c | 15 +- common/src/gx_scrollbar_limit_check.c | 15 +- common/src/gx_scrollbar_reset.c | 15 +- common/src/gx_scrollbar_size_update.c | 15 +- .../gx_scrollbar_thumb_position_calculate.c | 15 +- common/src/gx_scrollbar_value_calculate.c | 15 +- common/src/gx_scrollbar_value_set.c | 15 +- .../src/gx_single_line_text_input_backspace.c | 15 +- .../gx_single_line_text_input_buffer_clear.c | 15 +- .../gx_single_line_text_input_buffer_get.c | 15 +- ..._single_line_text_input_character_delete.c | 15 +- ..._single_line_text_input_character_insert.c | 15 +- common/src/gx_single_line_text_input_copy.c | 15 +- common/src/gx_single_line_text_input_create.c | 18 +- common/src/gx_single_line_text_input_cut.c | 15 +- common/src/gx_single_line_text_input_draw.c | 15 +- ...single_line_text_input_draw_position_get.c | 15 +- common/src/gx_single_line_text_input_end.c | 15 +- .../gx_single_line_text_input_event_process.c | 40 +-- ...gx_single_line_text_input_fill_color_set.c | 15 +- common/src/gx_single_line_text_input_home.c | 15 +- ...x_single_line_text_input_keydown_process.c | 15 +- .../gx_single_line_text_input_left_arrow.c | 15 +- .../src/gx_single_line_text_input_mark_end.c | 15 +- .../src/gx_single_line_text_input_mark_home.c | 15 +- .../src/gx_single_line_text_input_mark_next.c | 15 +- .../gx_single_line_text_input_mark_previous.c | 15 +- common/src/gx_single_line_text_input_paste.c | 15 +- .../gx_single_line_text_input_position_get.c | 15 +- ...x_single_line_text_input_position_update.c | 15 +- .../gx_single_line_text_input_right_arrow.c | 15 +- .../src/gx_single_line_text_input_style_add.c | 15 +- .../gx_single_line_text_input_style_remove.c | 15 +- .../src/gx_single_line_text_input_style_set.c | 15 +- ...gx_single_line_text_input_text_color_set.c | 15 +- ...ingle_line_text_input_text_rectangle_get.c | 15 +- .../gx_single_line_text_input_text_select.c | 15 +- .../src/gx_single_line_text_input_text_set.c | 23 +- common/src/gx_slider_create.c | 15 +- common/src/gx_slider_draw.c | 15 +- common/src/gx_slider_event_process.c | 15 +- common/src/gx_slider_info_set.c | 15 +- common/src/gx_slider_needle_draw.c | 15 +- common/src/gx_slider_needle_position_get.c | 15 +- common/src/gx_slider_tickmarks_draw.c | 15 +- common/src/gx_slider_travel_get.c | 15 +- common/src/gx_slider_value_calculate.c | 15 +- common/src/gx_slider_value_set.c | 15 +- common/src/gx_sprite_create.c | 15 +- common/src/gx_sprite_current_frame_set.c | 15 +- common/src/gx_sprite_draw.c | 18 +- common/src/gx_sprite_event_process.c | 15 +- common/src/gx_sprite_frame_list_set.c | 15 +- common/src/gx_sprite_start.c | 15 +- common/src/gx_sprite_stop.c | 15 +- common/src/gx_sprite_update.c | 19 +- common/src/gx_string_scroll_wheel_create.c | 24 +- .../gx_string_scroll_wheel_event_process.c | 13 +- ...x_string_scroll_wheel_string_id_list_set.c | 17 +- .../gx_string_scroll_wheel_string_list_set.c | 25 +- common/src/gx_string_scroll_wheel_text_get.c | 15 +- common/src/gx_system_active_language_set.c | 15 +- common/src/gx_system_all_canvas_dirty.c | 15 +- common/src/gx_system_all_views_free.c | 15 +- common/src/gx_system_animation_free.c | 15 +- common/src/gx_system_animation_get.c | 18 +- common/src/gx_system_bidi_text_disable.c | 17 +- common/src/gx_system_bidi_text_enable.c | 17 +- common/src/gx_system_canvas_refresh.c | 25 +- common/src/gx_system_clipboard_get.c | 15 +- common/src/gx_system_clipboard_put.c | 15 +- common/src/gx_system_dirty_list_remove.c | 15 +- common/src/gx_system_dirty_list_trim.c | 25 +- common/src/gx_system_dirty_mark.c | 15 +- common/src/gx_system_dirty_partial_add.c | 15 +- common/src/gx_system_draw_context_get.c | 15 +- common/src/gx_system_error_process.c | 15 +- common/src/gx_system_event_dispatch.c | 21 +- common/src/gx_system_event_fold.c | 15 +- common/src/gx_system_event_remove.c | 15 +- common/src/gx_system_event_send.c | 18 +- common/src/gx_system_focus_claim.c | 15 +- common/src/gx_system_free_view_get.c | 15 +- common/src/gx_system_initialize.c | 19 +- common/src/gx_system_input_capture.c | 15 +- common/src/gx_system_input_release.c | 23 +- common/src/gx_system_language_table_get.c | 15 +- common/src/gx_system_language_table_set.c | 15 +- common/src/gx_system_lock.c | 15 +- common/src/gx_system_memory_allocator_set.c | 15 +- common/src/gx_system_pen_configure.c | 15 +- common/src/gx_system_pen_flick_test.c | 18 +- common/src/gx_system_pen_speed_init.c | 15 +- common/src/gx_system_pen_speed_update.c | 15 +- common/src/gx_system_private_string.c | 47 +--- common/src/gx_system_root_view_add.c | 15 +- common/src/gx_system_rtos_bind.c | 15 +- common/src/gx_system_screen_stack_create.c | 15 +- common/src/gx_system_screen_stack_get.c | 15 +- common/src/gx_system_screen_stack_pop.c | 15 +- common/src/gx_system_screen_stack_push.c | 15 +- common/src/gx_system_screen_stack_reset.c | 15 +- common/src/gx_system_scroll_appearance_get.c | 15 +- common/src/gx_system_scroll_appearance_set.c | 15 +- common/src/gx_system_start.c | 15 +- common/src/gx_system_string_get.c | 15 +- common/src/gx_system_string_table_get.c | 15 +- common/src/gx_system_string_width_get.c | 39 +-- common/src/gx_system_text_render_style_set.c | 15 +- common/src/gx_system_thread_entry.c | 15 +- common/src/gx_system_timer_expiration.c | 19 +- common/src/gx_system_timer_start.c | 23 +- common/src/gx_system_timer_stop.c | 19 +- common/src/gx_system_timer_update.c | 15 +- common/src/gx_system_top_root_find.c | 15 +- common/src/gx_system_top_widget_find.c | 15 +- common/src/gx_system_unlock.c | 15 +- common/src/gx_system_version_string_get.c | 23 +- common/src/gx_system_view_add.c | 15 +- common/src/gx_system_view_fold.c | 15 +- common/src/gx_system_view_split.c | 15 +- common/src/gx_system_views_free.c | 15 +- common/src/gx_system_views_update.c | 15 +- common/src/gx_system_widget_find.c | 15 +- common/src/gx_text_button_create.c | 19 +- common/src/gx_text_button_draw.c | 15 +- common/src/gx_text_button_event_process.c | 16 +- common/src/gx_text_button_font_set.c | 15 +- common/src/gx_text_button_text_color_set.c | 15 +- common/src/gx_text_button_text_draw.c | 17 +- common/src/gx_text_button_text_get.c | 29 +- common/src/gx_text_button_text_id_set.c | 17 +- common/src/gx_text_button_text_set.c | 25 +- .../gx_text_input_cursor_blink_interval_set.c | 15 +- ...gx_text_input_cursor_dirty_rectangle_get.c | 15 +- common/src/gx_text_input_cursor_draw.c | 15 +- common/src/gx_text_input_cursor_height_set.c | 15 +- common/src/gx_text_input_cursor_width_set.c | 15 +- .../src/gx_text_scroll_wheel_callback_set.c | 27 +- common/src/gx_text_scroll_wheel_create.c | 18 +- common/src/gx_text_scroll_wheel_draw.c | 82 +----- ...xt_scroll_wheel_dynamic_bidi_text_delete.c | 13 +- .../src/gx_text_scroll_wheel_event_process.c | 13 +- common/src/gx_text_scroll_wheel_font_set.c | 15 +- .../src/gx_text_scroll_wheel_text_color_set.c | 15 +- .../src/gx_touch_driver_generic_resistive.c | 118 +------- common/src/gx_tree_view_create.c | 16 +- common/src/gx_tree_view_draw.c | 31 +-- common/src/gx_tree_view_event_process.c | 47 +--- common/src/gx_tree_view_indentation_set.c | 15 +- common/src/gx_tree_view_position.c | 15 +- common/src/gx_tree_view_root_line_color_set.c | 15 +- common/src/gx_tree_view_root_pixelmap_set.c | 15 +- common/src/gx_tree_view_scroll.c | 15 +- common/src/gx_tree_view_scroll_info_get.c | 15 +- common/src/gx_tree_view_selected_get.c | 15 +- common/src/gx_tree_view_selected_set.c | 23 +- .../src/gx_utility_1555xrgb_pixelmap_resize.c | 39 +-- .../src/gx_utility_1555xrgb_pixelmap_rotate.c | 31 +-- common/src/gx_utility_16bpp_pixelmap_resize.c | 39 +-- common/src/gx_utility_1bpp_pixelmap_resize.c | 35 +-- common/src/gx_utility_1bpp_pixelmap_rotate.c | 39 +-- .../src/gx_utility_32argb_pixelmap_resize.c | 39 +-- .../src/gx_utility_32argb_pixelmap_rotate.c | 39 +-- .../src/gx_utility_332rgb_pixelmap_rotate.c | 55 +--- .../src/gx_utility_4444argb_pixelmap_resize.c | 19 +- .../src/gx_utility_4444argb_pixelmap_rotate.c | 23 +- common/src/gx_utility_4bpp_pixelmap_resize.c | 35 +-- common/src/gx_utility_4bpp_pixelmap_rotate.c | 39 +-- .../src/gx_utility_565rgb_pixelmap_rotate.c | 55 +--- common/src/gx_utility_8bpp_pixelmap_resize.c | 51 +--- common/src/gx_utility_8bpp_pixelmap_rotate.c | 31 +-- common/src/gx_utility_alphamap_create.c | 15 +- common/src/gx_utility_bidi_arabic_shaping.c | 49 +--- common/src/gx_utility_bidi_bracket_pair_get.c | 15 +- .../src/gx_utility_bidi_character_type_get.c | 15 +- common/src/gx_utility_bidi_mirroring_get.c | 15 +- .../src/gx_utility_bidi_paragraph_reorder.c | 238 +--------------- ...x_utility_bidi_resolved_text_info_delete.c | 15 +- common/src/gx_utility_canvas_to_bmp.c | 63 +---- common/src/gx_utility_circle_point_get.c | 15 +- .../gx_utility_easing_function_calculate.c | 31 +-- common/src/gx_utility_gradient_create.c | 42 +-- common/src/gx_utility_gradient_delete.c | 15 +- common/src/gx_utility_ltoa.c | 15 +- common/src/gx_utility_math_acos.c | 23 +- common/src/gx_utility_math_asin.c | 23 +- common/src/gx_utility_math_cos.c | 23 +- common/src/gx_utility_math_sin.c | 23 +- common/src/gx_utility_math_sqrt.c | 15 +- common/src/gx_utility_pixelmap_resize.c | 19 +- common/src/gx_utility_pixelmap_rotate.c | 19 +- .../src/gx_utility_pixelmap_simple_rotate.c | 16 +- common/src/gx_utility_rectangle_center.c | 15 +- common/src/gx_utility_rectangle_center_find.c | 15 +- common/src/gx_utility_rectangle_combine.c | 15 +- common/src/gx_utility_rectangle_compare.c | 15 +- common/src/gx_utility_rectangle_define.c | 15 +- .../src/gx_utility_rectangle_inside_detect.c | 15 +- .../src/gx_utility_rectangle_overlap_detect.c | 15 +- .../src/gx_utility_rectangle_point_detect.c | 15 +- common/src/gx_utility_rectangle_resize.c | 15 +- common/src/gx_utility_rectangle_shift.c | 15 +- common/src/gx_utility_string_compare.c | 13 +- common/src/gx_utility_string_length_check.c | 15 +- common/src/gx_utility_string_to_alphamap.c | 107 +------ common/src/gx_utility_thai_glyph_shaping.c | 31 +-- common/src/gx_utility_unicode_to_utf8.c | 15 +- ...tf8_string_backward_character_length_get.c | 15 +- .../gx_utility_utf8_string_character_get.c | 15 +- .../src/gx_vertical_list_children_position.c | 15 +- common/src/gx_vertical_list_create.c | 19 +- common/src/gx_vertical_list_down_wrap.c | 15 +- common/src/gx_vertical_list_event_process.c | 19 +- common/src/gx_vertical_list_page_index_set.c | 15 +- common/src/gx_vertical_list_scroll.c | 24 +- common/src/gx_vertical_list_scroll_info_get.c | 19 +- .../src/gx_vertical_list_selected_index_get.c | 15 +- common/src/gx_vertical_list_selected_set.c | 18 +- .../src/gx_vertical_list_selected_visible.c | 15 +- .../gx_vertical_list_selected_widget_get.c | 15 +- .../src/gx_vertical_list_slide_back_check.c | 15 +- common/src/gx_vertical_list_total_rows_set.c | 18 +- common/src/gx_vertical_list_up_wrap.c | 15 +- common/src/gx_vertical_scrollbar_create.c | 15 +- common/src/gx_widget_allocate.c | 15 +- common/src/gx_widget_attach.c | 15 +- common/src/gx_widget_back_attach.c | 15 +- common/src/gx_widget_back_link.c | 15 +- common/src/gx_widget_back_move.c | 15 +- common/src/gx_widget_background_draw.c | 15 +- common/src/gx_widget_block_move.c | 15 +- common/src/gx_widget_border_draw.c | 15 +- common/src/gx_widget_border_style_set.c | 15 +- common/src/gx_widget_border_width_get.c | 15 +- common/src/gx_widget_canvas_get.c | 15 +- common/src/gx_widget_child_clipping_update.c | 15 +- common/src/gx_widget_child_detect.c | 15 +- common/src/gx_widget_child_focus_assign.c | 15 +- common/src/gx_widget_children_draw.c | 15 +- common/src/gx_widget_children_event_process.c | 15 +- common/src/gx_widget_client_get.c | 15 +- common/src/gx_widget_client_index_get.c | 15 +- common/src/gx_widget_clipping_update.c | 15 +- common/src/gx_widget_color_get.c | 15 +- common/src/gx_widget_context_fill_set.c | 15 +- common/src/gx_widget_create.c | 15 +- common/src/gx_widget_created_test.c | 15 +- common/src/gx_widget_delete.c | 25 +- common/src/gx_widget_detach.c | 15 +- common/src/gx_widget_draw.c | 15 +- common/src/gx_widget_draw_set.c | 15 +- common/src/gx_widget_event_generate.c | 15 +- common/src/gx_widget_event_process.c | 35 +-- common/src/gx_widget_event_process_set.c | 15 +- common/src/gx_widget_event_to_parent.c | 15 +- common/src/gx_widget_fill_color_set.c | 15 +- common/src/gx_widget_find.c | 15 +- common/src/gx_widget_first_child_get.c | 15 +- common/src/gx_widget_first_client_child_get.c | 21 +- common/src/gx_widget_focus_next.c | 15 +- common/src/gx_widget_focus_previous.c | 15 +- common/src/gx_widget_font_get.c | 15 +- common/src/gx_widget_free.c | 15 +- common/src/gx_widget_front_move.c | 15 +- common/src/gx_widget_height_get.c | 15 +- common/src/gx_widget_hide.c | 15 +- common/src/gx_widget_last_child_get.c | 15 +- common/src/gx_widget_last_client_child_get.c | 21 +- common/src/gx_widget_link.c | 15 +- common/src/gx_widget_nav_order_initialize.c | 15 +- common/src/gx_widget_next_client_child_get.c | 21 +- common/src/gx_widget_next_sibling_get.c | 15 +- common/src/gx_widget_parent_get.c | 15 +- common/src/gx_widget_pixelmap_get.c | 15 +- common/src/gx_widget_previous_sibling_get.c | 15 +- common/src/gx_widget_resize.c | 15 +- common/src/gx_widget_scroll_shift.c | 23 +- common/src/gx_widget_shift.c | 23 +- common/src/gx_widget_show.c | 15 +- common/src/gx_widget_status_add.c | 15 +- common/src/gx_widget_status_get.c | 15 +- common/src/gx_widget_status_remove.c | 15 +- common/src/gx_widget_status_test.c | 15 +- common/src/gx_widget_string_get.c | 23 +- common/src/gx_widget_style_add.c | 15 +- common/src/gx_widget_style_get.c | 15 +- common/src/gx_widget_style_remove.c | 15 +- common/src/gx_widget_style_set.c | 15 +- common/src/gx_widget_text_blend.c | 23 +- common/src/gx_widget_text_draw.c | 25 +- common/src/gx_widget_text_id_draw.c | 15 +- common/src/gx_widget_top_visible_child_find.c | 15 +- .../gx_widget_transparent_pixelmap_detect.c | 15 +- common/src/gx_widget_type_find.c | 15 +- common/src/gx_widget_unlink.c | 15 +- common/src/gx_widget_width_get.c | 15 +- common/src/gx_window_background_draw.c | 15 +- common/src/gx_window_border_draw.c | 15 +- common/src/gx_window_client_height_get.c | 15 +- common/src/gx_window_client_scroll.c | 15 +- common/src/gx_window_client_width_get.c | 15 +- common/src/gx_window_close.c | 15 +- common/src/gx_window_create.c | 16 +- common/src/gx_window_draw.c | 15 +- common/src/gx_window_event_process.c | 15 +- common/src/gx_window_execute.c | 15 +- common/src/gx_window_root_create.c | 18 +- common/src/gx_window_root_delete.c | 15 +- common/src/gx_window_root_event_process.c | 15 +- common/src/gx_window_root_find.c | 15 +- common/src/gx_window_scroll.c | 15 +- common/src/gx_window_scroll_info_get.c | 15 +- common/src/gx_window_scrollbar_find.c | 15 +- common/src/gx_window_view_update_detect.c | 15 +- common/src/gx_window_wallpaper_get.c | 15 +- common/src/gx_window_wallpaper_set.c | 15 +- common/src/gxe_accordion_menu_create.c | 15 +- common/src/gxe_accordion_menu_event_process.c | 15 +- common/src/gxe_accordion_menu_position.c | 15 +- common/src/gxe_animation_canvas_define.c | 15 +- common/src/gxe_animation_create.c | 15 +- common/src/gxe_animation_delete.c | 13 +- common/src/gxe_animation_drag_disable.c | 15 +- common/src/gxe_animation_drag_enable.c | 15 +- common/src/gxe_animation_landing_speed_set.c | 15 +- common/src/gxe_animation_start.c | 21 +- common/src/gxe_animation_stop.c | 15 +- common/src/gxe_binres_font_load.c | 13 +- common/src/gxe_binres_language_count_get.c | 15 +- common/src/gxe_binres_language_info_load.c | 15 +- common/src/gxe_binres_language_table_load.c | 23 +- common/src/gxe_binres_pixelmap_load.c | 13 +- common/src/gxe_binres_theme_load.c | 15 +- common/src/gxe_brush_default.c | 15 +- common/src/gxe_brush_define.c | 15 +- common/src/gxe_button_create.c | 15 +- common/src/gxe_button_deselect.c | 15 +- common/src/gxe_button_event_process.c | 15 +- common/src/gxe_button_select.c | 15 +- common/src/gxe_canvas_alpha_set.c | 15 +- common/src/gxe_canvas_arc_draw.c | 15 +- common/src/gxe_canvas_block_move.c | 15 +- common/src/gxe_canvas_circle_draw.c | 15 +- common/src/gxe_canvas_create.c | 19 +- common/src/gxe_canvas_delete.c | 15 +- common/src/gxe_canvas_drawing_complete.c | 15 +- common/src/gxe_canvas_drawing_initiate.c | 15 +- common/src/gxe_canvas_ellipse_draw.c | 15 +- common/src/gxe_canvas_hardware_layer_bind.c | 15 +- common/src/gxe_canvas_hide.c | 15 +- common/src/gxe_canvas_line_draw.c | 15 +- common/src/gxe_canvas_memory_define.c | 15 +- common/src/gxe_canvas_mouse_define.c | 15 +- common/src/gxe_canvas_mouse_hide.c | 15 +- common/src/gxe_canvas_mouse_show.c | 15 +- common/src/gxe_canvas_offset_set.c | 15 +- common/src/gxe_canvas_pie_draw.c | 15 +- common/src/gxe_canvas_pixel_draw.c | 15 +- common/src/gxe_canvas_pixelmap_blend.c | 15 +- common/src/gxe_canvas_pixelmap_draw.c | 15 +- common/src/gxe_canvas_pixelmap_get.c | 15 +- common/src/gxe_canvas_pixelmap_rotate.c | 15 +- common/src/gxe_canvas_pixelmap_tile.c | 15 +- common/src/gxe_canvas_polygon_draw.c | 15 +- common/src/gxe_canvas_rectangle_draw.c | 15 +- common/src/gxe_canvas_rotated_text_draw.c | 23 +- common/src/gxe_canvas_shift.c | 15 +- common/src/gxe_canvas_show.c | 15 +- common/src/gxe_canvas_text_draw.c | 29 +- common/src/gxe_checkbox_create.c | 15 +- common/src/gxe_checkbox_event_process.c | 15 +- common/src/gxe_checkbox_pixelmap_set.c | 18 +- common/src/gxe_checkbox_select.c | 15 +- common/src/gxe_circular_gauge_angle_get.c | 15 +- common/src/gxe_circular_gauge_angle_set.c | 15 +- common/src/gxe_circular_gauge_animation_set.c | 15 +- common/src/gxe_circular_gauge_create.c | 15 +- common/src/gxe_circular_gauge_event_process.c | 15 +- common/src/gxe_context_brush_default.c | 15 +- common/src/gxe_context_brush_define.c | 15 +- common/src/gxe_context_brush_get.c | 15 +- common/src/gxe_context_brush_pattern_set.c | 15 +- common/src/gxe_context_brush_set.c | 15 +- common/src/gxe_context_brush_style_set.c | 15 +- common/src/gxe_context_brush_width_set.c | 15 +- common/src/gxe_context_color_get.c | 15 +- common/src/gxe_context_fill_color_set.c | 15 +- common/src/gxe_context_font_get.c | 15 +- common/src/gxe_context_font_set.c | 15 +- common/src/gxe_context_line_color_set.c | 15 +- common/src/gxe_context_pixelmap_get.c | 15 +- common/src/gxe_context_pixelmap_set.c | 15 +- common/src/gxe_context_raw_brush_define.c | 15 +- common/src/gxe_context_raw_fill_color_set.c | 15 +- common/src/gxe_context_raw_line_color_set.c | 15 +- common/src/gxe_context_string_get.c | 23 +- common/src/gxe_display_active_language_set.c | 15 +- common/src/gxe_display_color_set.c | 15 +- common/src/gxe_display_color_table_set.c | 15 +- common/src/gxe_display_create.c | 15 +- common/src/gxe_display_delete.c | 15 +- common/src/gxe_display_font_table_set.c | 15 +- common/src/gxe_display_language_table_get.c | 23 +- common/src/gxe_display_language_table_set.c | 29 +- common/src/gxe_display_pixelmap_table_set.c | 15 +- common/src/gxe_display_string_get.c | 23 +- common/src/gxe_display_string_table_get.c | 23 +- common/src/gxe_display_theme_install.c | 15 +- common/src/gxe_drop_list_close.c | 15 +- common/src/gxe_drop_list_create.c | 15 +- common/src/gxe_drop_list_event_process.c | 15 +- common/src/gxe_drop_list_open.c | 15 +- common/src/gxe_drop_list_pixelmap_set.c | 15 +- common/src/gxe_drop_list_popup_get.c | 15 +- ...e_generic_scroll_wheel_children_position.c | 13 +- common/src/gxe_generic_scroll_wheel_create.c | 13 +- .../gxe_generic_scroll_wheel_event_process.c | 13 +- .../gxe_generic_scroll_wheel_row_height_set.c | 13 +- .../gxe_generic_scroll_wheel_total_rows_set.c | 13 +- .../gxe_horizontal_list_children_position.c | 15 +- common/src/gxe_horizontal_list_create.c | 15 +- .../src/gxe_horizontal_list_event_process.c | 15 +- .../src/gxe_horizontal_list_page_index_set.c | 15 +- .../gxe_horizontal_list_selected_index_get.c | 15 +- common/src/gxe_horizontal_list_selected_set.c | 15 +- .../gxe_horizontal_list_selected_widget_get.c | 15 +- .../gxe_horizontal_list_total_columns_set.c | 15 +- common/src/gxe_horizontal_scrollbar_create.c | 15 +- common/src/gxe_icon_button_create.c | 15 +- common/src/gxe_icon_button_pixelmap_set.c | 15 +- common/src/gxe_icon_create.c | 15 +- common/src/gxe_icon_event_process.c | 15 +- common/src/gxe_icon_pixelmap_set.c | 15 +- common/src/gxe_image_reader_create.c | 15 +- common/src/gxe_image_reader_palette_set.c | 15 +- common/src/gxe_image_reader_start.c | 15 +- common/src/gxe_line_chart_create.c | 15 +- common/src/gxe_line_chart_update.c | 15 +- common/src/gxe_line_chart_y_scale_calculate.c | 15 +- common/src/gxe_menu_create.c | 15 +- common/src/gxe_menu_event_process.c | 13 +- common/src/gxe_menu_insert.c | 15 +- common/src/gxe_menu_remove.c | 15 +- common/src/gxe_menu_text_offset_set.c | 15 +- .../src/gxe_multi_line_text_button_create.c | 15 +- ...gxe_multi_line_text_button_event_process.c | 15 +- .../gxe_multi_line_text_button_text_id_set.c | 15 +- .../src/gxe_multi_line_text_button_text_set.c | 23 +- .../src/gxe_multi_line_text_input_backspace.c | 15 +- .../gxe_multi_line_text_input_buffer_clear.c | 15 +- .../gxe_multi_line_text_input_buffer_get.c | 15 +- .../gxe_multi_line_text_input_char_insert.c | 23 +- common/src/gxe_multi_line_text_input_create.c | 18 +- ...gxe_multi_line_text_input_cursor_pos_get.c | 15 +- common/src/gxe_multi_line_text_input_delete.c | 15 +- .../gxe_multi_line_text_input_down_arrow.c | 15 +- common/src/gxe_multi_line_text_input_end.c | 15 +- .../gxe_multi_line_text_input_event_process.c | 15 +- ...gxe_multi_line_text_input_fill_color_set.c | 15 +- common/src/gxe_multi_line_text_input_home.c | 15 +- .../gxe_multi_line_text_input_left_arrow.c | 15 +- .../gxe_multi_line_text_input_right_arrow.c | 15 +- .../src/gxe_multi_line_text_input_style_add.c | 15 +- .../gxe_multi_line_text_input_style_remove.c | 15 +- .../src/gxe_multi_line_text_input_style_set.c | 15 +- ...gxe_multi_line_text_input_text_color_set.c | 15 +- .../gxe_multi_line_text_input_text_select.c | 15 +- .../src/gxe_multi_line_text_input_text_set.c | 23 +- .../src/gxe_multi_line_text_input_up_arrow.c | 15 +- common/src/gxe_multi_line_text_view_create.c | 15 +- .../gxe_multi_line_text_view_event_process.c | 15 +- .../src/gxe_multi_line_text_view_font_set.c | 15 +- .../gxe_multi_line_text_view_line_space_set.c | 15 +- ...gxe_multi_line_text_view_scroll_info_get.c | 15 +- .../gxe_multi_line_text_view_text_color_set.c | 15 +- .../gxe_multi_line_text_view_text_id_set.c | 15 +- .../src/gxe_multi_line_text_view_text_set.c | 23 +- .../gxe_multi_line_text_view_whitespace_set.c | 15 +- .../src/gxe_numeric_pixelmap_prompt_create.c | 15 +- ...eric_pixelmap_prompt_format_function_set.c | 15 +- .../gxe_numeric_pixelmap_prompt_value_set.c | 15 +- common/src/gxe_numeric_prompt_create.c | 15 +- .../gxe_numeric_prompt_format_function_set.c | 15 +- common/src/gxe_numeric_prompt_value_set.c | 15 +- common/src/gxe_numeric_scroll_wheel_create.c | 15 +- .../src/gxe_numeric_scroll_wheel_range_set.c | 15 +- common/src/gxe_pixelmap_button_create.c | 15 +- .../src/gxe_pixelmap_button_event_process.c | 15 +- common/src/gxe_pixelmap_button_pixelmap_set.c | 15 +- common/src/gxe_pixelmap_prompt_create.c | 15 +- common/src/gxe_pixelmap_prompt_pixelmap_set.c | 15 +- common/src/gxe_pixelmap_slider_create.c | 15 +- .../src/gxe_pixelmap_slider_event_process.c | 15 +- common/src/gxe_pixelmap_slider_pixelmap_set.c | 15 +- common/src/gxe_progress_bar_create.c | 15 +- common/src/gxe_progress_bar_event_process.c | 15 +- common/src/gxe_progress_bar_font_set.c | 15 +- common/src/gxe_progress_bar_info_set.c | 15 +- common/src/gxe_progress_bar_pixelmap_set.c | 15 +- common/src/gxe_progress_bar_range_set.c | 15 +- common/src/gxe_progress_bar_text_color_set.c | 15 +- common/src/gxe_progress_bar_value_set.c | 15 +- common/src/gxe_prompt_create.c | 15 +- common/src/gxe_prompt_event_process.c | 13 +- common/src/gxe_prompt_font_set.c | 15 +- common/src/gxe_prompt_text_color_set.c | 15 +- common/src/gxe_prompt_text_get.c | 23 +- common/src/gxe_prompt_text_id_set.c | 15 +- common/src/gxe_prompt_text_set.c | 23 +- .../src/gxe_radial_progress_bar_anchor_set.c | 15 +- common/src/gxe_radial_progress_bar_create.c | 15 +- .../gxe_radial_progress_bar_event_process.c | 15 +- common/src/gxe_radial_progress_bar_font_set.c | 15 +- common/src/gxe_radial_progress_bar_info_set.c | 15 +- .../gxe_radial_progress_bar_text_color_set.c | 15 +- .../src/gxe_radial_progress_bar_value_set.c | 15 +- .../src/gxe_radial_slider_anchor_angles_set.c | 15 +- common/src/gxe_radial_slider_angle_set.c | 15 +- common/src/gxe_radial_slider_animation_set.c | 15 +- .../src/gxe_radial_slider_animation_start.c | 15 +- common/src/gxe_radial_slider_create.c | 15 +- common/src/gxe_radial_slider_event_process.c | 15 +- common/src/gxe_radial_slider_info_get.c | 15 +- common/src/gxe_radial_slider_info_set.c | 15 +- common/src/gxe_radial_slider_pixelmap_set.c | 15 +- common/src/gxe_radio_button_create.c | 15 +- common/src/gxe_radio_button_pixelmap_set.c | 15 +- common/src/gxe_rich_text_view_create.c | 13 +- common/src/gxe_rich_text_view_fonts_set.c | 13 +- common/src/gxe_screen_stack_create.c | 15 +- common/src/gxe_screen_stack_pop.c | 15 +- common/src/gxe_screen_stack_push.c | 15 +- common/src/gxe_screen_stack_reset.c | 15 +- common/src/gxe_scroll_thumb_create.c | 15 +- common/src/gxe_scroll_thumb_event_process.c | 15 +- common/src/gxe_scroll_wheel_create.c | 15 +- common/src/gxe_scroll_wheel_event_process.c | 15 +- .../src/gxe_scroll_wheel_gradient_alpha_set.c | 15 +- common/src/gxe_scroll_wheel_row_height_set.c | 15 +- ...gxe_scroll_wheel_selected_background_set.c | 15 +- common/src/gxe_scroll_wheel_selected_get.c | 15 +- common/src/gxe_scroll_wheel_selected_set.c | 15 +- common/src/gxe_scroll_wheel_speed_set.c | 15 +- common/src/gxe_scroll_wheel_total_rows_set.c | 15 +- common/src/gxe_scrollbar_event_process.c | 15 +- common/src/gxe_scrollbar_limit_check.c | 15 +- common/src/gxe_scrollbar_reset.c | 17 +- common/src/gxe_scrollbar_value_set.c | 15 +- .../gxe_single_line_text_input_backspace.c | 15 +- .../gxe_single_line_text_input_buffer_clear.c | 15 +- .../gxe_single_line_text_input_buffer_get.c | 15 +- ..._single_line_text_input_character_delete.c | 15 +- ..._single_line_text_input_character_insert.c | 15 +- .../src/gxe_single_line_text_input_create.c | 18 +- ...single_line_text_input_draw_position_get.c | 15 +- common/src/gxe_single_line_text_input_end.c | 15 +- ...gxe_single_line_text_input_event_process.c | 15 +- ...xe_single_line_text_input_fill_color_set.c | 15 +- common/src/gxe_single_line_text_input_home.c | 15 +- .../gxe_single_line_text_input_left_arrow.c | 15 +- .../gxe_single_line_text_input_position_get.c | 15 +- .../gxe_single_line_text_input_right_arrow.c | 15 +- .../gxe_single_line_text_input_style_add.c | 15 +- .../gxe_single_line_text_input_style_remove.c | 15 +- .../gxe_single_line_text_input_style_set.c | 15 +- ...xe_single_line_text_input_text_color_set.c | 15 +- .../gxe_single_line_text_input_text_select.c | 15 +- .../src/gxe_single_line_text_input_text_set.c | 23 +- common/src/gxe_slider_create.c | 15 +- common/src/gxe_slider_event_process.c | 15 +- common/src/gxe_slider_info_set.c | 15 +- common/src/gxe_slider_needle_position_get.c | 15 +- common/src/gxe_slider_travel_get.c | 15 +- common/src/gxe_slider_value_calculate.c | 15 +- common/src/gxe_slider_value_set.c | 15 +- common/src/gxe_sprite_create.c | 15 +- common/src/gxe_sprite_current_frame_set.c | 15 +- common/src/gxe_sprite_frame_list_set.c | 15 +- common/src/gxe_sprite_start.c | 15 +- common/src/gxe_sprite_stop.c | 15 +- common/src/gxe_string_scroll_wheel_create.c | 23 +- .../gxe_string_scroll_wheel_event_process.c | 13 +- ...e_string_scroll_wheel_string_id_list_set.c | 15 +- .../gxe_string_scroll_wheel_string_list_set.c | 23 +- common/src/gxe_system_active_language_set.c | 15 +- common/src/gxe_system_animation_free.c | 15 +- common/src/gxe_system_animation_get.c | 15 +- common/src/gxe_system_canvas_refresh.c | 15 +- common/src/gxe_system_dirty_mark.c | 15 +- common/src/gxe_system_dirty_partial_add.c | 15 +- common/src/gxe_system_draw_context_get.c | 15 +- common/src/gxe_system_event_fold.c | 15 +- common/src/gxe_system_event_send.c | 15 +- common/src/gxe_system_focus_claim.c | 15 +- common/src/gxe_system_initialize.c | 15 +- common/src/gxe_system_language_table_get.c | 15 +- common/src/gxe_system_language_table_set.c | 15 +- common/src/gxe_system_memory_allocator_set.c | 15 +- common/src/gxe_system_pen_configure.c | 15 +- common/src/gxe_system_screen_stack_create.c | 15 +- common/src/gxe_system_screen_stack_get.c | 15 +- common/src/gxe_system_screen_stack_pop.c | 15 +- common/src/gxe_system_screen_stack_push.c | 15 +- common/src/gxe_system_scroll_appearance_get.c | 15 +- common/src/gxe_system_scroll_appearance_set.c | 15 +- common/src/gxe_system_start.c | 15 +- common/src/gxe_system_string_get.c | 15 +- common/src/gxe_system_string_table_get.c | 15 +- common/src/gxe_system_string_width_get.c | 23 +- common/src/gxe_system_timer_start.c | 15 +- common/src/gxe_system_timer_stop.c | 15 +- common/src/gxe_system_version_string_get.c | 23 +- common/src/gxe_system_widget_find.c | 15 +- common/src/gxe_text_button_create.c | 15 +- common/src/gxe_text_button_event_process.c | 13 +- common/src/gxe_text_button_font_set.c | 15 +- common/src/gxe_text_button_text_color_set.c | 15 +- common/src/gxe_text_button_text_get.c | 23 +- common/src/gxe_text_button_text_id_set.c | 15 +- common/src/gxe_text_button_text_set.c | 23 +- ...gxe_text_input_cursor_blink_interval_set.c | 15 +- common/src/gxe_text_input_cursor_height_set.c | 18 +- common/src/gxe_text_input_cursor_width_set.c | 15 +- .../src/gxe_text_scroll_wheel_callback_set.c | 23 +- common/src/gxe_text_scroll_wheel_create.c | 15 +- .../src/gxe_text_scroll_wheel_event_process.c | 13 +- common/src/gxe_text_scroll_wheel_font_set.c | 15 +- .../gxe_text_scroll_wheel_text_color_set.c | 15 +- common/src/gxe_tree_view_create.c | 15 +- common/src/gxe_tree_view_event_process.c | 15 +- common/src/gxe_tree_view_indentation_set.c | 15 +- common/src/gxe_tree_view_position.c | 15 +- .../src/gxe_tree_view_root_line_color_set.c | 15 +- common/src/gxe_tree_view_root_pixelmap_set.c | 15 +- common/src/gxe_tree_view_selected_get.c | 15 +- common/src/gxe_tree_view_selected_set.c | 15 +- .../src/gxe_utility_bidi_paragraph_reorder.c | 21 +- ...e_utility_bidi_resolved_text_info_delete.c | 13 +- common/src/gxe_utility_canvas_to_bmp.c | 15 +- common/src/gxe_utility_circle_point_get.c | 15 +- common/src/gxe_utility_gradient_create.c | 15 +- common/src/gxe_utility_gradient_delete.c | 15 +- common/src/gxe_utility_ltoa.c | 15 +- common/src/gxe_utility_pixelmap_resize.c | 15 +- common/src/gxe_utility_pixelmap_rotate.c | 15 +- .../src/gxe_utility_pixelmap_simple_rotate.c | 15 +- common/src/gxe_utility_rectangle_center.c | 15 +- .../src/gxe_utility_rectangle_center_find.c | 15 +- common/src/gxe_utility_rectangle_combine.c | 15 +- common/src/gxe_utility_rectangle_compare.c | 15 +- common/src/gxe_utility_rectangle_define.c | 15 +- .../gxe_utility_rectangle_overlap_detect.c | 15 +- .../src/gxe_utility_rectangle_point_detect.c | 15 +- common/src/gxe_utility_rectangle_resize.c | 15 +- common/src/gxe_utility_rectangle_shift.c | 15 +- common/src/gxe_utility_string_to_alphamap.c | 23 +- .../src/gxe_vertical_list_children_position.c | 15 +- common/src/gxe_vertical_list_create.c | 15 +- common/src/gxe_vertical_list_event_process.c | 15 +- common/src/gxe_vertical_list_page_index_set.c | 15 +- .../gxe_vertical_list_selected_index_get.c | 15 +- common/src/gxe_vertical_list_selected_set.c | 15 +- .../gxe_vertical_list_selected_widget_get.c | 15 +- common/src/gxe_vertical_list_total_rows_set.c | 15 +- common/src/gxe_vertical_scrollbar_create.c | 15 +- common/src/gxe_widget_allocate.c | 15 +- common/src/gxe_widget_attach.c | 15 +- common/src/gxe_widget_back_attach.c | 15 +- common/src/gxe_widget_back_move.c | 15 +- common/src/gxe_widget_block_move.c | 15 +- common/src/gxe_widget_border_style_set.c | 15 +- common/src/gxe_widget_border_width_get.c | 15 +- common/src/gxe_widget_canvas_get.c | 15 +- common/src/gxe_widget_child_detect.c | 15 +- common/src/gxe_widget_client_get.c | 15 +- common/src/gxe_widget_color_get.c | 15 +- common/src/gxe_widget_create.c | 15 +- common/src/gxe_widget_created_test.c | 15 +- common/src/gxe_widget_delete.c | 15 +- common/src/gxe_widget_detach.c | 15 +- common/src/gxe_widget_draw_set.c | 15 +- common/src/gxe_widget_event_generate.c | 15 +- common/src/gxe_widget_event_process.c | 15 +- common/src/gxe_widget_event_process_set.c | 15 +- common/src/gxe_widget_event_to_parent.c | 15 +- common/src/gxe_widget_fill_color_set.c | 15 +- common/src/gxe_widget_find.c | 15 +- common/src/gxe_widget_first_child_get.c | 15 +- common/src/gxe_widget_focus_next.c | 15 +- common/src/gxe_widget_focus_previous.c | 15 +- common/src/gxe_widget_font_get.c | 15 +- common/src/gxe_widget_free.c | 15 +- common/src/gxe_widget_front_move.c | 15 +- common/src/gxe_widget_height_get.c | 15 +- common/src/gxe_widget_hide.c | 15 +- common/src/gxe_widget_last_child_get.c | 15 +- common/src/gxe_widget_next_sibling_get.c | 15 +- common/src/gxe_widget_parent_get.c | 15 +- common/src/gxe_widget_pixelmap_get.c | 15 +- common/src/gxe_widget_previous_sibling_get.c | 15 +- common/src/gxe_widget_resize.c | 15 +- common/src/gxe_widget_shift.c | 15 +- common/src/gxe_widget_show.c | 15 +- common/src/gxe_widget_status_add.c | 15 +- common/src/gxe_widget_status_get.c | 15 +- common/src/gxe_widget_status_remove.c | 15 +- common/src/gxe_widget_status_test.c | 15 +- common/src/gxe_widget_string_get.c | 23 +- common/src/gxe_widget_style_add.c | 15 +- common/src/gxe_widget_style_get.c | 15 +- common/src/gxe_widget_style_remove.c | 15 +- common/src/gxe_widget_style_set.c | 15 +- common/src/gxe_widget_text_blend.c | 23 +- .../src/gxe_widget_top_visible_child_find.c | 15 +- common/src/gxe_widget_type_find.c | 15 +- common/src/gxe_widget_width_get.c | 15 +- common/src/gxe_window_client_height_get.c | 15 +- common/src/gxe_window_client_scroll.c | 15 +- common/src/gxe_window_client_width_get.c | 15 +- common/src/gxe_window_close.c | 15 +- common/src/gxe_window_create.c | 15 +- common/src/gxe_window_event_process.c | 15 +- common/src/gxe_window_execute.c | 15 +- common/src/gxe_window_root_create.c | 15 +- common/src/gxe_window_root_delete.c | 15 +- common/src/gxe_window_root_event_process.c | 15 +- common/src/gxe_window_root_find.c | 15 +- common/src/gxe_window_scroll_info_get.c | 15 +- common/src/gxe_window_scrollbar_find.c | 15 +- common/src/gxe_window_wallpaper_get.c | 15 +- common/src/gxe_window_wallpaper_set.c | 15 +- guix_studio/StudioXProject.h | 4 +- guix_studio/dummy_app.c | 2 +- guix_studio/gx_studio_font_util.h | 2 +- guix_studio/image_reader.h | 6 +- .../libs/libgit2/include/git2/global.h | 2 +- .../libs/libgit2/include/git2/refspec.h | 2 +- .../libs/libgit2/include/git2/repository.h | 2 +- guix_studio/ports/gx_port.h | 15 +- .../ports/gx_win32_studio_display_driver.c | 7 +- .../ports/gx_win32_studio_display_driver.h | 7 +- guix_studio/resource.h | 2 +- guix_studio/stdafx.h | 2 +- guix_studio/studiox_constants.h | 4 +- guix_studio/studiox_screen_driver.c | 7 +- ports/arc_em/metaware/inc/gx_port.h | 19 +- ports/arc_hs/metaware/inc/gx_port.h | 19 +- ports/arm9/ac5/inc/gx_port.h | 19 +- ports/arm9/gnu/inc/gx_port.h | 19 +- ports/arm9/iar/inc/gx_port.h | 19 +- ports/c667x/ccs/inc/gx_port.h | 19 +- ports/ccrx/inc/gx_port.h | 13 +- ports/cortex_a15/gnu/inc/gx_port.h | 19 +- ports/cortex_a5/ac5/inc/gx_port.h | 19 +- ports/cortex_a5/gnu/inc/gx_port.h | 19 +- ports/cortex_a5/iar/inc/gx_port.h | 19 +- ports/cortex_a5x/ac6/inc/gx_port.h | 19 +- ports/cortex_a7/ac5/inc/gx_port.h | 19 +- ports/cortex_a7/gnu/inc/gx_port.h | 19 +- ports/cortex_a7/iar/inc/gx_port.h | 19 +- ports/cortex_a8/ac5/inc/gx_port.h | 19 +- ports/cortex_a8/gnu/inc/gx_port.h | 17 +- ports/cortex_a8/iar/inc/gx_port.h | 17 +- ports/cortex_a9/ac5/inc/gx_port.h | 19 +- ports/cortex_a9/gnu/inc/gx_port.h | 19 +- ports/cortex_a9/iar/inc/gx_port.h | 19 +- ports/cortex_m0/ac5/inc/gx_port.h | 19 +- ports/cortex_m0/gnu/inc/gx_port.h | 23 +- ports/cortex_m0/iar/inc/gx_port.h | 19 +- ports/cortex_m3/ac5/inc/gx_port.h | 19 +- ports/cortex_m3/gnu/inc/gx_port.h | 23 +- ports/cortex_m3/iar/inc/gx_port.h | 19 +- ports/cortex_m3/keil/inc/gx_port.h | 19 +- ports/cortex_m4/ac5/inc/gx_port.h | 19 +- ports/cortex_m4/gnu/inc/gx_port.h | 23 +- ports/cortex_m4/iar/inc/gx_port.h | 17 +- ports/cortex_m4/keil/inc/gx_port.h | 19 +- ports/cortex_m7/ac5/inc/gx_port.h | 17 +- ports/cortex_m7/gnu/inc/gx_port.h | 23 +- ports/cortex_m7/iar/inc/gx_port.h | 19 +- ports/cortex_r4/ac5/inc/gx_port.h | 19 +- ports/cortex_r4/ac6/inc/gx_port.h | 19 +- ports/cortex_r4/gnu/inc/gx_port.h | 19 +- ports/cortex_r4/iar/inc/gx_port.h | 17 +- ports/cortex_r5/ac5/inc/gx_port.h | 19 +- ports/cortex_r5/gnu/inc/gx_port.h | 19 +- ports/cortex_r5/iar/inc/gx_port.h | 19 +- ports/generic/inc/gx_port.h | 19 +- ports/linux/gnu/inc/gx_port.h | 17 +- ports/win32/inc/gx_port.h | 30 +- ports/win32/inc/gx_win32_display_driver.h | 24 +- ports/win32/lib/vs_2019/tx_api.h | 138 +++++---- ports/win32/lib/vs_2019/tx_port.h | 31 +-- ports/win32/src/gx_win32_display_driver.c | 168 +---------- .../src/gx_win32_display_driver_1555xrgb.c | 22 +- .../src/gx_win32_display_driver_24xrgb.c | 28 +- .../gx_win32_display_driver_24xrgb_rotated.c | 16 +- .../src/gx_win32_display_driver_32argb.c | 20 +- .../gx_win32_display_driver_32argb_rotated.c | 16 +- .../src/gx_win32_display_driver_332rgb.c | 22 +- .../src/gx_win32_display_driver_4444argb.c | 22 +- .../gx_win32_display_driver_4bpp_grayscale.c | 22 +- .../src/gx_win32_display_driver_565bgr.c | 22 +- .../src/gx_win32_display_driver_565rgb.c | 22 +- .../gx_win32_display_driver_565rgb_rotated.c | 22 +- .../gx_win32_display_driver_8bit_palette.c | 31 +-- ...in32_display_driver_8bit_palette_rotated.c | 16 +- .../src/gx_win32_display_driver_monochrome.c | 22 +- .../gx_dave2d_simulation_display_driver.h | 13 +- ..._driver_16bpp_compressed_glyph_1bit_draw.c | 13 +- ...ion_display_driver_16bpp_glyph_1bit_draw.c | 13 +- ...ation_display_driver_16bpp_pixelmap_draw.c | 49 +--- ...16bpp_rotated_compressed_glyph_1bit_draw.c | 13 +- ...lay_driver_16bpp_rotated_glyph_1bit_draw.c | 13 +- ...splay_driver_16bpp_rotated_pixelmap_draw.c | 49 +--- ...ion_display_driver_24xrgb_pixelmap_blend.c | 25 +- ...tion_display_driver_24xrgb_pixelmap_draw.c | 40 +-- ...lay_driver_24xrgb_rotated_pixelmap_blend.c | 13 +- ...play_driver_24xrgb_rotated_pixelmap_draw.c | 13 +- ...tion_display_driver_24xrgb_rotated_setup.c | 13 +- ...d_simulation_display_driver_24xrgb_setup.c | 13 +- ..._driver_32bpp_compressed_glyph_1bit_draw.c | 13 +- ...ion_display_driver_32bpp_glyph_1bit_draw.c | 13 +- ...iver_32bpp_horizontal_pixelmap_line_draw.c | 19 +- ...32bpp_rotated_compressed_glyph_1bit_draw.c | 13 +- ...lay_driver_32bpp_rotated_glyph_1bit_draw.c | 13 +- ...pp_rotated_horizontal_pixelmap_line_draw.c | 13 +- ...ver_565rgb_horizontal_pixelmap_line_draw.c | 19 +- ...gb_rotated_horizontal_pixelmap_line_draw.c | 19 +- ...tion_display_driver_565rgb_rotated_setup.c | 13 +- ...d_simulation_display_driver_565rgb_setup.c | 13 +- ...lation_display_driver_8bit_palette_setup.c | 13 +- ...tion_display_driver_8bpp_glyph_1bit_draw.c | 13 +- ...tion_display_driver_8bpp_glyph_4bit_draw.c | 13 +- ...isplay_driver_compressed_glyph_4bit_draw.c | 13 +- ...isplay_driver_compressed_glyph_8bit_draw.c | 13 +- ...imulation_display_driver_glyph_4bit_draw.c | 13 +- ...river_rotated_compressed_glyph_4bit_draw.c | 13 +- ...river_rotated_compressed_glyph_8bit_draw.c | 13 +- ...n_display_driver_rotated_glyph_4bit_draw.c | 13 +- .../gx_win32_dave2d_display_driver_24xrgb.c | 22 +- ...n32_dave2d_display_driver_24xrgb_rotated.c | 13 +- .../gx_win32_dave2d_display_driver_565rgb.c | 22 +- ...n32_dave2d_display_driver_565rgb_rotated.c | 19 +- ...win32_dave2d_display_driver_8bit_palette.c | 13 +- ...tion_display_driver_565rgb_pixelmap_draw.c | 19 +- ...t_simulation_display_driver_565rgb_setup.c | 13 +- .../gx_win32_chromart_display_driver_565rgb.c | 22 +- ports/win32/vs_2019_standalone/inc/gx_port.h | 17 +- samples/demo_guix_calculator/evaluate.c | 2 +- .../demo_guix_home_automation.c | 2 +- .../demo_guix_industrial.c | 2 +- .../gx_user.h | 32 +-- .../demo_guix_binres_theme_static_language.c | 4 +- .../guix_medical_mouse_support/vitals.c | 2 +- test/example_internal/helloworld/helloworld.c | 7 +- .../keyboard_8bpp/demo_guix_keyboard_8bpp.c | 2 +- .../progress_bar/progress_bar.c | 7 +- .../screenshot_to_bitmap_1555xrgb/fx_api.h | 43 --- .../screenshot_to_bitmap_1555xrgb/fx_port.h | 15 +- .../screenshot_to_bitmap_16bpp/fx_api.h | 43 --- .../screenshot_to_bitmap_16bpp/fx_port.h | 15 +- .../screenshot_to_bitmap_32bpp/fx_api.h | 43 --- .../screenshot_to_bitmap_32bpp/fx_port.h | 15 +- .../screenshot_to_bitmap_332rgb/fx_api.h | 43 --- .../screenshot_to_bitmap_332rgb/fx_port.h | 15 +- .../screenshot_to_bitmap_4444argb/fx_api.h | 43 --- .../screenshot_to_bitmap_4444argb/fx_port.h | 15 +- .../screenshot_to_bitmap_4bpp/fx_api.h | 43 --- .../screenshot_to_bitmap_4bpp/fx_port.h | 15 +- .../fx_api.h | 43 --- .../fx_port.h | 15 +- .../screenshot_to_bitmap_monochrome/fx_api.h | 43 --- .../screenshot_to_bitmap_monochrome/fx_port.h | 15 +- .../gx_validation_display_driver_1555xrgb.c | 7 +- .../gx_validation_display_driver_16bpp.c | 7 +- .../gx_validation_display_driver_1bpp.c | 7 +- .../gx_validation_display_driver_32bpp.c | 7 +- .../gx_validation_display_driver_332rgb.c | 7 +- .../gx_validation_display_driver_4444argb.c | 7 +- ...validation_display_driver_4bpp_grayscale.c | 7 +- .../gx_validation_display_driver_8bpp.c | 7 +- ..._validation_synergy_display_driver_16bpp.c | 7 +- ..._validation_synergy_display_driver_32bpp.c | 7 +- .../drivers/gx_display_driver_hardware.h | 7 +- .../gx_display_driver_hardware_24xrgb.c | 7 +- .../gx_display_driver_hardware_565rgb.c | 7 +- .../gx_touch_driver_hardware_capacitive.c | 6 +- ...guix_16bpp_horizontal_pixelmap_line_draw.c | 4 +- .../tests/validation_guix_1bpp_glyph_draw.c | 2 +- ...alidation_guix_1bpp_horizontal_line_draw.c | 2 +- ..._guix_1bpp_horizontal_pixelmap_line_draw.c | 4 +- .../validation_guix_1bpp_pixelmap_draw.c | 4 +- .../validation_guix_1bpp_pixelmap_line_draw.c | 4 +- .../validation_guix_1bpp_simple_line_draw.c | 2 +- ...guix_32bpp_horizontal_pixelmap_line_draw.c | 4 +- .../validation_guix_32bpp_pixelmap_draw.c | 4 +- .../validation_guix_32bpp_simple_line_draw.c | 4 +- .../validation_guix_332rgb_glyph_1bit_draw.c | 4 +- .../validation_guix_332rgb_glyph_4bit_draw.c | 4 +- ...uix_332rgb_horizontal_pixelmap_line_draw.c | 4 +- .../validation_guix_332rgb_pixelmap_blend.c | 4 +- ...ation_guix_332rgb_simple_line_alpha_draw.c | 4 +- ...x_4444argb_horizontal_pixelmap_line_draw.c | 4 +- .../validation_guix_4444argb_pixelmap_draw.c | 4 +- .../tests/validation_guix_4bpp_canvas_copy.c | 2 +- .../validation_guix_4bpp_glyph_1bit_draw.c | 2 +- .../validation_guix_4bpp_glyph_4bit_draw.c | 2 +- ..._guix_4bpp_horizontal_pixelmap_line_draw.c | 4 +- .../validation_guix_4bpp_pixelmap_draw.c | 4 +- .../validation_guix_4bpp_pixelmap_rotate.c | 4 +- .../validation_guix_4bpp_simple_line_draw.c | 4 +- ...dation_guix_565rgb_palette_pixelmap_draw.c | 4 +- .../validation_guix_565rgb_simple_line_draw.c | 4 +- ...dation_guix_8bit_palette_glyph_1bit_draw.c | 4 +- ..._guix_8bpp_horizontal_pixelmap_line_draw.c | 4 +- .../validation_guix_8bpp_pixelmap_draw.c | 4 +- .../validation_guix_8bpp_simple_line_draw.c | 4 +- .../validation_guix_accordion_menu_draw.c | 2 +- ...ix_accordion_menu_pen_down_event_process.c | 2 +- ...guix_accordion_menu_pen_up_event_process.c | 2 +- .../validation_guix_accordion_menu_position.c | 2 +- ...tion_guix_accordion_menu_shift_no_output.c | 2 +- ...x_all_widgets_1555xrgb_canvas_copy_blend.c | 4 +- ...ll_widgets_1555xrgb_image_convert_screen.c | 4 +- ...tion_guix_all_widgets_1555xrgb_jpeg_draw.c | 4 +- ..._guix_all_widgets_1555xrgb_pixelmap_draw.c | 4 +- ...ation_guix_all_widgets_1555xrgb_png_draw.c | 4 +- ..._guix_all_widgets_1555xrgb_resize_screen.c | 4 +- ..._guix_all_widgets_1555xrgb_rotate_screen.c | 6 +- ..._guix_all_widgets_1555xrgb_shapes_screen.c | 4 +- ...dation_guix_all_widgets_16bpp_block_move.c | 4 +- ..._guix_all_widgets_16bpp_canvas_animation.c | 2 +- ...guix_all_widgets_16bpp_canvas_offset_set.c | 4 +- ...x_all_widgets_16bpp_fill_text_color_test.c | 4 +- ...uix_all_widgets_16bpp_generic_shape_fill.c | 4 +- ...all_widgets_16bpp_rotated_270_block_move.c | 4 +- ...gets_16bpp_rotated_270_canvas_copy_blend.c | 4 +- ..._all_widgets_16bpp_rotated_270_line_draw.c | 4 +- ..._widgets_16bpp_rotated_270_pixelmap_draw.c | 4 +- ..._widgets_16bpp_rotated_270_resize_screen.c | 4 +- ..._widgets_16bpp_rotated_270_rotate_screen.c | 6 +- ..._widgets_16bpp_rotated_270_shapes_screen.c | 4 +- ..._guix_all_widgets_16bpp_rotated_arc_fill.c | 4 +- ...uix_all_widgets_16bpp_rotated_block_move.c | 4 +- ..._widgets_16bpp_rotated_canvas_copy_blend.c | 4 +- ...uix_all_widgets_16bpp_rotated_ccw_binary.c | 4 +- ...s_16bpp_rotated_ccw_binary_pixelmap_draw.c | 4 +- ...s_16bpp_rotated_ccw_binary_rotate_screen.c | 6 +- ...ix_all_widgets_16bpp_rotated_circle_fill.c | 4 +- ...guix_all_widgets_16bpp_rotated_cw_binary.c | 4 +- ...ts_16bpp_rotated_cw_binary_pixelmap_draw.c | 4 +- ...ts_16bpp_rotated_cw_binary_rotate_screen.c | 6 +- ...x_all_widgets_16bpp_rotated_ellipse_fill.c | 4 +- ...uix_all_widgets_16bpp_rotated_glyph_draw.c | 4 +- ...pp_rotated_horizontal_pixelmap_line_draw.c | 4 +- ...guix_all_widgets_16bpp_rotated_line_draw.c | 4 +- ..._guix_all_widgets_16bpp_rotated_pie_fill.c | 4 +- ..._all_widgets_16bpp_rotated_pixelmap_draw.c | 4 +- ...x_all_widgets_16bpp_rotated_polygon_fill.c | 4 +- ..._all_widgets_16bpp_rotated_resize_screen.c | 4 +- ..._all_widgets_16bpp_rotated_rotate_screen.c | 6 +- ...idgets_16bpp_rotated_scroll_wheel_screen.c | 4 +- ..._all_widgets_16bpp_rotated_shapes_screen.c | 4 +- ...on_guix_all_widgets_16bpp_rotated_sprite.c | 4 +- ..._all_widgets_16bpp_rotated_vertical_list.c | 4 +- ...all_widgets_16bpp_rotated_wide_line_fill.c | 4 +- ...guix_all_widgets_16bpp_shapes_screen_pie.c | 4 +- ...validation_guix_all_widgets_16bpp_sprite.c | 4 +- ...idation_guix_all_widgets_1bpp_block_move.c | 4 +- ...tion_guix_all_widgets_1bpp_button_screen.c | 6 +- ...dation_guix_all_widgets_1bpp_canvas_copy.c | 4 +- ...ix_all_widgets_1bpp_image_convert_screen.c | 4 +- ...idation_guix_all_widgets_1bpp_pic_screen.c | 4 +- ...tion_guix_all_widgets_1bpp_resize_screen.c | 4 +- ...tion_guix_all_widgets_1bpp_rotate_screen.c | 6 +- ...x_all_widgets_1bpp_shapes_screen_polygon.c | 6 +- ...ion_guix_all_widgets_1bpp_sliders_screen.c | 6 +- ...dation_guix_all_widgets_1bpp_text_screen.c | 6 +- ...tion_guix_all_widgets_1bpp_window_screen.c | 6 +- ...tion_guix_all_widgets_24xrgb_rotated_ccw.c | 4 +- ...ix_all_widgets_24xrgb_rotated_ccw_binary.c | 4 +- ...ll_widgets_24xrgb_rotated_ccw_block_move.c | 4 +- ...ets_24xrgb_rotated_ccw_canvas_copy_blend.c | 4 +- ...ll_widgets_24xrgb_rotated_ccw_glyph_draw.c | 4 +- ...all_widgets_24xrgb_rotated_ccw_line_draw.c | 4 +- ...widgets_24xrgb_rotated_ccw_pixelmap_draw.c | 4 +- ...widgets_24xrgb_rotated_ccw_resize_screen.c | 4 +- ...widgets_24xrgb_rotated_ccw_rotate_screen.c | 6 +- ...widgets_24xrgb_rotated_ccw_shapes_screen.c | 4 +- ...widgets_24xrgb_rotated_ccw_vertical_list.c | 4 +- ...ation_guix_all_widgets_24xrgb_rotated_cw.c | 4 +- ...uix_all_widgets_24xrgb_rotated_cw_binary.c | 4 +- ...all_widgets_24xrgb_rotated_cw_block_move.c | 4 +- ...gets_24xrgb_rotated_cw_canvas_copy_blend.c | 4 +- ...all_widgets_24xrgb_rotated_cw_glyph_draw.c | 4 +- ...rotated_cw_horizontal_pixelmap_line_draw.c | 4 +- ..._all_widgets_24xrgb_rotated_cw_line_draw.c | 4 +- ..._widgets_24xrgb_rotated_cw_pixelmap_draw.c | 4 +- ..._widgets_24xrgb_rotated_cw_resize_screen.c | 4 +- ..._widgets_24xrgb_rotated_cw_rotate_screen.c | 6 +- ..._widgets_24xrgb_rotated_cw_shapes_screen.c | 4 +- ...uix_all_widgets_24xrgb_rotated_cw_sprite.c | 4 +- ..._widgets_24xrgb_rotated_cw_vertical_list.c | 4 +- ...on_guix_all_widgets_32argb_pixelmap_draw.c | 4 +- ...tion_guix_all_widgets_32argb_rotated_ccw.c | 4 +- ...ation_guix_all_widgets_32argb_rotated_cw.c | 4 +- ...gets_32argb_rotated_cw_canvas_copy_blend.c | 4 +- ...all_widgets_32argb_rotated_cw_glyph_draw.c | 4 +- ..._all_widgets_32argb_rotated_cw_line_draw.c | 4 +- ..._widgets_32argb_rotated_cw_pixelmap_draw.c | 4 +- ..._widgets_32argb_rotated_cw_resize_screen.c | 4 +- ..._widgets_32argb_rotated_cw_rotate_screen.c | 6 +- ..._widgets_32argb_rotated_cw_shapes_screen.c | 4 +- ...on_guix_all_widgets_332rgb_button_screen.c | 6 +- ...tion_guix_all_widgets_332rgb_line_screen.c | 10 +- ...n_guix_all_widgets_332rgb_pixelmap_blend.c | 6 +- ..._guix_all_widgets_332rgb_pixelmap_screen.c | 6 +- ...on_guix_all_widgets_332rgb_resize_screen.c | 4 +- ...on_guix_all_widgets_332rgb_rotate_screen.c | 4 +- ...all_widgets_332rgb_shapes_screen_circles.c | 8 +- ...all_widgets_332rgb_shapes_screen_ellipse.c | 4 +- ...on_guix_all_widgets_332rgb_sprite_screen.c | 8 +- ...on_guix_all_widgets_332rgb_window_screen.c | 8 +- ...ll_widgets_4444argb_image_convert_screen.c | 4 +- ..._guix_all_widgets_4444argb_resize_screen.c | 4 +- ..._guix_all_widgets_4444argb_rotate_screen.c | 6 +- ...x_all_widgets_4444argb_shapes_screen_arc.c | 4 +- ...idation_guix_all_widgets_4bpp_block_move.c | 4 +- ...tion_guix_all_widgets_4bpp_button_screen.c | 6 +- ...n_guix_all_widgets_4bpp_generic_arc_fill.c | 4 +- ...dgets_4bpp_horizontal_pixelmap_line_draw.c | 6 +- ...ix_all_widgets_4bpp_image_convert_screen.c | 4 +- ...dation_guix_all_widgets_4bpp_line_screen.c | 10 +- ...tion_guix_all_widgets_4bpp_resize_screen.c | 4 +- ...tion_guix_all_widgets_4bpp_rotate_screen.c | 6 +- ...x_all_widgets_4bpp_shapes_screen_ellipse.c | 6 +- ...ion_guix_all_widgets_4bpp_sliders_screen.c | 6 +- .../validation_guix_all_widgets_4bpp_sprite.c | 4 +- ...tion_guix_all_widgets_4bpp_sprite_screen.c | 6 +- ...lidation_guix_all_widgets_4bpp_text_draw.c | 6 +- ...tion_guix_all_widgets_4bpp_window_screen.c | 6 +- .../validation_guix_all_widgets_565bgr.c | 4 +- ...ion_guix_all_widgets_565bgr_gauge_screen.c | 4 +- ...on_guix_all_widgets_565bgr_resize_screen.c | 4 +- ...on_guix_all_widgets_565bgr_rotate_screen.c | 4 +- ..._guix_all_widgets_565rgb_pixelmap_rotate.c | 6 +- ...on_guix_all_widgets_565rgb_rotate_screen.c | 6 +- ...idation_guix_all_widgets_8bpp_block_move.c | 4 +- ...tion_guix_all_widgets_8bpp_rotate_screen.c | 6 +- ...dation_guix_all_widgets_8bpp_rotated_ccw.c | 4 +- ...guix_all_widgets_8bpp_rotated_ccw_binary.c | 4 +- ..._all_widgets_8bpp_rotated_ccw_block_move.c | 4 +- ...all_widgets_8bpp_rotated_ccw_canvas_copy.c | 2 +- ...x_all_widgets_8bpp_rotated_ccw_line_draw.c | 4 +- ...l_widgets_8bpp_rotated_ccw_pixelmap_draw.c | 4 +- ...l_widgets_8bpp_rotated_ccw_pixelmap_fill.c | 4 +- ...l_widgets_8bpp_rotated_ccw_resize_screen.c | 4 +- ...l_widgets_8bpp_rotated_ccw_rotate_screen.c | 6 +- ...idation_guix_all_widgets_8bpp_rotated_cw.c | 4 +- ..._guix_all_widgets_8bpp_rotated_cw_binary.c | 4 +- ...x_all_widgets_8bpp_rotated_cw_block_move.c | 4 +- ..._all_widgets_8bpp_rotated_cw_canvas_copy.c | 2 +- ...x_all_widgets_8bpp_rotated_cw_glyph_draw.c | 4 +- ...rotated_cw_horizontal_pixelmap_line_draw.c | 4 +- ...ix_all_widgets_8bpp_rotated_cw_line_draw.c | 4 +- ...ll_widgets_8bpp_rotated_cw_pixelmap_draw.c | 4 +- ...ll_widgets_8bpp_rotated_cw_pixelmap_fill.c | 4 +- ...ll_widgets_8bpp_rotated_cw_resize_screen.c | 4 +- ...ll_widgets_8bpp_rotated_cw_rotate_screen.c | 6 +- ...ll_widgets_8bpp_rotated_cw_vertical_list.c | 4 +- ...lidation_guix_all_widgets_accordion_menu.c | 2 +- .../validation_guix_all_widgets_block_move.c | 4 +- ...on_guix_all_widgets_button_event_process.c | 2 +- ...alidation_guix_all_widgets_button_repeat.c | 2 +- ...alidation_guix_all_widgets_button_toggle.c | 4 +- ...uix_all_widgets_canvas_copy_8bit_palette.c | 4 +- ...ation_guix_all_widgets_canvas_copy_blend.c | 4 +- ...x_all_widgets_canvas_copy_blend_4444argb.c | 4 +- ...uix_all_widgets_canvas_copy_blend_565rgb.c | 4 +- ...alidation_guix_all_widgets_checkbox_draw.c | 2 +- ..._all_widgets_defined_5_4_0_compatibility.c | 2 +- ...ation_guix_all_widgets_display_color_set.c | 2 +- ...ix_all_widgets_drop_list_background_draw.c | 4 +- ...guix_all_widgets_drop_list_event_process.c | 4 +- ..._guix_all_widgets_drop_list_pixelmap_set.c | 4 +- .../validation_guix_all_widgets_execute.c | 2 +- ...idation_guix_all_widgets_fold_drag_event.c | 4 +- ...idation_guix_all_widgets_gauge_animation.c | 4 +- ...ets_gx_system_string_width_get_no_output.c | 2 +- ...guix_all_widgets_h_pixelmap_slider_16bpp.c | 6 +- ...lidation_guix_all_widgets_h_slider_16bpp.c | 6 +- ...dation_guix_all_widgets_horizontal_32bpp.c | 4 +- ...lidation_guix_all_widgets_icon_alignment.c | 2 +- ...n_guix_all_widgets_icon_button_alignment.c | 2 +- ...ix_all_widgets_ml_input_cursor_animation.c | 2 +- ...lidation_guix_all_widgets_ml_text_button.c | 2 +- ...ion_guix_all_widgets_ml_text_input_16bpp.c | 8 +- ..._widgets_ml_text_input_cursor_draw_16bpp.c | 6 +- ...tion_guix_all_widgets_ml_text_view_16bpp.c | 8 +- ..._widgets_multi_line_text_input_style_add.c | 4 +- ..._all_widgets_multi_line_text_view_scroll.c | 4 +- ...ix_all_widgets_pixelmap_button_alignment.c | 2 +- ...tion_guix_all_widgets_progress_bar_32bpp.c | 4 +- ...all_widgets_progress_bar_background_draw.c | 4 +- ...n_guix_all_widgets_progress_bar_info_set.c | 4 +- ..._guix_all_widgets_progress_bar_value_set.c | 4 +- ...alidation_guix_all_widgets_radial_slider.c | 2 +- ..._all_widgets_radial_slider_needle_offset.c | 2 +- ..._guix_all_widgets_radial_slider_property.c | 2 +- ...ation_guix_all_widgets_radio_button_draw.c | 2 +- ...dation_guix_all_widgets_root_window_move.c | 4 +- ...n_guix_all_widgets_root_window_operation.c | 2 +- ...alidation_guix_all_widgets_rotate_screen.c | 6 +- ...tion_guix_all_widgets_scroll_wheel_32bpp.c | 2 +- ...x_all_widgets_scroll_wheel_event_process.c | 4 +- ...tion_guix_all_widgets_scroll_wheel_flick.c | 2 +- ...widgets_scroll_wheel_flick_event_process.c | 4 +- ...ion_guix_all_widgets_scroll_wheel_select.c | 2 +- ...idation_guix_all_widgets_scrollbar_16bpp.c | 4 +- ...lidation_guix_all_widgets_scrollbar_8bpp.c | 4 +- ..._all_widgets_single_line_text_input_mark.c | 4 +- ...widgets_single_line_text_input_style_add.c | 4 +- ...ion_guix_all_widgets_sl_text_input_16bpp.c | 4 +- ...uix_all_widgets_sl_text_input_buffer_get.c | 4 +- ...all_widgets_sl_text_input_property_16bpp.c | 4 +- ...alidation_guix_all_widgets_slider_create.c | 4 +- ...validation_guix_all_widgets_sprite_frame.c | 4 +- ...tion_guix_all_widgets_synergy_16bpp_flip.c | 4 +- ...widgets_synergy_16bpp_rotated_ccw_binary.c | 4 +- ...ergy_16bpp_rotated_ccw_binary_glyph_draw.c | 4 +- ...y_16bpp_rotated_ccw_binary_pixelmap_draw.c | 4 +- ...ets_synergy_16bpp_rotated_ccw_glyph_draw.c | 4 +- ..._synergy_16bpp_rotated_ccw_pixelmap_draw.c | 4 +- ..._synergy_16bpp_rotated_ccw_pixelmap_fill.c | 4 +- ...rgy_16bpp_rotated_ccw_string_to_alphamap.c | 4 +- ..._widgets_synergy_16bpp_rotated_cw_binary.c | 4 +- ...nergy_16bpp_rotated_cw_binary_glyph_draw.c | 4 +- ...gy_16bpp_rotated_cw_binary_pixelmap_draw.c | 4 +- ...gets_synergy_16bpp_rotated_cw_glyph_draw.c | 4 +- ...s_synergy_16bpp_rotated_cw_pixelmap_draw.c | 4 +- ...s_synergy_16bpp_rotated_cw_pixelmap_fill.c | 4 +- ...ergy_16bpp_rotated_cw_string_to_alphamap.c | 4 +- ...s_synergy_16bpp_rotated_cw_vertical_list.c | 4 +- ...x_all_widgets_synergy_24xrgb_rotated_ccw.c | 4 +- ...idgets_synergy_24xrgb_rotated_ccw_binary.c | 4 +- ...ix_all_widgets_synergy_24xrgb_rotated_cw.c | 4 +- ...widgets_synergy_24xrgb_rotated_cw_binary.c | 4 +- ...ynergy_24xrgb_rotated_cw_dave2d_disabled.c | 4 +- ...ets_synergy_24xrgb_rotated_cw_glyph_draw.c | 4 +- ..._synergy_24xrgb_rotated_cw_pixelmap_draw.c | 4 +- ..._synergy_24xrgb_rotated_cw_vertical_list.c | 4 +- ...ix_all_widgets_synergy_565rgb_glyph_draw.c | 4 +- ...uix_all_widgets_synergy_8bpp_rotated_ccw.c | 4 +- ..._widgets_synergy_8bpp_rotated_ccw_binary.c | 4 +- ...s_synergy_8bpp_rotated_ccw_binary_sprite.c | 4 +- ...guix_all_widgets_synergy_8bpp_rotated_cw.c | 4 +- ...l_widgets_synergy_8bpp_rotated_cw_binary.c | 4 +- ..._synergy_8bpp_rotated_cw_dave2d_disabled.c | 4 +- ...ts_synergy_8bpp_rotated_cw_vertical_list.c | 4 +- ...tion_guix_all_widgets_synergy_glyph_draw.c | 4 +- ...dation_guix_all_widgets_system_view_fold.c | 4 +- ...on_guix_all_widgets_text_button_text_get.c | 4 +- .../validation_guix_all_widgets_tree_view.c | 2 +- ...widgets_utility_vertical_gradient_create.c | 4 +- ...guix_all_widgets_v_pixelmap_slider_16bpp.c | 6 +- ...lidation_guix_all_widgets_v_slider_16bpp.c | 6 +- ...guix_all_widgets_widget_border_style_set.c | 4 +- ...dation_guix_all_widgets_widget_color_get.c | 4 +- ...on_guix_all_widgets_widget_event_process.c | 2 +- ...validation_guix_all_widgets_widget_focus.c | 2 +- .../validation_guix_all_widgets_widget_move.c | 2 +- ...dation_guix_all_widgets_widget_style_set.c | 2 +- ...ation_guix_all_widgets_widget_text_blend.c | 2 +- .../validation_guix_alphamap_16bppdriver.c | 4 +- .../validation_guix_alphamap_32bppdriver.c | 4 +- .../validation_guix_alphamap_brush_alpha.c | 4 +- .../validation_guix_animation_complete.c | 2 +- ...ation_guix_animation_complete_push_stack.c | 2 +- ...lidation_guix_animation_delete_no_output.c | 2 +- ...dation_guix_animation_drag_event_process.c | 4 +- ..._guix_animation_drag_flick_event_process.c | 4 +- .../validation_guix_animation_drag_tracking.c | 4 +- ...ation_guix_animation_drag_tracking_start.c | 4 +- .../tests/validation_guix_animation_stop.c | 2 +- .../tests/validation_guix_animation_update.c | 2 +- .../validation_guix_arabic_glyph_shaping.c | 2 +- .../validation_guix_bidi_text_draw_32bpp.c | 2 +- ...dation_guix_bidi_text_line_break_runtime.c | 2 +- ...idation_guix_bidi_text_line_break_static.c | 2 +- ..._guix_binres_language_info_get_no_output.c | 2 +- ...lidation_guix_binres_language_table_load.c | 2 +- ...uix_binres_language_table_load_no_output.c | 2 +- ...x_binres_language_table_load_use_old_api.c | 2 +- .../tests/validation_guix_binres_theme_load.c | 2 +- .../validation_guix_binres_theme_load_8bpp.c | 2 +- ...alidation_guix_binres_theme_load_synergy.c | 2 +- ...dation_guix_binres_theme_static_language.c | 4 +- .../tests/validation_guix_button_24xrgb.c | 4 +- ...alidation_guix_button_deselect_no_output.c | 2 +- .../tests/validation_guix_canvas_arc_draw.c | 4 +- .../validation_guix_canvas_circle_draw.c | 4 +- .../validation_guix_canvas_delete_no_output.c | 2 +- .../validation_guix_canvas_drawing_complete.c | 2 +- .../validation_guix_canvas_ellipse_draw.c | 4 +- .../validation_guix_canvas_glyphs_draw.c | 4 +- .../validation_guix_canvas_hardware_layer.c | 8 +- .../tests/validation_guix_canvas_hide.c | 4 +- .../tests/validation_guix_canvas_pie_draw.c | 4 +- .../validation_guix_canvas_pixelmap_blend.c | 4 +- ...ation_guix_canvas_pixelmap_get_no_output.c | 2 +- .../validation_guix_canvas_pixelmap_rotate.c | 6 +- .../validation_guix_canvas_polygon_draw.c | 4 +- ...validation_guix_canvas_rotated_text_draw.c | 4 +- ..._guix_canvas_rotated_text_draw_no_output.c | 2 +- .../tests/validation_guix_canvas_text_draw.c | 4 +- ...lidation_guix_canvas_text_draw_no_output.c | 2 +- .../tests/validation_guix_checkbox_24xrgb.c | 2 +- .../validation_guix_circular_gauge_16bpp.c | 4 +- .../validation_guix_circular_gauge_32bpp.c | 4 +- ...circular_gauge_angle_increment_calculate.c | 4 +- ...validation_guix_circular_gauge_angle_set.c | 4 +- ...dation_guix_circular_gauge_animation_set.c | 4 +- ...alidation_guix_circular_gauge_dirty_mark.c | 4 +- ...dation_guix_circular_gauge_event_process.c | 4 +- ...ix_circular_gauge_needle_rotate_callback.c | 4 +- ...tion_guix_context_brush_define_no_output.c | 2 +- ...dation_guix_context_string_get_no_output.c | 2 +- ...ion_guix_deprecated_system_api_no_output.c | 2 +- ...ix_display_active_language_set_no_output.c | 2 +- ...validation_guix_display_create_no_output.c | 2 +- ...validation_guix_display_delete_no_output.c | 2 +- ..._display_driver_1555xrgb_pixelmap_rotate.c | 4 +- ...ion_guix_display_driver_16bpp_block_move.c | 4 +- ...uix_display_driver_16bpp_pixelmap_rotate.c | 4 +- ...guix_display_driver_1bpp_pixelmap_rotate.c | 4 +- ...ion_guix_display_driver_32bpp_block_move.c | 4 +- ...uix_display_driver_32bpp_pixelmap_rotate.c | 4 +- ...ix_display_driver_332rgb_pixelmap_rotate.c | 4 +- ..._display_driver_4444argb_pixelmap_rotate.c | 4 +- ...guix_display_driver_4bpp_pixelmap_rotate.c | 4 +- ...tion_guix_display_driver_8bpp_block_move.c | 4 +- ...display_driver_8bpp_horizontal_line_draw.c | 8 +- ...guix_display_driver_8bpp_pixelmap_rotate.c | 4 +- ...x_display_driver_8bpp_vertical_line_draw.c | 8 +- ...isplay_driver_aliased_filled_circle_draw.c | 4 +- ...lay_driver_aliased_fixed_point_line_draw.c | 4 +- ...on_guix_display_driver_aliased_line_draw.c | 4 +- ...uix_display_driver_alised_wide_line_draw.c | 6 +- ...x_display_driver_generic_glyph_4bit_draw.c | 6 +- ...ix_display_driver_simple_line_alpha_draw.c | 6 +- ...ation_guix_display_driver_wide_line_fill.c | 4 +- ...uix_display_language_table_get_no_output.c | 2 +- ...uix_display_language_table_set_no_output.c | 2 +- ...dation_guix_display_string_get_no_output.c | 2 +- ..._guix_display_string_table_get_no_output.c | 6 +- .../tests/validation_guix_drop_list.c | 4 +- .../tests/validation_guix_drop_list_24xrgb.c | 6 +- .../tests/validation_guix_drop_list_open.c | 4 +- .../validation_guix_dynamic_bidi_screen.c | 2 +- ...uix_error_checking_api_compile_no_output.c | 2 +- ...ix_error_checking_api_coverage_no_output.c | 62 ++--- .../validation_guix_farsi_glyph_shaping.c | 2 +- .../tests/validation_guix_focus_management.c | 2 +- ...alidation_guix_generic_16bpp_32bppdriver.c | 6 +- .../validation_guix_generic_4444argb_16bpp.c | 6 +- ...n_guix_generic_aliased_wide_ellipse_draw.c | 4 +- .../validation_guix_generic_alphamap_draw.c | 4 +- .../validation_guix_generic_ellipse_fill.c | 4 +- .../tests/validation_guix_generic_line_draw.c | 4 +- .../validation_guix_generic_polygon_fill.c | 4 +- .../validation_guix_generic_scroll_wheel.c | 2 +- ...tion_guix_generic_scroll_wheel_no_output.c | 2 +- ...idation_guix_generic_scroll_wheel_scroll.c | 2 +- .../validation_guix_generic_shape_fill.c | 4 +- .../validation_guix_generic_wide_arc_draw.c | 4 +- ...alidation_guix_generic_wide_ellipse_draw.c | 4 +- ...validation_guix_glyph_blend_16bpp_screen.c | 2 +- ...validation_guix_glyph_blend_32bpp_screen.c | 2 +- .../tests/validation_guix_glyph_draw.c | 4 +- .../validation_guix_glyph_draw_16bpp_screen.c | 2 +- .../validation_guix_glyph_draw_32bpp_screen.c | 2 +- ...glyph_draw_8bpp_screen_aa_text_colors_16.c | 2 +- ..._glyph_draw_8bpp_screen_aa_text_colors_8.c | 2 +- ...idation_guix_glyph_draw_multi_lang_16bpp.c | 2 +- ...idation_guix_glyph_draw_multi_lang_32bpp.c | 2 +- ...lidation_guix_glyph_draw_multi_lang_8bpp.c | 2 +- .../validation_guix_graphics_arc_32bpp.c | 4 +- .../tests/validation_guix_graphics_arc_draw.c | 4 +- .../validation_guix_graphics_circle_32bpp.c | 8 +- .../validation_guix_graphics_ellipse_32bpp.c | 4 +- .../validation_guix_graphics_palette_arc.c | 4 +- .../validation_guix_graphics_palette_circle.c | 4 +- ...validation_guix_graphics_palette_ellipse.c | 4 +- .../validation_guix_graphics_palette_pie.c | 4 +- ...validation_guix_graphics_palette_polygon.c | 4 +- .../validation_guix_graphics_pie_32bpp.c | 4 +- .../tests/validation_guix_graphics_pie_draw.c | 4 +- .../validation_guix_graphics_polygon_32bpp.c | 4 +- .../validation_guix_graphics_rectangle_draw.c | 4 +- ...ation_guix_horizontal_gradient_no_output.c | 4 +- ...alidation_guix_horizontal_list_animation.c | 4 +- ...izontal_list_children_position_no_output.c | 2 +- ...lidation_guix_horizontal_list_drag_32bpp.c | 4 +- ...ation_guix_horizontal_list_event_process.c | 4 +- ...uix_horizontal_list_event_process_pen_up.c | 4 +- ...tion_guix_horizontal_list_page_index_set.c | 4 +- .../validation_guix_horizontal_list_scroll.c | 4 +- ..._horizontal_list_scroll_with_large_value.c | 4 +- .../validation_guix_horizontal_list_select.c | 4 +- ...dation_guix_horizontal_list_selected_set.c | 4 +- ...ontal_list_selected_widget_get_no_output.c | 2 +- ...alidation_guix_horizontal_list_set_32bpp.c | 4 +- ...n_guix_horizontal_list_total_columns_set.c | 4 +- .../validation_guix_horizontal_list_wrap.c | 4 +- .../validation_guix_horizontal_list_wrap_1.c | 4 +- ...on_guix_horizontal_screen_drag_animation.c | 4 +- ...al_screen_drag_animation_with_block_move.c | 4 +- ...zontal_screen_drag_animation_with_canvas.c | 4 +- ...l_screen_drag_animation_with_easing_func.c | 4 +- ...idation_guix_horizontal_scrollbar_create.c | 4 +- .../tests/validation_guix_icon_24xrgb.c | 2 +- .../validation_guix_icon_button_24xrgb.c | 4 +- ...uix_image_reader_colorspace_convert_1bpp.c | 4 +- ...uix_image_reader_colorspace_convert_4bpp.c | 4 +- ..._guix_image_reader_jpeg_decode_no_output.c | 2 +- ...eader_pixel_write_callback_set_no_output.c | 2 +- ...n_guix_image_reader_png_decode_no_output.c | 2 +- ...n_guix_image_reader_rle_encode_no_output.c | 2 +- ...dation_guix_image_reader_start_no_output.c | 2 +- .../validation_guix_invalid_shape_draw.c | 4 +- .../tests/validation_guix_jpeg_draw_16bpp.c | 4 +- .../tests/validation_guix_jpeg_draw_32bpp.c | 4 +- ...ion_guix_kerning_glyph_draw_32bpp_screen.c | 4 +- ...ng_glyph_draw_32bpp_screen_binary_source.c | 2 +- ...ation_guix_kerning_glyph_in_string_table.c | 2 +- .../tests/validation_guix_line_1bpp.c | 14 +- .../tests/validation_guix_line_8bpp.c | 6 +- .../tests/validation_guix_line_chart.c | 4 +- .../tests/validation_guix_lines_24xrgb.c | 8 +- .../tests/validation_guix_lines_565rgb.c | 6 +- .../tests/validation_guix_lines_clip_24xrgb.c | 6 +- .../tests/validation_guix_lines_clip_565rgb.c | 6 +- .../tests/validation_guix_menu_32bpp.c | 4 +- ...dation_guix_menu_event_process_no_output.c | 2 +- .../tests/validation_guix_menu_position.c | 4 +- .../validation_guix_menu_text_alignment.c | 4 +- .../validation_guix_menu_text_offset_set.c | 4 +- ...dation_guix_ml_button_text_set_no_output.c | 2 +- ...tion_guix_ml_input_char_insert_no_output.c | 2 +- .../validation_guix_ml_input_no_output.c | 2 +- ...idation_guix_ml_input_text_set_no_output.c | 2 +- .../validation_guix_ml_text_input_16bpp.c | 12 +- .../validation_guix_ml_text_input_32bpp.c | 12 +- ...validation_guix_ml_text_input_api_select.c | 6 +- ..._guix_ml_text_input_api_select_invisible.c | 6 +- ...ation_guix_ml_text_input_backspace_16bpp.c | 6 +- ...validation_guix_ml_text_input_block_move.c | 6 +- .../validation_guix_ml_text_input_cache.c | 6 +- ...alidation_guix_ml_text_input_char_insert.c | 6 +- .../validation_guix_ml_text_input_copy.c | 6 +- .../validation_guix_ml_text_input_create.c | 6 +- ...ion_guix_ml_text_input_cursor_pos_update.c | 6 +- .../validation_guix_ml_text_input_delete.c | 6 +- ...alidation_guix_ml_text_input_drag_select.c | 6 +- ...idation_guix_ml_text_input_event_process.c | 6 +- ...lidation_guix_ml_text_input_invalid_font.c | 6 +- .../validation_guix_ml_text_input_key_api.c | 6 +- ...tion_guix_ml_text_input_key_down_process.c | 6 +- ...validation_guix_ml_text_input_left_arrow.c | 6 +- ...uix_ml_text_input_left_right_arrow_16bpp.c | 6 +- ...validation_guix_ml_text_input_line_break.c | 8 +- ...validation_guix_ml_text_input_line_space.c | 6 +- .../validation_guix_ml_text_input_mark_next.c | 6 +- ...idation_guix_ml_text_input_mark_previous.c | 6 +- .../validation_guix_ml_text_input_paste.c | 6 +- .../validation_guix_ml_text_input_property.c | 6 +- ...ion_guix_ml_text_input_select_copy_paste.c | 6 +- .../validation_guix_ml_text_input_text_set.c | 6 +- ...idation_guix_ml_text_view_16bpp_text_set.c | 4 +- .../validation_guix_ml_text_view_32bpp.c | 10 +- ...ion_guix_ml_text_view_align_center_16bpp.c | 10 +- ...tion_guix_ml_text_view_align_right_16bpp.c | 10 +- ...validation_guix_ml_text_view_cache_32bpp.c | 6 +- ...ation_guix_ml_text_view_display_info_get.c | 4 +- ...lidation_guix_ml_text_view_event_process.c | 4 +- .../validation_guix_ml_text_view_font_16bpp.c | 4 +- .../validation_guix_ml_text_view_font_8bpp.c | 4 +- .../validation_guix_ml_text_view_scroll.c | 4 +- .../validation_guix_ml_text_view_vcenter.c | 4 +- ...tion_guix_ml_text_view_with_scroll_32bpp.c | 10 +- .../tests/validation_guix_ml_view_no_output.c | 2 +- ...lidation_guix_ml_view_text_set_no_output.c | 2 +- ..._line_text_input_character_insert_24xrgb.c | 8 +- ...multi_line_text_input_cursor_draw_24xrgb.c | 6 +- ...on_guix_multi_line_text_input_down_arrow.c | 4 +- ...guix_multi_line_text_input_event_process.c | 4 +- ...uix_multi_line_text_input_fill_color_set.c | 4 +- ...on_guix_multi_line_text_input_left_arrow.c | 4 +- ...uix_multi_line_text_input_text_color_set.c | 4 +- ...n_guix_multi_line_text_input_text_select.c | 4 +- ...tion_guix_multi_line_text_input_up_arrow.c | 4 +- ...idation_guix_multi_line_text_view_24xrgb.c | 8 +- ...on_guix_multi_line_text_view_clip_24xrgb.c | 4 +- ...on_guix_multi_line_text_view_font_24xrgb.c | 4 +- ...multi_line_text_view_visible_row_compute.c | 4 +- .../validation_guix_multi_themes_16bpp.c | 2 +- ...lidation_guix_multi_themes_16bpp_synergy.c | 2 +- ...n_guix_multi_themes_8bpp_palette_theme_1.c | 2 +- ...n_guix_multi_themes_8bpp_palette_theme_2.c | 2 +- ...n_guix_multi_themes_8bpp_palette_theme_3.c | 2 +- ...n_guix_multi_themes_8bpp_palette_theme_4.c | 2 +- ...n_guix_multi_themes_8bpp_palette_theme_5.c | 2 +- .../validation_guix_non_linear_animation.c | 2 +- .../validation_guix_numeric_pixelmap_prompt.c | 4 +- ...eric_pixelmap_prompt_value_set_no_output.c | 2 +- .../tests/validation_guix_numeric_prompt.c | 4 +- ..._guix_numeric_prompt_value_set_no_output.c | 2 +- .../tests/validation_guix_palette_16bpp.c | 6 +- .../tests/validation_guix_palette_32bpp.c | 6 +- ...lidation_guix_partial_frame_buffer_16bpp.c | 4 +- ...ix_partial_frame_buffer_16bpp_glyph_draw.c | 4 +- ...uix_partial_frame_buffer_16bpp_line_draw.c | 4 +- ...partial_frame_buffer_16bpp_pixelmap_draw.c | 4 +- ...partial_frame_buffer_16bpp_resize_screen.c | 4 +- ...partial_frame_buffer_16bpp_rotate_screen.c | 4 +- ...partial_frame_buffer_16bpp_vertical_list.c | 4 +- .../tests/validation_guix_pixelmap_24xrgb.c | 6 +- .../tests/validation_guix_pixelmap_565rgb.c | 6 +- .../validation_guix_pixelmap_button_24xrgb.c | 4 +- .../validation_guix_pixelmap_clip_24xrgb.c | 4 +- .../validation_guix_pixelmap_clip_565rgb.c | 4 +- ...ion_guix_pixelmap_prompt_background_draw.c | 2 +- .../validation_guix_pixelmap_resize_16bpp.c | 4 +- .../validation_guix_pixelmap_resize_32bpp.c | 4 +- .../validation_guix_pixelmap_resize_8bpp.c | 4 +- .../validation_guix_pixelmap_slider_24xrgb.c | 6 +- ...ation_guix_pixelmap_slider_event_process.c | 4 +- ...validation_guix_pixelmap_slider_h_24xrgb.c | 6 +- ...dation_guix_pixelmap_slider_pixelmap_set.c | 4 +- .../tests/validation_guix_pixelmaps_32bpp.c | 6 +- .../validation_guix_pixelmaps_4444argb.c | 8 +- .../tests/validation_guix_pixelmaps_565rgb.c | 6 +- ...ion_guix_private_string_delete_no_output.c | 2 +- .../tests/validation_guix_prompt_24xrgb.c | 2 +- ...tion_guix_prompt_event_process_no_output.c | 2 +- ...alidation_guix_prompt_text_get_no_output.c | 2 +- ...alidation_guix_prompt_text_set_no_output.c | 2 +- .../validation_guix_radial_progress_bar.c | 4 +- ...ion_guix_radial_progress_bar_alpha_blend.c | 4 +- ...guix_radial_progress_bar_background_draw.c | 4 +- ...n_guix_radial_progress_bar_event_process.c | 4 +- ...lidation_guix_radial_progress_bar_resize.c | 4 +- ...ation_guix_radial_progress_bar_text_draw.c | 4 +- ...guix_radial_progress_bar_value_calculate.c | 4 +- ...uix_radial_slider_anchor_angle_calculate.c | 2 +- ...ation_guix_radial_slider_angle_calculate.c | 2 +- ...idation_guix_radial_slider_event_process.c | 2 +- .../validation_guix_radio_button_24xrgb.c | 6 +- .../tests/validation_guix_rich_text_view.c | 2 +- .../validation_guix_rich_text_view_font.c | 2 +- ...dation_guix_rich_text_view_line_info_get.c | 2 +- ...validation_guix_rich_text_view_no_output.c | 2 +- .../validation_guix_rich_text_view_scroll.c | 2 +- ...idation_guix_root_window_focus_no_output.c | 2 +- .../validation_guix_runtime_allocate_16bpp.c | 2 +- .../tests/validation_guix_screen_stack.c | 4 +- ...lidation_guix_scroll_thumb_event_process.c | 4 +- ...guix_scroll_wheel_callback_set_no_output.c | 2 +- ...on_guix_scroll_wheel_flick_event_process.c | 2 +- ...x_scroll_wheel_gradient_create_no_output.c | 2 +- .../validation_guix_scroll_wheel_scroll.c | 2 +- ...on_guix_scroll_wheel_timer_event_process.c | 2 +- .../tests/validation_guix_scrollbar_24xrgb.c | 4 +- .../validation_guix_scrollbar_event_process.c | 4 +- .../tests/validation_guix_scrollbar_reset.c | 2 +- .../validation_guix_scrollbar_thumb_24xrgb.c | 4 +- ...alidation_guix_scrollbar_value_calculate.c | 4 +- .../validation_guix_scrollbar_value_set.c | 4 +- .../tests/validation_guix_shape_fill.c | 4 +- ...on_guix_single_line_partial_dirty_24xrgb.c | 4 +- ...uix_single_line_text_input_16bpp_unicode.c | 4 +- ...ation_guix_single_line_text_input_24xrgb.c | 4 +- ...le_line_text_input_24xrgb_center_aligned.c | 4 +- ...guix_single_line_text_input_buffer_clear.c | 4 +- ..._guix_single_line_text_input_clip_32xrgb.c | 4 +- ...ation_guix_single_line_text_input_create.c | 4 +- ...ix_single_line_text_input_fill_color_set.c | 4 +- ...x_single_line_text_input_property_24xrgb.c | 4 +- ...ix_single_line_text_input_text_color_set.c | 4 +- ..._guix_single_line_text_input_text_select.c | 4 +- .../validation_guix_sl_input_api_select.c | 4 +- .../validation_guix_sl_input_backspace.c | 4 +- .../tests/validation_guix_sl_input_cursor.c | 4 +- .../validation_guix_sl_input_drag_select.c | 4 +- .../tests/validation_guix_sl_input_draw.c | 4 +- .../validation_guix_sl_input_event_process.c | 4 +- ...validation_guix_sl_input_gain_lose_focus.c | 4 +- ...dation_guix_sl_input_input_focus_release.c | 4 +- .../tests/validation_guix_sl_input_insert.c | 4 +- .../validation_guix_sl_input_left_arrow.c | 4 +- .../validation_guix_sl_input_mark_home.c | 4 +- .../validation_guix_sl_input_no_output.c | 2 +- ...lidation_guix_sl_input_select_copy_paste.c | 4 +- .../validation_guix_sl_input_style_remove.c | 4 +- .../validation_guix_sl_input_text_select.c | 4 +- .../tests/validation_guix_sl_input_text_set.c | 4 +- ...idation_guix_sl_input_text_set_no_output.c | 2 +- .../tests/validation_guix_slider_24xrgb.c | 6 +- .../tests/validation_guix_slider_h_24xrgb.c | 6 +- ...lidation_guix_slider_needle_position_get.c | 4 +- .../tests/validation_guix_sprite.c | 4 +- .../tests/validation_guix_sprite_24xrgb.c | 4 +- .../tests/validation_guix_sprite_565rgb.c | 4 +- .../tests/validation_guix_sprite_start.c | 4 +- ...dation_guix_standalone_binres_load_16bpp.c | 4 +- ...idation_guix_standalone_binres_load_8bpp.c | 4 +- ...alone_binres_load_extended_unicode_32bpp.c | 4 +- ...uix_string_scroll_wheel_create_no_output.c | 2 +- ...ing_scroll_wheel_event_process_no_output.c | 2 +- ..._string_scroll_wheel_string_list_set_ext.c | 2 +- ...g_scroll_wheel_string_list_set_no_output.c | 2 +- ...dation_guix_string_scroll_wheel_text_get.c | 4 +- ...dation_guix_string_to_alphamap_no_output.c | 2 +- .../tests/validation_guix_synergy_32argb.c | 6 +- ...alidation_guix_synergy_32bpp_16bppdriver.c | 6 +- .../validation_guix_synergy_4444argb_16bpp.c | 6 +- .../validation_guix_synergy_4444argb_32bpp.c | 6 +- .../tests/validation_guix_synergy_565rgb.c | 6 +- ...validation_guix_synergy_glyph_draw_16bpp.c | 6 +- ...validation_guix_synergy_glyph_draw_32bpp.c | 6 +- .../validation_guix_synergy_text_rotation.c | 6 +- .../validation_guix_system_canvas_refresh.c | 4 +- .../validation_guix_system_clipboard_put.c | 4 +- ...validation_guix_system_dirty_list_remove.c | 4 +- ...ion_guix_system_event_dispatch_no_output.c | 2 +- ...idation_guix_system_event_fold_no_output.c | 4 +- ...uix_system_event_fold_pen_drag_no_output.c | 4 +- ...ation_guix_system_event_remove_no_output.c | 2 +- ...dation_guix_system_focus_claim_no_output.c | 2 +- ...tion_guix_system_free_view_get_no_output.c | 2 +- .../validation_guix_system_lock_no_output.c | 2 +- .../tests/validation_guix_system_no_output.c | 2 +- .../validation_guix_system_private_string.c | 4 +- ...uix_system_private_string_copy_no_output.c | 2 +- ...x_system_private_string_delete_no_output.c | 2 +- ...ion_guix_system_private_string_list_copy.c | 4 +- .../validation_guix_system_screen_stack.c | 4 +- ...ation_guix_system_screen_stack_no_output.c | 6 +- ...n_guix_system_string_width_get_no_output.c | 2 +- ...ation_guix_system_thread_entry_no_output.c | 2 +- ...ation_guix_system_timer_update_no_output.c | 2 +- ...guix_system_version_string_get_no_output.c | 2 +- ...lidation_guix_system_view_fold_no_output.c | 4 +- .../tests/validation_guix_template.c | 4 +- .../validation_guix_text_button_24xrgb.c | 4 +- ...guix_text_button_event_process_no_output.c | 2 +- ...tion_guix_text_button_text_get_no_output.c | 2 +- ...tion_guix_text_button_text_set_no_output.c | 2 +- .../tests/validation_guix_text_draw.c | 2 +- ...dation_guix_text_input_cursor_height_set.c | 4 +- .../tests/validation_guix_text_rotation.c | 6 +- ...tion_guix_text_scroll_wheel_callback_set.c | 2 +- ...n_guix_text_scroll_wheel_draw_with_alpha.c | 2 +- ...ext_scroll_wheel_event_process_no_output.c | 2 +- ...idation_guix_text_scroll_wheel_flat_draw.c | 2 +- ...dation_guix_text_scroll_wheel_round_draw.c | 2 +- .../validation_guix_thai_glyph_shaping.c | 2 +- ...lidation_guix_thai_glyph_shaping_runtime.c | 2 +- .../validation_guix_tree_view_event_process.c | 2 +- .../validation_guix_tree_view_position.c | 2 +- ...idation_guix_tree_view_root_pixelmap_set.c | 4 +- .../tests/validation_guix_tree_view_scroll.c | 2 +- .../validation_guix_tree_view_selected_set.c | 2 +- ...dation_guix_tree_view_show_event_process.c | 2 +- ...on_guix_utility_1555xrgb_pixelmap_resize.c | 4 +- ...on_guix_utility_1555xrgb_pixelmap_rotate.c | 4 +- ...ation_guix_utility_16bpp_pixelmap_resize.c | 4 +- ...ation_guix_utility_16bpp_pixelmap_rotate.c | 4 +- ...dation_guix_utility_1bpp_pixelmap_resize.c | 4 +- ...dation_guix_utility_1bpp_pixelmap_rotate.c | 4 +- ...ion_guix_utility_1bpp_string_to_alphamap.c | 4 +- ...tion_guix_utility_32argb_pixelmap_resize.c | 4 +- ...ation_guix_utility_32bpp_pixelmap_rotate.c | 4 +- ...tion_guix_utility_332rgb_pixelmap_resize.c | 4 +- ...tion_guix_utility_332rgb_pixelmap_rotate.c | 4 +- ...on_guix_utility_4444argb_pixelmap_resize.c | 4 +- ...on_guix_utility_4444argb_pixelmap_rotate.c | 4 +- ...dation_guix_utility_4bpp_pixelmap_resize.c | 4 +- ...dation_guix_utility_4bpp_pixelmap_rotate.c | 4 +- ...dation_guix_utility_8bpp_pixelmap_rotate.c | 4 +- ...utility_canvas_to_bmp_1555xrgb_no_output.c | 6 +- ...ix_utility_canvas_to_bmp_16bpp_no_output.c | 6 +- ...ix_utility_canvas_to_bmp_32bpp_no_output.c | 6 +- ...x_utility_canvas_to_bmp_332rgb_no_output.c | 6 +- ...utility_canvas_to_bmp_4444argb_no_output.c | 6 +- ...uix_utility_canvas_to_bmp_4bpp_no_output.c | 6 +- ...ity_canvas_to_bmp_8bit_palette_no_output.c | 6 +- ...ility_canvas_to_bmp_monochrome_no_output.c | 6 +- ...idation_guix_utility_math_sqrt_no_output.c | 6 +- .../tests/validation_guix_utility_no_output.c | 6 +- ...lidation_guix_utility_string_to_alphamap.c | 4 +- ...ation_guix_utility_utf8_string_character.c | 4 +- .../validation_guix_vertical_list_animation.c | 4 +- ...lidation_guix_vertical_list_child_height.c | 4 +- .../validation_guix_vertical_list_drag.c | 4 +- ...idation_guix_vertical_list_event_process.c | 4 +- ...dation_guix_vertical_list_page_index_set.c | 4 +- .../validation_guix_vertical_list_scroll.c | 4 +- ...ix_vertical_list_scroll_with_large_value.c | 4 +- .../validation_guix_vertical_list_select.c | 4 +- ...lidation_guix_vertical_list_selected_set.c | 4 +- .../validation_guix_vertical_list_set_32bpp.c | 4 +- ...dation_guix_vertical_list_total_rows_set.c | 4 +- .../validation_guix_vertical_list_wrap.c | 4 +- .../validation_guix_vertical_list_wrap_1.c | 4 +- ...tion_guix_vertical_screen_drag_animation.c | 4 +- ...al_screen_drag_animation_with_block_move.c | 4 +- ...rtical_screen_drag_animation_with_canvas.c | 4 +- ...l_screen_drag_animation_with_easing_func.c | 4 +- .../validation_guix_widget_back_attach.c | 2 +- .../tests/validation_guix_widget_back_link.c | 4 +- .../tests/validation_guix_widget_back_move.c | 2 +- .../tests/validation_guix_widget_block_move.c | 4 +- .../validation_guix_widget_border_draw.c | 2 +- ...idation_guix_widget_canvas_get_no_output.c | 2 +- ...guix_widget_child_focus_assign_no_output.c | 2 +- .../validation_guix_widget_children_draw.c | 2 +- .../validation_guix_widget_delete_no_output.c | 2 +- ...lidation_guix_widget_find_demo_no_output.c | 2 +- .../validation_guix_widget_find_no_output.c | 2 +- ...alidation_guix_widget_font_get_no_output.c | 2 +- .../tests/validation_guix_widget_link.c | 2 +- .../tests/validation_guix_widget_no_output.c | 2 +- .../validation_guix_widget_pixelmap_get.c | 4 +- .../validation_guix_widget_scroll_shift.c | 2 +- ...idation_guix_widget_string_get_no_output.c | 2 +- .../tests/validation_guix_widget_style_set.c | 2 +- ...idation_guix_widget_text_blend_no_output.c | 2 +- .../tests/validation_guix_widget_text_draw.c | 4 +- ...et_transparent_pixelmap_detect_no_output.c | 2 +- ...idation_guix_widgets_with_private_string.c | 2 +- .../validation_guix_window_client_scroll.c | 4 +- ...validation_guix_window_client_scroll_api.c | 4 +- ...tion_guix_window_event_process_no_output.c | 2 +- .../tests/validation_guix_window_execute.c | 2 +- .../tests/validation_guix_window_no_output.c | 2 +- .../gx_validation_display_driver_16bpp.c | 7 +- .../gx_validation_display_driver_1bpp.c | 7 +- .../gx_validation_display_driver_32bpp.c | 7 +- .../gx_validation_display_driver_4bpp.c | 7 +- .../gx_validation_display_driver_8bpp.c | 7 +- .../utility/gx_validation_utility.h | 4 +- tutorials/demo_guix_binres/demo_guix_binres.c | 12 +- .../demo_guix_runtime_bidi_text.c | 2 +- .../demo_guix_transitions.c | 4 +- .../demo_guix_widget_animation.c | 2 +- 2275 files changed, 7562 insertions(+), 24155 deletions(-) diff --git a/common/inc/gx_animation.h b/common/inc/gx_animation.h index f54cac42..3a0de718 100644 --- a/common/inc/gx_animation.h +++ b/common/inc/gx_animation.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,17 +37,6 @@ /* types and external references. It is assumed that gx_api.h and */ /* gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Ting Zhu Modified comment(s), */ -/* added animation delete API, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ #ifndef GX_ANIMATION_H diff --git a/common/inc/gx_api.h b/common/inc/gx_api.h index b3d90d82..e168707a 100644 --- a/common/inc/gx_api.h +++ b/common/inc/gx_api.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,91 +37,6 @@ /* Please note that basic data type definitions and other architecture-*/ /* specific information is contained in the file gx_port.h. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added line break status, */ -/* updated product constants, */ -/* modified controls blocks, */ -/* added new APIs, */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), added */ -/* display rotation support, */ -/* declare new APIs, */ -/* defined new status, */ -/* resulting in version 6.1.3 */ -/* 03-02-2021 Kenneth Maxwell Modified comment(s), */ -/* change scroll_wheel style */ -/* flag to status flag, */ -/* renamed */ -/* GX_STATUS_TRACKING_START to */ -/* GX_STATUS_TRACKING_PEN, */ -/* added rotation angle */ -/* definitions, changed */ -/* pixelmap rotation flag */ -/* definitions, */ -/* resulting in version 6.1.5 */ -/* 06-02-2021 Ting Zhu Modified comment(s), */ -/* added new widget type */ -/* GX_GENERIC_SCROLL_WHEEL, */ -/* added animation delete API, */ -/* added generic Dave2D */ -/* graphics accelerator */ -/* support, */ -/* resulting in version 6.1.7 */ -/* 08-02-2021 Ting Zhu Modified comment(s), added */ -/* GX_TICKS_SECOND definition */ -/* resulting in version 6.1.8 */ -/* 10-15-2021 Ting Zhu Modified comment(s), */ -/* updated patch number, */ -/* resulting in version 6.1.9 */ -/* 01-31-2022 Kenneth Maxwell Modified comment(s), */ -/* removed errant semicolons, */ -/* added new member to struct */ -/* GX_RADIAL_SLIDER_INFO, */ -/* added new member to */ -/* vertical and horizontal */ -/* list control blocks, */ -/* resulting in version 6.1.10 */ -/* 04-25-2022 Ting Zhu Modified comment(s), */ -/* added new member to struct */ -/* GX_DISPLAY_LAYER_SERVICES, */ -/* added new animation flag */ -/* GX_ANIMATION_BLOCK_MOVE, */ -/* resulting in version 6.1.11 */ -/* 07-29-2022 Kenneth Maxwell Modified comment(s), */ -/* added new style */ -/* GX_STYLE_REPEAT_SELECT, */ -/* resulting in version 6.1.12 */ -/* 10-31-2022 Kenneth Maxwell Modified comment(s), */ -/* removed unused style flag */ -/* GX_SCROLLBAR_BACKGROUND_ */ -/* TILE, */ -/* resulting in version 6.2.0 */ -/* 03-08-2023 Ting Zhu Modified comment(s), */ -/* updated patch version, */ -/* resulting in version 6.2.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added new APIs for loading */ -/* pixelmap and font from */ -/* standalone binary, */ -/* removed unused defines, */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* 12-31-2023 Ting Zhu Modified comment(s), */ -/* updated patch version, */ -/* resulting in version 6.4.0 */ -/* 03-01-2024 Ting Zhu Modified comment(s), */ -/* updated patch version, */ -/* resulting in version 6.4.1 */ -/* 02-19-2025 Fr�d�ric Desbiens Modified comment(s), */ -/* update version number, */ -/* resulting in version 6.4.2 */ -/* */ /**************************************************************************/ #ifndef GX_API_H @@ -1402,7 +1318,7 @@ typedef struct GX_PROGRESS_BAR_INFO_STRUCT GX_RESOURCE_ID gx_progress_bar_fill_pixelmap; } GX_PROGRESS_BAR_INFO; -/* Define circular gauge information structure, this structure is used to +/* Define circular gauge information structure, this structure is used to define the appearance of the circular gauge widget. */ typedef struct GX_CIRCULAR_GAUGE_INFO_STRUCT { diff --git a/common/inc/gx_binres_loader.h b/common/inc/gx_binres_loader.h index d02ac1dd..78028e88 100644 --- a/common/inc/gx_binres_loader.h +++ b/common/inc/gx_binres_loader.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,19 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* defined macros to read */ -/* integer value, */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* declared new prototypes, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ #ifndef GX_BINRES_LOADER_H diff --git a/common/inc/gx_button.h b/common/inc/gx_button.h index 62d83309..3a263159 100644 --- a/common/inc/gx_button.h +++ b/common/inc/gx_button.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,15 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added new prototypes, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_BUTTON_H diff --git a/common/inc/gx_canvas.h b/common/inc/gx_canvas.h index 46b168b7..7bbba8d2 100644 --- a/common/inc/gx_canvas.h +++ b/common/inc/gx_canvas.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,17 +37,6 @@ /* types and external references. It is assumed that gx_api.h and */ /* gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 04-25-2022 Ting Zhu Modified comment(s), */ -/* added new declarations, */ -/* resulting in version 6.1.11 */ -/* */ /**************************************************************************/ #ifndef GX_CANVAS_H diff --git a/common/inc/gx_circular_gauge.h b/common/inc/gx_circular_gauge.h index ef451443..4e0b4ad2 100644 --- a/common/inc/gx_circular_gauge.h +++ b/common/inc/gx_circular_gauge.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,14 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_CIRCULAR_GAUGE_H diff --git a/common/inc/gx_context.h b/common/inc/gx_context.h index f1509bfd..c9d46176 100644 --- a/common/inc/gx_context.h +++ b/common/inc/gx_context.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,14 +37,6 @@ /* data types and external references. It is assumed that gx_api.h */ /* and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_DRAW_CONTEXT_H diff --git a/common/inc/gx_display.h b/common/inc/gx_display.h index 31c7e645..8ea01d9f 100644 --- a/common/inc/gx_display.h +++ b/common/inc/gx_display.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,35 +37,6 @@ /* types and external references. It is assumed that gx_api.h and */ /* gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* added rotated display */ -/* driver declarations, */ -/* resulting in version 6.1.3 */ -/* 02-02-2021 Kenneth Maxwell Modified comment(s), */ -/* added 8bpp/32bpp rotated */ -/* display driver declarations,*/ -/* resulting in version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), */ -/* added macro */ -/* GX_SET_32BPP_BLEND_FUNCTION,*/ -/* resulting in version 6.1.5 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* added language direction */ -/* table set declarations, */ -/* resulting in version 6.1.10 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* removed unused prototypes, */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ #ifndef GX_DISPLAY_H diff --git a/common/inc/gx_drop_list.h b/common/inc/gx_drop_list.h index d5c414b4..ed060121 100644 --- a/common/inc/gx_drop_list.h +++ b/common/inc/gx_drop_list.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,14 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_DROP_LIST_H diff --git a/common/inc/gx_icon.h b/common/inc/gx_icon.h index dce82db8..9e32198f 100644 --- a/common/inc/gx_icon.h +++ b/common/inc/gx_icon.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,14 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_ICON_H diff --git a/common/inc/gx_image_reader.h b/common/inc/gx_image_reader.h index c1ca719e..11caaa97 100644 --- a/common/inc/gx_image_reader.h +++ b/common/inc/gx_image_reader.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,27 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Ting Zhu Modified comment(s), and */ -/* improved png decoding */ -/* performance, */ -/* resulting in version 6.1.7 */ -/* 10-31-2022 Kenneth Maxwell Modified comment(s), */ -/* added definitions for fixed */ -/* size table dimensions, */ -/* resulting in version 6.2.0 */ -/* 10-31-2023 Ting Zhu Modified comment(s), added */ -/* support for ARM Helium, */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) #ifndef GX_IMAGE_READER_H diff --git a/common/inc/gx_line_chart.h b/common/inc/gx_line_chart.h index 5d38085e..2526f97d 100644 --- a/common/inc/gx_line_chart.h +++ b/common/inc/gx_line_chart.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,14 +37,6 @@ /* types and external references. It is assumed that gx_api.h and */ /* gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_LINE_CHART_H diff --git a/common/inc/gx_menu.h b/common/inc/gx_menu.h index 5ee8a9c8..3aec57af 100644 --- a/common/inc/gx_menu.h +++ b/common/inc/gx_menu.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,17 +37,6 @@ /* and external references. It is assumed that gx_api.h and gx_port.h */ /* have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* declare menu event process, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ #ifndef GX_MENU_H diff --git a/common/inc/gx_multi_line_text_input.h b/common/inc/gx_multi_line_text_input.h index af144986..cbcaa18d 100644 --- a/common/inc/gx_multi_line_text_input.h +++ b/common/inc/gx_multi_line_text_input.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,14 +37,6 @@ /* component, including all data types and external references. It is */ /* assumed that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #define ID_TEXT_INPUT_TIMER 2 #define GX_MARK_TIMER 3 diff --git a/common/inc/gx_multi_line_text_view.h b/common/inc/gx_multi_line_text_view.h index 36738ec0..0064ba40 100644 --- a/common/inc/gx_multi_line_text_view.h +++ b/common/inc/gx_multi_line_text_view.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,14 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ /* Define multi-line text view management function prototypes. */ diff --git a/common/inc/gx_numeric_pixelmap_prompt.h b/common/inc/gx_numeric_pixelmap_prompt.h index a19835bc..95150920 100644 --- a/common/inc/gx_numeric_pixelmap_prompt.h +++ b/common/inc/gx_numeric_pixelmap_prompt.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,14 +37,6 @@ /* component, including all data types and external references. It is */ /* assumed that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_NUMERIC_PIXELMAP_PROMPT_H diff --git a/common/inc/gx_numeric_prompt.h b/common/inc/gx_numeric_prompt.h index 0f54641c..3e8c7320 100644 --- a/common/inc/gx_numeric_prompt.h +++ b/common/inc/gx_numeric_prompt.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,14 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_NUMERIC_PROMPT_H diff --git a/common/inc/gx_pixelmap_prompt.h b/common/inc/gx_pixelmap_prompt.h index 68f62def..db7075ce 100644 --- a/common/inc/gx_pixelmap_prompt.h +++ b/common/inc/gx_pixelmap_prompt.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,14 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_PIXELMAP_PROMPT_H diff --git a/common/inc/gx_progress_bar.h b/common/inc/gx_progress_bar.h index 1c4ec36f..b0f3ce23 100644 --- a/common/inc/gx_progress_bar.h +++ b/common/inc/gx_progress_bar.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,14 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_PROGRESS_BAR_H diff --git a/common/inc/gx_prompt.h b/common/inc/gx_prompt.h index 057bcca8..cea2fe4f 100644 --- a/common/inc/gx_prompt.h +++ b/common/inc/gx_prompt.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,15 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added new prototypes, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_PROMPT_H diff --git a/common/inc/gx_radial_progress_bar.h b/common/inc/gx_radial_progress_bar.h index ae136078..0c46a9a8 100644 --- a/common/inc/gx_radial_progress_bar.h +++ b/common/inc/gx_radial_progress_bar.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,14 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_RADIAL_PROGRESS_BAR_H diff --git a/common/inc/gx_radial_slider.h b/common/inc/gx_radial_slider.h index 3568a340..20736f87 100644 --- a/common/inc/gx_radial_slider.h +++ b/common/inc/gx_radial_slider.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,14 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_RADIAL_SLIDER_H diff --git a/common/inc/gx_rich_text_view.h b/common/inc/gx_rich_text_view.h index 4891982c..f8b8265f 100644 --- a/common/inc/gx_rich_text_view.h +++ b/common/inc/gx_rich_text_view.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,12 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_RICH_TEXT_VIEW_H #define GX_RICH_TEXT_VIEW_H diff --git a/common/inc/gx_screen_stack.h b/common/inc/gx_screen_stack.h index 50b759df..5dae1537 100644 --- a/common/inc/gx_screen_stack.h +++ b/common/inc/gx_screen_stack.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,14 +37,6 @@ /* data types and external references. It is assumed that gx_api.h */ /* and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_SCREEN_STACK_H diff --git a/common/inc/gx_scroll_wheel.h b/common/inc/gx_scroll_wheel.h index 126a4260..6f993c94 100644 --- a/common/inc/gx_scroll_wheel.h +++ b/common/inc/gx_scroll_wheel.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,27 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added new prototypes, */ -/* resulting in version 6.1 */ -/* 06-02-2021 Ting Zhu Modified comment(s), */ -/* added prototypes for */ -/* generic scroll wheel, */ -/* resulting in version 6.1.7 */ -/* */ -/* 10-31-2022 Kenneth Maxwell Modified comment(s), */ -/* changed prototype for */ -/* generic_scroll_wheel_scroll,*/ -/* resulting in version 6.2.0 */ -/* 03-08-2023 Ting Zhu Modified comment(s), */ -/* changed return type, */ -/* resulting in version 6.2.1 */ -/* */ /**************************************************************************/ #ifndef GX_SCROLL_WHEEL_H diff --git a/common/inc/gx_scrollbar.h b/common/inc/gx_scrollbar.h index 3d7dd6a7..78503988 100644 --- a/common/inc/gx_scrollbar.h +++ b/common/inc/gx_scrollbar.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,14 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_SCROLLBAR_H diff --git a/common/inc/gx_single_line_text_input.h b/common/inc/gx_single_line_text_input.h index 92c0ca8a..493879b3 100644 --- a/common/inc/gx_single_line_text_input.h +++ b/common/inc/gx_single_line_text_input.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,14 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_SINGLE_LINE_TEXT_INPUT_H diff --git a/common/inc/gx_slider.h b/common/inc/gx_slider.h index 2a52db8f..651dd968 100644 --- a/common/inc/gx_slider.h +++ b/common/inc/gx_slider.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,14 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_SLIDER_H diff --git a/common/inc/gx_sprite.h b/common/inc/gx_sprite.h index 0c489a34..6b97a0ae 100644 --- a/common/inc/gx_sprite.h +++ b/common/inc/gx_sprite.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,14 +37,6 @@ /* types and external references. It is assumed that gx_api.h and */ /* gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_SPRITE_H diff --git a/common/inc/gx_system.h b/common/inc/gx_system.h index 1193ca1f..de056ad1 100644 --- a/common/inc/gx_system.h +++ b/common/inc/gx_system.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,24 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* removed private string */ -/* delete declaration, */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* added GX_DISABLE_THREADX_ */ -/* TIMER_SOURCE configuration, */ -/* resulting in version 6.1.3 */ -/* 04-25-2022 Ting Zhu Modified comment(s), */ -/* added new parameter to */ -/* _gx_system_pen_flick_test, */ -/* resulting in version 6.1.11 */ -/* */ /**************************************************************************/ #ifndef GX_SYSTEM_H diff --git a/common/inc/gx_system_rtos_bind.h b/common/inc/gx_system_rtos_bind.h index 4cc28602..39d3ae12 100644 --- a/common/inc/gx_system_rtos_bind.h +++ b/common/inc/gx_system_rtos_bind.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -55,14 +56,6 @@ /* */ /* GUIX system serives */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_DISABLE_THREADX_BINDING diff --git a/common/inc/gx_text_input_cursor.h b/common/inc/gx_text_input_cursor.h index cda1c92a..a43358de 100644 --- a/common/inc/gx_text_input_cursor.h +++ b/common/inc/gx_text_input_cursor.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,14 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_CURSOR_H diff --git a/common/inc/gx_tree_view.h b/common/inc/gx_tree_view.h index 6f007076..0fe03b1a 100644 --- a/common/inc/gx_tree_view.h +++ b/common/inc/gx_tree_view.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -35,14 +36,6 @@ /* types and external references. It is assumed that gx_api.h and */ /* gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_TREE_VIEW_H diff --git a/common/inc/gx_user_sample.h b/common/inc/gx_user_sample.h index 37cdb451..d035ee48 100644 --- a/common/inc/gx_user_sample.h +++ b/common/inc/gx_user_sample.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -34,22 +35,6 @@ /* GUIX features by commenting out or including the definitions below */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Kenneth Maxwell Modified comment(s), */ -/* fixed typo, */ -/* resulting in version 6.1.10 */ -/* 10-31-2023 Ting Zhu Modified comment(s), added */ -/* GX_ENABLE_ARM_HELIUM and */ -/* partial canvas frame buffer */ -/* support configurations, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ #ifndef GX_USER_H @@ -69,11 +54,11 @@ change GUIX System Timer value. */ /* #define GX_SYSTEM_TIMER_MS 20 */ -/* This can be defined to insert an application specific data +/* This can be defined to insert an application specific data field into the GX_WIDGET control block */ /* #define GX_WIDGET_USER_DATA */ -/* This can be defined to enable the use of ARM Helium intrinsics for +/* This can be defined to enable the use of ARM Helium intrinsics for JPEG decoding. */ /* #define GX_ENABLE_ARM_HELIUM */ diff --git a/common/inc/gx_utility.h b/common/inc/gx_utility.h index 94903af2..0be1f74b 100644 --- a/common/inc/gx_utility.h +++ b/common/inc/gx_utility.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,26 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added new prototype, */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), added */ -/* bidi test reordering APIs, */ -/* resulting in version 6.1.3 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* rename RENESAS_DAVE2D */ -/* support conditional, */ -/* resulting in version 6.1.7 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* added new bidi text */ -/* reordering API, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ #ifndef GX_UTILITY_H diff --git a/common/inc/gx_widget.h b/common/inc/gx_widget.h index 21b77878..c0f745a3 100644 --- a/common/inc/gx_widget.h +++ b/common/inc/gx_widget.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,18 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Ting Zhu Modified comment(s), */ -/* added new child widget */ -/* search prototypes, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ #ifndef GX_WIDGET_H diff --git a/common/inc/gx_window.h b/common/inc/gx_window.h index 35a05162..8af5e120 100644 --- a/common/inc/gx_window.h +++ b/common/inc/gx_window.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -36,14 +37,6 @@ /* including all data types and external references. It is assumed */ /* that gx_api.h and gx_port.h have already been included. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_WINDOW_H diff --git a/common/src/gx_accordion_menu_create.c b/common/src/gx_accordion_menu_create.c index f03ea075..8d16b622 100644 --- a/common/src/gx_accordion_menu_create.c +++ b/common/src/gx_accordion_menu_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_accordion_menu_create(GX_ACCORDION_MENU *accordion, GX_CONST GX_CHAR *name, GX_WIDGET *parent, ULONG style, USHORT accordion_menu_id, GX_CONST GX_RECTANGLE *size) diff --git a/common/src/gx_accordion_menu_draw.c b/common/src/gx_accordion_menu_draw.c index eb572830..8bc6e094 100644 --- a/common/src/gx_accordion_menu_draw.c +++ b/common/src/gx_accordion_menu_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_accordion_menu_draw(GX_ACCORDION_MENU *accordion) { diff --git a/common/src/gx_accordion_menu_event_process.c b/common/src/gx_accordion_menu_event_process.c index d005bfeb..d50e0e85 100644 --- a/common/src/gx_accordion_menu_event_process.c +++ b/common/src/gx_accordion_menu_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* _gx_accordion_menu_shift_helper */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_accordion_menu_shift_helper(GX_ACCORDION_MENU *accordion, GX_WIDGET *animation_target, INT shift) { @@ -161,14 +154,6 @@ GX_RECTANGLE size; /* _gx_accordion_menu_close_animation_update */ /* _gx_accordion_menu_open_animation_update */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_accordion_menu_shift(GX_ACCORDION_MENU *accordion, GX_WIDGET *animation_target, INT shift) { @@ -268,17 +253,6 @@ GX_WIDGET *child; /* */ /* _gx_accordion_menu_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added NULL pointer check, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ static UINT _gx_accordion_menu_close_animation_update(GX_ACCORDION_MENU *accordion) { @@ -370,17 +344,6 @@ GX_WIDGET *child; /* */ /* _gx_accordion_menu_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added NULL pointer check, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ static UINT _gx_accordion_menu_open_animation_update(GX_ACCORDION_MENU *accordion) { @@ -473,14 +436,6 @@ GX_WIDGET *child; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_accordion_menu_pen_down_event_process(GX_ACCORDION_MENU *accordion, GX_EVENT *event_ptr) { @@ -561,14 +516,6 @@ GX_WIDGET *child = GX_NULL; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_accordion_menu_pen_up_event_process(GX_ACCORDION_MENU *accordion, GX_EVENT *event_ptr) { @@ -663,14 +610,6 @@ GX_VALUE y_shift; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_accordion_menu_event_process(GX_ACCORDION_MENU *accordion, GX_EVENT *event_ptr) { diff --git a/common/src/gx_accordion_menu_position.c b/common/src/gx_accordion_menu_position.c index 5b43f962..8b909aa5 100644 --- a/common/src/gx_accordion_menu_position.c +++ b/common/src/gx_accordion_menu_position.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* _gx_accordion_menu_position */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_accordion_menu_one_level_position(GX_ACCORDION_MENU *accordion) { @@ -194,14 +187,6 @@ GX_MENU_LIST *list; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_accordion_menu_position(GX_ACCORDION_MENU *accordion) { diff --git a/common/src/gx_animation_canvas_define.c b/common/src/gx_animation_canvas_define.c index 17ee0340..4c82a8a4 100644 --- a/common/src/gx_animation_canvas_define.c +++ b/common/src/gx_animation_canvas_define.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_animation_canvas_define(GX_ANIMATION *animation, GX_CANVAS *canvas) { diff --git a/common/src/gx_animation_complete.c b/common/src/gx_animation_complete.c index 047354ae..e5bf07bd 100644 --- a/common/src/gx_animation_complete.c +++ b/common/src/gx_animation_complete.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* _gx_animation_complete */ /* _gx_animation_slide_landing */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_animation_complete_event_send(GX_ANIMATION *animation) { @@ -134,17 +127,6 @@ GX_EVENT complete_event; /* */ /* _gx_animation_update */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_animation_complete(GX_ANIMATION *animation) diff --git a/common/src/gx_animation_create.c b/common/src/gx_animation_create.c index 01f39fcd..b7157b14 100644 --- a/common/src/gx_animation_create.c +++ b/common/src/gx_animation_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_animation_create(GX_ANIMATION *animation) { diff --git a/common/src/gx_animation_delete.c b/common/src/gx_animation_delete.c index d433a573..2050b85d 100644 --- a/common/src/gx_animation_delete.c +++ b/common/src/gx_animation_delete.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,12 +65,6 @@ /* GUIX Internal Code */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gx_animation_delete(GX_ANIMATION *target, GX_WIDGET *parent) diff --git a/common/src/gx_animation_drag_disable.c b/common/src/gx_animation_drag_disable.c index 543e3f11..34560a77 100644 --- a/common/src/gx_animation_drag_disable.c +++ b/common/src/gx_animation_drag_disable.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_animation_drag_disable(GX_ANIMATION *animation, GX_WIDGET *widget) { diff --git a/common/src/gx_animation_drag_enable.c b/common/src/gx_animation_drag_enable.c index 1961ec52..efb26f87 100644 --- a/common/src/gx_animation_drag_enable.c +++ b/common/src/gx_animation_drag_enable.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_animation_drag_enable(GX_ANIMATION *animation, GX_WIDGET *widget, GX_ANIMATION_INFO *info) { diff --git a/common/src/gx_animation_drag_event_process.c b/common/src/gx_animation_drag_event_process.c index 92124061..3847ba40 100644 --- a/common/src/gx_animation_drag_event_process.c +++ b/common/src/gx_animation_drag_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -73,17 +74,6 @@ /* */ /* _gx_animation_drag_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), */ -/* replaced abs with GX_ABS, */ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ static UINT _gx_animation_drag_event_check(GX_ANIMATION *animation, GX_EVENT *event_ptr) { @@ -311,14 +301,6 @@ INT shift; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_animation_drag_event_process(GX_WIDGET *widget, GX_EVENT *event_ptr) { diff --git a/common/src/gx_animation_drag_tracking.c b/common/src/gx_animation_drag_tracking.c index 60153559..289ce664 100644 --- a/common/src/gx_animation_drag_tracking.c +++ b/common/src/gx_animation_drag_tracking.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,18 +66,6 @@ /* */ /* _gx_animation_drag_event_check */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 04-25-2022 Ting Zhu Modified comment(s), */ -/* added canvas and block move */ -/* support, */ -/* resulting in version 6.1.11 */ -/* */ /**************************************************************************/ UINT _gx_animation_drag_tracking(GX_ANIMATION *animation, GX_POINT penpos) { diff --git a/common/src/gx_animation_drag_tracking_start.c b/common/src/gx_animation_drag_tracking_start.c index 4f8aa955..ba1fe06e 100644 --- a/common/src/gx_animation_drag_tracking_start.c +++ b/common/src/gx_animation_drag_tracking_start.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,17 +62,6 @@ /* */ /* _gx_animation_drag_event_check */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 04-25-2022 Ting Zhu Modified comment(s), */ -/* added canvas support, */ -/* resulting in version 6.1.11 */ -/* */ /**************************************************************************/ UINT _gx_animation_drag_tracking_start(GX_ANIMATION *animation, GX_POINT penpos) { diff --git a/common/src/gx_animation_landing_speed_set.c b/common/src/gx_animation_landing_speed_set.c index fe8684f1..bc6f98ef 100644 --- a/common/src/gx_animation_landing_speed_set.c +++ b/common/src/gx_animation_landing_speed_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_animation_landing_speed_set(GX_ANIMATION *animation, USHORT shift_per_step) { diff --git a/common/src/gx_animation_slide_landing.c b/common/src/gx_animation_slide_landing.c index 2247b583..424fba6d 100644 --- a/common/src/gx_animation_slide_landing.c +++ b/common/src/gx_animation_slide_landing.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,18 +67,6 @@ /* */ /* _gx_animation_drag_event_check */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 04-25-2022 Ting Zhu Modified comment(s), */ -/* added canvas and block move */ -/* support, */ -/* resulting in version 6.1.11 */ -/* */ /**************************************************************************/ UINT _gx_animation_slide_landing(GX_ANIMATION *animation) { diff --git a/common/src/gx_animation_slide_landing_start.c b/common/src/gx_animation_slide_landing_start.c index 9fb7f525..893753a7 100644 --- a/common/src/gx_animation_slide_landing_start.c +++ b/common/src/gx_animation_slide_landing_start.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,17 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 04-25-2022 Ting Zhu Modified comment(s), */ -/* added canvas support, */ -/* resulting in version 6.1.11 */ -/* */ /**************************************************************************/ UINT _gx_animation_slide_landing_start(GX_ANIMATION *animation) { diff --git a/common/src/gx_animation_start.c b/common/src/gx_animation_start.c index f4965fee..9e4b3084 100644 --- a/common/src/gx_animation_start.c +++ b/common/src/gx_animation_start.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,18 +73,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* added GX_DISABLE_THREADX_ */ -/* TIMER_SOURCE configuration, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ UINT _gx_animation_start(GX_ANIMATION *animation, GX_ANIMATION_INFO *info) { diff --git a/common/src/gx_animation_stop.c b/common/src/gx_animation_stop.c index 0ecbfd7a..065a8ab1 100644 --- a/common/src/gx_animation_stop.c +++ b/common/src/gx_animation_stop.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,18 +64,6 @@ /* _gx_animation_complete */ /* _gx_animation_update */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* added GX_DISABLE_THREADX_ */ -/* TIMER_SOURCE configuration, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ UINT _gx_animation_stop(GX_ANIMATION *animation) { @@ -106,7 +95,7 @@ GX_ANIMATION *previous; } else { - /* the animation is not the first, find the previous and + /* the animation is not the first, find the previous and adjust linked list */ previous = _gx_system_animation_list; diff --git a/common/src/gx_animation_update.c b/common/src/gx_animation_update.c index 14ebf137..460b6f4c 100644 --- a/common/src/gx_animation_update.c +++ b/common/src/gx_animation_update.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,20 +67,6 @@ /* */ /* _gx_system_timer_update Update active system timers */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), improve */ -/* linear animation accuracy, */ -/* resulting in version 6.1.3 */ -/* 04-25-2022 Ting Zhu Modified comment(s), */ -/* added block move support, */ -/* resulting in version 6.1.11 */ -/* */ /**************************************************************************/ VOID _gx_animation_update(VOID) { diff --git a/common/src/gx_binres_font_load.c b/common/src/gx_binres_font_load.c index b1c4a19a..8d139703 100644 --- a/common/src/gx_binres_font_load.c +++ b/common/src/gx_binres_font_load.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,12 +71,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ -/* */ /**************************************************************************/ UINT _gx_binres_font_load(GX_UBYTE *root_address, UINT font_index, GX_UBYTE *buffer, ULONG *buffer_size) { diff --git a/common/src/gx_binres_language_count_get.c b/common/src/gx_binres_language_count_get.c index bfd7b35d..36055799 100644 --- a/common/src/gx_binres_language_count_get.c +++ b/common/src/gx_binres_language_count_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT UINT _gx_binres_language_count_get(GX_UBYTE *root_address, GX_VALUE *put_count) diff --git a/common/src/gx_binres_language_info_load.c b/common/src/gx_binres_language_info_load.c index f25eb4e7..db1f62f1 100644 --- a/common/src/gx_binres_language_info_load.c +++ b/common/src/gx_binres_language_info_load.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT UINT _gx_binres_language_info_load(GX_UBYTE *root_address, GX_LANGUAGE_HEADER *put_info) diff --git a/common/src/gx_binres_language_table_load.c b/common/src/gx_binres_language_table_load.c index 66dd9c10..85c1b7cb 100644 --- a/common/src/gx_binres_language_table_load.c +++ b/common/src/gx_binres_language_table_load.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,15 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* removed use of memcpy, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT UINT _gx_binres_resource_header_load(GX_BINRES_DATA_INFO *info, GX_RESOURCE_HEADER *header) @@ -128,15 +120,6 @@ UINT _gx_binres_resource_header_load(GX_BINRES_DATA_INFO *info, GX_RESOURCE_HEAD /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* removed use of memcpy, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT UINT _gx_binres_string_header_load(GX_BINRES_DATA_INFO *info, GX_STRING_HEADER *header) @@ -188,15 +171,6 @@ UINT _gx_binres_string_header_load(GX_BINRES_DATA_INFO *info, GX_STRING_HEADER * /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* removed use of memcpy, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT UINT _gx_binres_language_header_load(GX_BINRES_DATA_INFO *info, GX_LANGUAGE_HEADER *header) @@ -253,17 +227,6 @@ UINT _gx_binres_language_header_load(GX_BINRES_DATA_INFO *info, GX_LANGUAGE_HEAD /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* test for langauge_count == 0*/ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT static UINT _gx_binres_language_table_buffer_allocate(GX_BINRES_DATA_INFO *info, GX_UBYTE language_table_type_size, GX_UBYTE string_table_type_size) @@ -366,15 +329,6 @@ UINT string_table_size; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* removed use of memcpy, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT #ifdef GX_ENABLE_DEPRECATED_STRING_API @@ -547,14 +501,6 @@ GX_CHAR get_char; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT UINT _gx_binres_language_table_load_ext(GX_UBYTE *root_address, GX_STRING ***returned_language_table) diff --git a/common/src/gx_binres_pixelmap_load.c b/common/src/gx_binres_pixelmap_load.c index 1c972684..4e87947e 100644 --- a/common/src/gx_binres_pixelmap_load.c +++ b/common/src/gx_binres_pixelmap_load.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,12 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ -/* */ /**************************************************************************/ UINT _gx_binres_standalone_resource_seek(GX_BINRES_DATA_INFO *info, UINT res_index) { @@ -134,12 +129,6 @@ ULONG count; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ -/* */ /**************************************************************************/ UINT _gx_binres_pixelmap_load(GX_UBYTE *root_address, UINT map_index, GX_PIXELMAP *pixelmap) { diff --git a/common/src/gx_binres_theme_load.c b/common/src/gx_binres_theme_load.c index 5c63ebd1..ece10280 100644 --- a/common/src/gx_binres_theme_load.c +++ b/common/src/gx_binres_theme_load.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,15 +64,6 @@ extern GX_CONST GX_FONT _gx_system_font_8bpp; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* removed use of memcpy, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT @@ -223,15 +215,6 @@ static UINT _gx_binres_theme_header_load(GX_BINRES_DATA_INFO *info, GX_THEME_HEA /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* removed use of memcpy, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT static UINT _gx_binres_color_header_load(GX_BINRES_DATA_INFO *info, GX_COLOR_HEADER *header) @@ -280,15 +263,6 @@ static UINT _gx_binres_color_header_load(GX_BINRES_DATA_INFO *info, GX_COLOR_HEA /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* removed use of memcpy, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT static UINT _gx_binres_palette_header_load(GX_BINRES_DATA_INFO *info, GX_PALETTE_HEADER *header) @@ -337,18 +311,6 @@ static UINT _gx_binres_palette_header_load(GX_BINRES_DATA_INFO *info, GX_PALETTE /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* removed use of memcpy, */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* made the function public, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT UINT _gx_binres_font_header_load(GX_BINRES_DATA_INFO *info, GX_FONT_HEADER *header) @@ -414,15 +376,6 @@ UINT _gx_binres_font_header_load(GX_BINRES_DATA_INFO *info, GX_FONT_HEADER *head /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* removed use of memcpy, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT static UINT _gx_binres_page_header_load(GX_BINRES_DATA_INFO *info, GX_PAGE_HEADER *header) @@ -503,17 +456,6 @@ ULONG read_data = 0; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* removed use of memcpy, and */ -/* updated with binary */ -/* resource layout change, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT static UINT _gx_binres_glyph_header_load(GX_BINRES_DATA_INFO *info, GX_GLYPH_HEADER *header) @@ -587,15 +529,6 @@ static UINT _gx_binres_glyph_header_load(GX_BINRES_DATA_INFO *info, GX_GLYPH_HEA /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* removed use of memcpy, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_FONT_KERNING_SUPPORT #ifdef GX_BINARY_RESOURCE_SUPPORT @@ -642,18 +575,6 @@ static UINT _gx_binres_kerning_glyph_header_load(GX_BINRES_DATA_INFO *info, GX_K /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* removed use of memcpy, */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added magic number check, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT static UINT _gx_binres_pixelmap_header_load(GX_BINRES_DATA_INFO *info, GX_PIXELMAP_HEADER *header) @@ -739,12 +660,6 @@ static UINT _gx_binres_pixelmap_header_load(GX_BINRES_DATA_INFO *info, GX_PIXELM /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT UINT _gx_binres_font_buffer_size_get(GX_BINRES_DATA_INFO *info, UINT *buffer_size, GX_BOOL reset_read_offset) @@ -885,17 +800,6 @@ UINT old_offset; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT static UINT _gx_binres_theme_buffer_allocate(GX_BINRES_DATA_INFO *info, INT theme_id) @@ -1034,16 +938,6 @@ UINT temp; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* updated with binary */ -/* resource layout change, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT static UINT _gx_binres_glyphs_address_get(GX_BINRES_DATA_INFO *info, USHORT glyph_count, GX_CONST GX_GLYPH **returned_glyphs) @@ -1124,16 +1018,6 @@ USHORT index = 0; /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* updated with binary */ -/* resource layout change, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_FONT_KERNING_SUPPORT #ifdef GX_BINARY_RESOURCE_SUPPORT @@ -1223,16 +1107,6 @@ USHORT index = 0; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* updated with binary */ -/* resource layout change, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT static UINT _gx_binres_compressed_glyphs_address_get(GX_BINRES_DATA_INFO *info, USHORT glyph_count, @@ -1314,12 +1188,6 @@ USHORT index = 0; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT UINT _gx_binres_one_font_load(GX_BINRES_DATA_INFO *info, GX_FONT **return_font) @@ -1484,14 +1352,6 @@ UINT read_offset = 0; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT static UINT _gx_binres_color_table_load(GX_BINRES_DATA_INFO *info, USHORT color_count, GX_COLOR **returned_color_table) @@ -1553,14 +1413,6 @@ GX_COLOR *color_table = GX_NULL; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT static UINT _gx_binres_palette_table_load(GX_BINRES_DATA_INFO *info, USHORT color_count, GX_COLOR **returned_palette_table) @@ -1622,17 +1474,6 @@ GX_COLOR *palette_table = GX_NULL; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT static UINT _gx_binres_font_table_load(GX_BINRES_DATA_INFO *info, USHORT table_size, GX_FONT ***returned_font_table) @@ -1692,12 +1533,6 @@ USHORT index; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT UINT _gx_binres_one_pixelmap_load(GX_BINRES_DATA_INFO *info, GX_PIXELMAP **returned_pixelmap, USHORT *map_id) @@ -1819,17 +1654,6 @@ GX_PIXELMAP *pixelmap; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ static UINT _gx_binres_pixelmap_table_load(GX_BINRES_DATA_INFO *info, USHORT table_size, GX_PIXELMAP **pixelmap_table) { @@ -1900,14 +1724,6 @@ GX_PIXELMAP *pixelmap; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT UINT _gx_binres_theme_load(GX_UBYTE *root_address, INT theme_id, GX_THEME **returned_theme) diff --git a/common/src/gx_brush_default.c b/common/src/gx_brush_default.c index 6a4f56ae..1ee7b749 100644 --- a/common/src/gx_brush_default.c +++ b/common/src/gx_brush_default.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,14 +58,6 @@ /* */ /* _gx_context_brush_default */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_brush_default(GX_BRUSH *brush) { diff --git a/common/src/gx_brush_define.c b/common/src/gx_brush_define.c index 1a829e17..291129da 100644 --- a/common/src/gx_brush_define.c +++ b/common/src/gx_brush_define.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* _gx_context_brush_define Define the brush for context */ /* _gx_context_raw_brush_define Define the brush for context */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_brush_define(GX_BRUSH *brush, GX_COLOR line_color, GX_COLOR fill_color, UINT style) { diff --git a/common/src/gx_button_background_draw.c b/common/src/gx_button_background_draw.c index db5c385c..e6d0601f 100644 --- a/common/src/gx_button_background_draw.c +++ b/common/src/gx_button_background_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* _gx_icon_button_draw */ /* _gx_text_button_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_button_background_draw(GX_BUTTON *button) { diff --git a/common/src/gx_button_create.c b/common/src/gx_button_create.c index 774a2f62..472885e6 100644 --- a/common/src/gx_button_create.c +++ b/common/src/gx_button_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -77,15 +78,6 @@ /* _gx_scroll_thumb_create */ /* _gx_text_button_create */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* fixed compiler warnings, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_button_create(GX_BUTTON *button, GX_CONST GX_CHAR *name, GX_WIDGET *parent, ULONG style, USHORT button_id, GX_CONST GX_RECTANGLE *size) diff --git a/common/src/gx_button_deselect.c b/common/src/gx_button_deselect.c index 83190462..a163a962 100644 --- a/common/src/gx_button_deselect.c +++ b/common/src/gx_button_deselect.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_button_deselect(GX_BUTTON *button, GX_BOOL generate_event) { diff --git a/common/src/gx_button_draw.c b/common/src/gx_button_draw.c index c30340b7..a31449cc 100644 --- a/common/src/gx_button_draw.c +++ b/common/src/gx_button_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_button_draw(GX_BUTTON *button) { diff --git a/common/src/gx_button_event_process.c b/common/src/gx_button_event_process.c index 7ffa5d95..c169d2d1 100644 --- a/common/src/gx_button_event_process.c +++ b/common/src/gx_button_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,14 +71,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_button_event_process(GX_BUTTON *button, GX_EVENT *event_ptr) { diff --git a/common/src/gx_button_select.c b/common/src/gx_button_select.c index ba82892e..62882638 100644 --- a/common/src/gx_button_select.c +++ b/common/src/gx_button_select.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_button_select(GX_BUTTON *button) { diff --git a/common/src/gx_button_siblings_deselect.c b/common/src/gx_button_siblings_deselect.c index b3a8a12d..e4a302d3 100644 --- a/common/src/gx_button_siblings_deselect.c +++ b/common/src/gx_button_siblings_deselect.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* _gx_button_select */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_button_siblings_deselect(GX_BUTTON *button) { diff --git a/common/src/gx_canvas_alpha_set.c b/common/src/gx_canvas_alpha_set.c index d9ee8f7d..ce5a7654 100644 --- a/common/src/gx_canvas_alpha_set.c +++ b/common/src/gx_canvas_alpha_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* _gx_animation_start */ /* _gx_animation_update */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_canvas_alpha_set(GX_CANVAS *canvas, GX_UBYTE alpha) { diff --git a/common/src/gx_canvas_arc_draw.c b/common/src/gx_canvas_arc_draw.c index ba9d2cf2..f36c6a70 100644 --- a/common/src/gx_canvas_arc_draw.c +++ b/common/src/gx_canvas_arc_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ /* */ /* Application code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ARC_DRAWING_SUPPORT) UINT _gx_canvas_arc_draw(INT xcenter, INT ycenter, UINT r, INT start_angle, INT end_angle) diff --git a/common/src/gx_canvas_block_move.c b/common/src/gx_canvas_block_move.c index 7048f4f6..1d71a55b 100644 --- a/common/src/gx_canvas_block_move.c +++ b/common/src/gx_canvas_block_move.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,17 +71,6 @@ /* Application Code */ /* _gx_window_client_scroll */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added canvas status check, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ UINT _gx_canvas_block_move(GX_RECTANGLE *block, GX_VALUE x_shift, GX_VALUE y_shift, GX_RECTANGLE *dirty) { diff --git a/common/src/gx_canvas_circle_draw.c b/common/src/gx_canvas_circle_draw.c index c018a8db..070c1c60 100644 --- a/common/src/gx_canvas_circle_draw.c +++ b/common/src/gx_canvas_circle_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* */ /* Application code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ARC_DRAWING_SUPPORT) UINT _gx_canvas_circle_draw(INT xcenter, INT ycenter, UINT r) diff --git a/common/src/gx_canvas_composite_create.c b/common/src/gx_canvas_composite_create.c index a4a9173c..fb4849b9 100644 --- a/common/src/gx_canvas_composite_create.c +++ b/common/src/gx_canvas_composite_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* */ /* _gx_system_canvas_refresh */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_BOOL _gx_canvas_composite_create(GX_CANVAS **return_composite) { diff --git a/common/src/gx_canvas_create.c b/common/src/gx_canvas_create.c index 19ff6613..feb3e5ae 100644 --- a/common/src/gx_canvas_create.c +++ b/common/src/gx_canvas_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,20 +72,6 @@ /* Application Code */ /* _gx_animation_canvas_define */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.3 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added initilization to the */ -/* canvas members, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ UINT _gx_canvas_create(GX_CANVAS *canvas, GX_CONST GX_CHAR *name, GX_DISPLAY *display, UINT type, UINT width, UINT height, GX_COLOR *memory_area, ULONG memory_size) diff --git a/common/src/gx_canvas_delete.c b/common/src/gx_canvas_delete.c index 39ee3919..d47b8f26 100644 --- a/common/src/gx_canvas_delete.c +++ b/common/src/gx_canvas_delete.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_canvas_delete(GX_CANVAS *canvas) { diff --git a/common/src/gx_canvas_dirty_mark.c b/common/src/gx_canvas_dirty_mark.c index 7c10ffc6..51a7009f 100644 --- a/common/src/gx_canvas_dirty_mark.c +++ b/common/src/gx_canvas_dirty_mark.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_canvas_dirty_mark(GX_CANVAS *canvas, GX_RECTANGLE *area) { diff --git a/common/src/gx_canvas_drawing_complete.c b/common/src/gx_canvas_drawing_complete.c index de28165c..31a207a1 100644 --- a/common/src/gx_canvas_drawing_complete.c +++ b/common/src/gx_canvas_drawing_complete.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_canvas_drawing_complete(GX_CANVAS *canvas, GX_BOOL flush) { diff --git a/common/src/gx_canvas_drawing_initiate.c b/common/src/gx_canvas_drawing_initiate.c index 787a9b2f..cc08e4a8 100644 --- a/common/src/gx_canvas_drawing_initiate.c +++ b/common/src/gx_canvas_drawing_initiate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,24 +73,6 @@ /* _gx_widget_children_draw */ /* _gx_window_client_scroll */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), added */ -/* display rotation support, */ -/* resulting in version 6.1.3 */ -/* 03-02-2021 Kenneth Maxwell Modified comment(s), added */ -/* flip rotation support, */ -/* resulting in version 6.1.5 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ UINT _gx_canvas_drawing_initiate(GX_CANVAS *canvas, GX_WIDGET *who, GX_RECTANGLE *dirty_area) { diff --git a/common/src/gx_canvas_ellipse_draw.c b/common/src/gx_canvas_ellipse_draw.c index df18be70..b0356782 100644 --- a/common/src/gx_canvas_ellipse_draw.c +++ b/common/src/gx_canvas_ellipse_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* */ /* Application code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ARC_DRAWING_SUPPORT) UINT _gx_canvas_ellipse_draw(INT xcenter, INT ycenter, INT a, INT b) diff --git a/common/src/gx_canvas_glyphs_draw.c b/common/src/gx_canvas_glyphs_draw.c index 125f3ee8..60e77897 100644 --- a/common/src/gx_canvas_glyphs_draw.c +++ b/common/src/gx_canvas_glyphs_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ /* */ /* _gx_canvas_glyph_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_canvas_kerning_glyphs_draw(GX_DRAW_CONTEXT *context, GX_FONT *font, GX_POINT *draw_position, GX_CONST GX_STRING *string, GX_RECTANGLE *view, VOID (*draw_glyph)(GX_DRAW_CONTEXT *, GX_RECTANGLE *, GX_POINT *, GX_CONST GX_GLYPH *)) @@ -252,14 +245,6 @@ UINT ret; /* */ /* _gx_canvas_glyph_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_canvas_compressed_glyphs_draw(GX_DRAW_CONTEXT *context, GX_FONT *font, GX_POINT *draw_position, GX_CONST GX_STRING *string, GX_RECTANGLE *view, VOID (*draw_glyph)(GX_DRAW_CONTEXT *, GX_RECTANGLE *, GX_POINT *, GX_CONST GX_GLYPH *)) @@ -433,14 +418,6 @@ UINT index = 0; /* */ /* _gx_canvas_glyph_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_canvas_generic_glyphs_draw(GX_DRAW_CONTEXT *context, GX_FONT *font, GX_POINT *draw_position, GX_CONST GX_STRING *string, GX_RECTANGLE *view, VOID (*draw_glyph)(GX_DRAW_CONTEXT *, GX_RECTANGLE *, GX_POINT *, GX_CONST GX_GLYPH *)) @@ -621,14 +598,6 @@ UINT index = 0; /* _gx_canvas_kerning_glyphs_draw */ /* _gx_canvas_generic_glyphs_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_canvas_glyphs_draw(GX_DRAW_CONTEXT *context, GX_POINT *draw_position, GX_CONST GX_STRING *string, GX_RECTANGLE *view, diff --git a/common/src/gx_canvas_hardware_layer_bind.c b/common/src/gx_canvas_hardware_layer_bind.c index 8fc41381..5c68f217 100644 --- a/common/src/gx_canvas_hardware_layer_bind.c +++ b/common/src/gx_canvas_hardware_layer_bind.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_canvas_hardware_layer_bind(GX_CANVAS *canvas, INT layer) { diff --git a/common/src/gx_canvas_hide.c b/common/src/gx_canvas_hide.c index f45325d6..93c5d963 100644 --- a/common/src/gx_canvas_hide.c +++ b/common/src/gx_canvas_hide.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,17 +60,6 @@ /* */ /* Application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* modified canvas dirty logic,*/ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ UINT _gx_canvas_hide(GX_CANVAS *canvas) { diff --git a/common/src/gx_canvas_line_draw.c b/common/src/gx_canvas_line_draw.c index d871bbdf..6eec0062 100644 --- a/common/src/gx_canvas_line_draw.c +++ b/common/src/gx_canvas_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -79,17 +80,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), fixed a */ -/* pattern line draw issue, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ UINT _gx_canvas_line_draw(GX_VALUE x_start, GX_VALUE y_start, GX_VALUE x_end, GX_VALUE y_end) { diff --git a/common/src/gx_canvas_memory_define.c b/common/src/gx_canvas_memory_define.c index 1bceed27..74272a23 100644 --- a/common/src/gx_canvas_memory_define.c +++ b/common/src/gx_canvas_memory_define.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,18 +60,6 @@ /* */ /* Application software */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ UINT _gx_canvas_memory_define(GX_CANVAS *canvas, GX_COLOR *memory, ULONG memsize) { diff --git a/common/src/gx_canvas_mouse_define.c b/common/src/gx_canvas_mouse_define.c index dff94a1b..4ccdf355 100644 --- a/common/src/gx_canvas_mouse_define.c +++ b/common/src/gx_canvas_mouse_define.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_MOUSE_SUPPORT) UINT _gx_canvas_mouse_define(GX_CANVAS *canvas, GX_MOUSE_CURSOR_INFO *info) diff --git a/common/src/gx_canvas_mouse_hide.c b/common/src/gx_canvas_mouse_hide.c index 680566a0..0cd6c459 100644 --- a/common/src/gx_canvas_mouse_hide.c +++ b/common/src/gx_canvas_mouse_hide.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,14 +58,6 @@ /* */ /* Application code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_MOUSE_SUPPORT) UINT _gx_canvas_mouse_hide(GX_CANVAS *canvas) diff --git a/common/src/gx_canvas_mouse_show.c b/common/src/gx_canvas_mouse_show.c index f3cd5f44..7fe6a536 100644 --- a/common/src/gx_canvas_mouse_show.c +++ b/common/src/gx_canvas_mouse_show.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,17 +58,6 @@ /* */ /* Application code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added canvas status check, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ #if defined(GX_MOUSE_SUPPORT) UINT _gx_canvas_mouse_show(GX_CANVAS *canvas) diff --git a/common/src/gx_canvas_offset_set.c b/common/src/gx_canvas_offset_set.c index b6d1a128..a668ee5c 100644 --- a/common/src/gx_canvas_offset_set.c +++ b/common/src/gx_canvas_offset_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,17 +63,6 @@ /* _gx_animation_start */ /* _gx_animation_update */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 04-25-2022 Ting Zhu Modified comment(s), fixed */ -/* canvas dirty mark logic, */ -/* resulting in version 6.1.11 */ -/* */ /**************************************************************************/ UINT _gx_canvas_offset_set(GX_CANVAS *canvas, GX_VALUE xoffset, GX_VALUE yoffset) { diff --git a/common/src/gx_canvas_pie_draw.c b/common/src/gx_canvas_pie_draw.c index 168da75c..56ace066 100644 --- a/common/src/gx_canvas_pie_draw.c +++ b/common/src/gx_canvas_pie_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -75,14 +76,6 @@ /* */ /* Application code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ARC_DRAWING_SUPPORT) UINT _gx_canvas_pie_draw(INT xcenter, INT ycenter, UINT r, INT start_angle, INT end_angle) diff --git a/common/src/gx_canvas_pixel_draw.c b/common/src/gx_canvas_pixel_draw.c index 7d52ef9b..7326d44f 100644 --- a/common/src/gx_canvas_pixel_draw.c +++ b/common/src/gx_canvas_pixel_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* Application Code */ /* _gx_widget_border_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_canvas_pixel_draw(GX_POINT position) { diff --git a/common/src/gx_canvas_pixelmap_blend.c b/common/src/gx_canvas_pixelmap_blend.c index 82b94ae7..fb41f9e3 100644 --- a/common/src/gx_canvas_pixelmap_blend.c +++ b/common/src/gx_canvas_pixelmap_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,14 +71,6 @@ /* Application Code */ /* _gx_sprite_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_canvas_pixelmap_blend(GX_VALUE x_position, GX_VALUE y_position, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) diff --git a/common/src/gx_canvas_pixelmap_draw.c b/common/src/gx_canvas_pixelmap_draw.c index 1f026fc1..bc77af3f 100644 --- a/common/src/gx_canvas_pixelmap_draw.c +++ b/common/src/gx_canvas_pixelmap_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -83,14 +84,6 @@ /* _gx_window_draw */ /* _gx_scroll_thumb_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_canvas_pixelmap_draw(GX_VALUE x_position, GX_VALUE y_position, GX_PIXELMAP *pixelmap) { diff --git a/common/src/gx_canvas_pixelmap_get.c b/common/src/gx_canvas_pixelmap_get.c index 0e5b40e5..c948e79e 100644 --- a/common/src/gx_canvas_pixelmap_get.c +++ b/common/src/gx_canvas_pixelmap_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_canvas_pixelmap_get(GX_PIXELMAP *pixelmap) { diff --git a/common/src/gx_canvas_pixelmap_rotate.c b/common/src/gx_canvas_pixelmap_rotate.c index 1c2b1bae..046a956d 100644 --- a/common/src/gx_canvas_pixelmap_rotate.c +++ b/common/src/gx_canvas_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_canvas_rotated_pixelmap_bound_calculate(GX_RECTANGLE *rect, INT angle, INT rot_cx, INT rot_cy) { @@ -208,18 +201,6 @@ INT y; /* */ /* Application code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed duplicate variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gx_canvas_pixelmap_rotate(GX_VALUE x_position, GX_VALUE y_position, GX_PIXELMAP *pixelmap, INT angle, INT rot_cx, INT rot_cy) diff --git a/common/src/gx_canvas_pixelmap_tile.c b/common/src/gx_canvas_pixelmap_tile.c index 61fb47d8..9b1aa6d5 100644 --- a/common/src/gx_canvas_pixelmap_tile.c +++ b/common/src/gx_canvas_pixelmap_tile.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_canvas_pixelmap_tile(GX_RECTANGLE *fill, GX_PIXELMAP *pixelmap) { diff --git a/common/src/gx_canvas_polygon_draw.c b/common/src/gx_canvas_polygon_draw.c index 30c73375..7e635fac 100644 --- a/common/src/gx_canvas_polygon_draw.c +++ b/common/src/gx_canvas_polygon_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_canvas_polygon_draw(GX_POINT *point_array, INT number_of_points) { diff --git a/common/src/gx_canvas_rectangle_draw.c b/common/src/gx_canvas_rectangle_draw.c index 68651d4c..481e50a5 100644 --- a/common/src/gx_canvas_rectangle_draw.c +++ b/common/src/gx_canvas_rectangle_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* _gx_canvas_rectangle_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_canvas_rectangle_fill(GX_RECTANGLE *rectangle, GX_COLOR fill_color) { @@ -160,14 +153,6 @@ GX_VALUE rectangle_height; /* _gx_slider_needle_draw */ /* _gx_widget_border_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_canvas_rectangle_draw(GX_RECTANGLE *rectangle) { diff --git a/common/src/gx_canvas_rotated_text_draw.c b/common/src/gx_canvas_rotated_text_draw.c index 9fccedb2..4d5c7d84 100644 --- a/common/src/gx_canvas_rotated_text_draw.c +++ b/common/src/gx_canvas_rotated_text_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Software */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_canvas_rotated_text_draw(GX_CONST GX_CHAR *text, @@ -136,18 +129,6 @@ UINT status; /* */ /* Application Software */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* rename RENESAS_DAVE2D */ -/* support conditional, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gx_canvas_rotated_text_draw_ext(GX_CONST GX_STRING *text, GX_VALUE xcenter, diff --git a/common/src/gx_canvas_shift.c b/common/src/gx_canvas_shift.c index ff7c83dd..2da1f632 100644 --- a/common/src/gx_canvas_shift.c +++ b/common/src/gx_canvas_shift.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* _gx_window_root_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_canvas_shift(GX_CANVAS *canvas, GX_VALUE x, GX_VALUE y) { diff --git a/common/src/gx_canvas_show.c b/common/src/gx_canvas_show.c index 8c39564e..0290d2db 100644 --- a/common/src/gx_canvas_show.c +++ b/common/src/gx_canvas_show.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_canvas_show(GX_CANVAS *canvas) { diff --git a/common/src/gx_canvas_text_draw.c b/common/src/gx_canvas_text_draw.c index 44f705d7..067ea239 100644 --- a/common/src/gx_canvas_text_draw.c +++ b/common/src/gx_canvas_text_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* _gx_single_line_text_input_draw */ /* _gx_widget_text_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_canvas_text_draw(GX_VALUE x_start, GX_VALUE y_start, GX_CONST GX_CHAR *text, INT length) @@ -143,18 +136,6 @@ UINT status; /* _gx_single_line_text_input_draw */ /* _gx_widget_text_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* replaced font format value */ -/* with macro defines, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ UINT _gx_canvas_text_draw_ext(GX_VALUE x_start, GX_VALUE y_start, GX_CONST GX_STRING *string) { @@ -323,12 +304,6 @@ GX_FONT *font = context -> gx_draw_context_brush.gx_brush_font; /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 04-25-2022 Ting Zhu Initial Version 6.1.11 */ -/* */ /**************************************************************************/ UINT _gx_canvas_aligned_text_draw(GX_CONST GX_STRING *string, GX_RECTANGLE *rectangle, ULONG alignment) { diff --git a/common/src/gx_checkbox_create.c b/common/src/gx_checkbox_create.c index c0676fef..7890f4b2 100644 --- a/common/src/gx_checkbox_create.c +++ b/common/src/gx_checkbox_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,15 +67,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* fixed compiler warnings, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_checkbox_create(GX_CHECKBOX *checkbox, GX_CONST GX_CHAR *name, GX_WIDGET *parent, GX_RESOURCE_ID text_id, ULONG style, USHORT checkbox_id, diff --git a/common/src/gx_checkbox_draw.c b/common/src/gx_checkbox_draw.c index c67e5bf0..cb582647 100644 --- a/common/src/gx_checkbox_draw.c +++ b/common/src/gx_checkbox_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,15 +69,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_checkbox_draw(GX_CHECKBOX *checkbox) { diff --git a/common/src/gx_checkbox_event_process.c b/common/src/gx_checkbox_event_process.c index f2f8dd34..e02ccfef 100644 --- a/common/src/gx_checkbox_event_process.c +++ b/common/src/gx_checkbox_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,15 +64,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* updated default call, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_checkbox_event_process(GX_CHECKBOX *checkbox, GX_EVENT *event_ptr) { diff --git a/common/src/gx_checkbox_pixelmap_set.c b/common/src/gx_checkbox_pixelmap_set.c index 16b79dfa..f7aa3fe8 100644 --- a/common/src/gx_checkbox_pixelmap_set.c +++ b/common/src/gx_checkbox_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,14 +72,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_checkbox_pixelmap_set(GX_CHECKBOX *checkbox, GX_RESOURCE_ID unchecked_id, diff --git a/common/src/gx_checkbox_select.c b/common/src/gx_checkbox_select.c index eeb3c5a8..54d61aa1 100644 --- a/common/src/gx_checkbox_select.c +++ b/common/src/gx_checkbox_select.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_checkbox_select(GX_CHECKBOX *checkbox) { diff --git a/common/src/gx_circular_gauge_angle_get.c b/common/src/gx_circular_gauge_angle_get.c index a8e4d8a2..fce9ca89 100644 --- a/common/src/gx_circular_gauge_angle_get.c +++ b/common/src/gx_circular_gauge_angle_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_circular_gauge_angle_get(GX_CIRCULAR_GAUGE *gauge, INT *angle) diff --git a/common/src/gx_circular_gauge_angle_increment_calculate.c b/common/src/gx_circular_gauge_angle_increment_calculate.c index e8016f9f..913a0d7c 100644 --- a/common/src/gx_circular_gauge_angle_increment_calculate.c +++ b/common/src/gx_circular_gauge_angle_increment_calculate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_circular_gauge_angle_increment_calculate(GX_CIRCULAR_GAUGE *gauge) diff --git a/common/src/gx_circular_gauge_angle_set.c b/common/src/gx_circular_gauge_angle_set.c index e1ceae15..99af86ef 100644 --- a/common/src/gx_circular_gauge_angle_set.c +++ b/common/src/gx_circular_gauge_angle_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_circular_gauge_angle_set(GX_CIRCULAR_GAUGE *gauge, INT angle) diff --git a/common/src/gx_circular_gauge_animation_set.c b/common/src/gx_circular_gauge_animation_set.c index f6c84d93..55afea11 100644 --- a/common/src/gx_circular_gauge_animation_set.c +++ b/common/src/gx_circular_gauge_animation_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_circular_gauge_animation_set(GX_CIRCULAR_GAUGE *gauge, INT steps, INT delay) { diff --git a/common/src/gx_circular_gauge_background_draw.c b/common/src/gx_circular_gauge_background_draw.c index bac1263c..133602a5 100644 --- a/common/src/gx_circular_gauge_background_draw.c +++ b/common/src/gx_circular_gauge_background_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,19 +73,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-15-2021 Kenneth Maxwell Modified comment(s), */ -/* fixed the order of setting */ -/* the display driver callback */ -/* and drawing the background, */ -/* resulting in version 6.1.9 */ -/* */ /**************************************************************************/ VOID _gx_circular_gauge_background_draw(GX_CIRCULAR_GAUGE *gauge) { diff --git a/common/src/gx_circular_gauge_create.c b/common/src/gx_circular_gauge_create.c index 95f6143f..db5a479a 100644 --- a/common/src/gx_circular_gauge_create.c +++ b/common/src/gx_circular_gauge_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -78,17 +79,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* added resize notify status, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT _gx_circular_gauge_create(GX_CIRCULAR_GAUGE *gauge, GX_CONST GX_CHAR *name, diff --git a/common/src/gx_circular_gauge_draw.c b/common/src/gx_circular_gauge_draw.c index b5e4cee3..3c4b5e21 100644 --- a/common/src/gx_circular_gauge_draw.c +++ b/common/src/gx_circular_gauge_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_circular_gauge_draw(GX_CIRCULAR_GAUGE *gauge) diff --git a/common/src/gx_circular_gauge_event_process.c b/common/src/gx_circular_gauge_event_process.c index 21103104..40ad7d63 100644 --- a/common/src/gx_circular_gauge_event_process.c +++ b/common/src/gx_circular_gauge_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,18 +72,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), improved */ -/* logic to recalculate needle */ -/* rectangle on resize event, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT _gx_circular_gauge_event_process(GX_CIRCULAR_GAUGE *gauge, GX_EVENT *event_ptr) { diff --git a/common/src/gx_circular_gauge_needle_dirty_mark.c b/common/src/gx_circular_gauge_needle_dirty_mark.c index a2111b53..975e6369 100644 --- a/common/src/gx_circular_gauge_needle_dirty_mark.c +++ b/common/src/gx_circular_gauge_needle_dirty_mark.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_circular_gauge_needle_dirty_mark(GX_CIRCULAR_GAUGE *gauge) { diff --git a/common/src/gx_circular_gauge_needle_rectangle_calculate.c b/common/src/gx_circular_gauge_needle_rectangle_calculate.c index 987dd9c0..90daaa34 100644 --- a/common/src/gx_circular_gauge_needle_rectangle_calculate.c +++ b/common/src/gx_circular_gauge_needle_rectangle_calculate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,17 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Kenneth Maxwell Modified comment(s), */ -/* corrected logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT _gx_circular_gauge_needle_rectangle_calculate(GX_CIRCULAR_GAUGE *gauge, INT angle, GX_RECTANGLE *rect) { diff --git a/common/src/gx_circular_gauge_needle_rotate.c b/common/src/gx_circular_gauge_needle_rotate.c index ba042d3e..1e692eb0 100644 --- a/common/src/gx_circular_gauge_needle_rotate.c +++ b/common/src/gx_circular_gauge_needle_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_circular_gauge_needle_rotate(GX_CIRCULAR_GAUGE *gauge) { diff --git a/common/src/gx_context_brush_default.c b/common/src/gx_context_brush_default.c index 79e2908d..9a439a57 100644 --- a/common/src/gx_context_brush_default.c +++ b/common/src/gx_context_brush_default.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* _gx_canvas_drawing_initiate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_context_brush_default(GX_DRAW_CONTEXT *context) diff --git a/common/src/gx_context_brush_define.c b/common/src/gx_context_brush_define.c index 3796d9c5..e49589a9 100644 --- a/common/src/gx_context_brush_define.c +++ b/common/src/gx_context_brush_define.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* _gx_slider_needle_draw */ /* _gx_widget_border_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_context_brush_define(GX_RESOURCE_ID line_color_id, GX_RESOURCE_ID fill_color_id, UINT style) { diff --git a/common/src/gx_context_brush_get.c b/common/src/gx_context_brush_get.c index 095c8450..7b064500 100644 --- a/common/src/gx_context_brush_get.c +++ b/common/src/gx_context_brush_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* _gx_single_line_text_input_draw */ /* _gx_widget_text_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_context_brush_get(GX_BRUSH **return_brush) { diff --git a/common/src/gx_context_brush_pattern_set.c b/common/src/gx_context_brush_pattern_set.c index 4b12abf9..7bb87ca2 100644 --- a/common/src/gx_context_brush_pattern_set.c +++ b/common/src/gx_context_brush_pattern_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_context_brush_pattern_set(ULONG pattern) { diff --git a/common/src/gx_context_brush_set.c b/common/src/gx_context_brush_set.c index 6385d994..cc986234 100644 --- a/common/src/gx_context_brush_set.c +++ b/common/src/gx_context_brush_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_context_brush_set(GX_BRUSH *brush) { diff --git a/common/src/gx_context_brush_style_set.c b/common/src/gx_context_brush_style_set.c index a580a868..4e9ea737 100644 --- a/common/src/gx_context_brush_style_set.c +++ b/common/src/gx_context_brush_style_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_context_brush_style_set(UINT style) { diff --git a/common/src/gx_context_brush_width_set.c b/common/src/gx_context_brush_width_set.c index 4e6d374a..3760b107 100644 --- a/common/src/gx_context_brush_width_set.c +++ b/common/src/gx_context_brush_width_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_context_brush_width_set(UINT width) { diff --git a/common/src/gx_context_color_get.c b/common/src/gx_context_color_get.c index a7b338d5..9958fdb5 100644 --- a/common/src/gx_context_color_get.c +++ b/common/src/gx_context_color_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* _gx_context_fill_color_set */ /* _gx_context_line_color_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_context_color_get(GX_RESOURCE_ID color_id, GX_COLOR *return_color) { diff --git a/common/src/gx_context_fill_color_set.c b/common/src/gx_context_fill_color_set.c index d5b90423..045ccda5 100644 --- a/common/src/gx_context_fill_color_set.c +++ b/common/src/gx_context_fill_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* _gx_widget_border_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_context_fill_color_set(GX_RESOURCE_ID fill_color_id) { diff --git a/common/src/gx_context_font_get.c b/common/src/gx_context_font_get.c index e70db574..ab0bf6ad 100644 --- a/common/src/gx_context_font_get.c +++ b/common/src/gx_context_font_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* Application Code */ /* _gx_context_font_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_context_font_get(GX_RESOURCE_ID resource_id, GX_FONT **return_font) { diff --git a/common/src/gx_context_font_set.c b/common/src/gx_context_font_set.c index 58850d1e..8a3fa7be 100644 --- a/common/src/gx_context_font_set.c +++ b/common/src/gx_context_font_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* _gx_single_line_text_input_draw */ /* _gx_widget_text_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_context_font_set(GX_RESOURCE_ID font_id) { diff --git a/common/src/gx_context_line_color_set.c b/common/src/gx_context_line_color_set.c index 5ae53b79..f8b0cd2e 100644 --- a/common/src/gx_context_line_color_set.c +++ b/common/src/gx_context_line_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* _gx_widget_border_draw */ /* _gx_widget_text_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_context_line_color_set(GX_RESOURCE_ID line_color_id) { diff --git a/common/src/gx_context_pixelmap_get.c b/common/src/gx_context_pixelmap_get.c index 57137084..8aafc138 100644 --- a/common/src/gx_context_pixelmap_get.c +++ b/common/src/gx_context_pixelmap_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,14 +73,6 @@ /* _gx_scrollbar_thumb_position_calculate */ /* _gx_window_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_context_pixelmap_get(GX_RESOURCE_ID resource_id, GX_PIXELMAP **return_pixelmap) { diff --git a/common/src/gx_context_pixelmap_set.c b/common/src/gx_context_pixelmap_set.c index d819a81c..f9c99475 100644 --- a/common/src/gx_context_pixelmap_set.c +++ b/common/src/gx_context_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_context_pixelmap_set(GX_RESOURCE_ID pixelmap_id) { diff --git a/common/src/gx_context_raw_brush_define.c b/common/src/gx_context_raw_brush_define.c index c3e1d5ab..80276d00 100644 --- a/common/src/gx_context_raw_brush_define.c +++ b/common/src/gx_context_raw_brush_define.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_context_raw_brush_define(GX_COLOR line_color, GX_COLOR fill_color, UINT style) { diff --git a/common/src/gx_context_raw_fill_color_set.c b/common/src/gx_context_raw_fill_color_set.c index 31439c0f..212d03fb 100644 --- a/common/src/gx_context_raw_fill_color_set.c +++ b/common/src/gx_context_raw_fill_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_context_raw_fill_color_set(GX_COLOR line_color) { diff --git a/common/src/gx_context_raw_line_color_set.c b/common/src/gx_context_raw_line_color_set.c index 99d5f859..f566f043 100644 --- a/common/src/gx_context_raw_line_color_set.c +++ b/common/src/gx_context_raw_line_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_context_raw_line_color_set(GX_COLOR line_color) { diff --git a/common/src/gx_context_string_get.c b/common/src/gx_context_string_get.c index 0d669394..09213ebb 100644 --- a/common/src/gx_context_string_get.c +++ b/common/src/gx_context_string_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* _gx_widget_text_id_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) @@ -117,14 +110,6 @@ GX_DISPLAY *display; /* */ /* _gx_widget_text_id_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_context_string_get_ext(GX_RESOURCE_ID resource_id, GX_STRING *return_string) { diff --git a/common/src/gx_display_active_language_set.c b/common/src/gx_display_active_language_set.c index 9675bbe9..b3e432f3 100644 --- a/common/src/gx_display_active_language_set.c +++ b/common/src/gx_display_active_language_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_display_active_language_set(GX_DISPLAY *display, GX_UBYTE language) { diff --git a/common/src/gx_display_canvas_dirty.c b/common/src/gx_display_canvas_dirty.c index 8fddec1a..519b0f75 100644 --- a/common/src/gx_display_canvas_dirty.c +++ b/common/src/gx_display_canvas_dirty.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* _gx_display_font_table_set */ /* _gx_display_pixelmap_table_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_canvas_dirty(GX_DISPLAY *display) { diff --git a/common/src/gx_display_color_set.c b/common/src/gx_display_color_set.c index f40fc402..4e8637bb 100644 --- a/common/src/gx_display_color_set.c +++ b/common/src/gx_display_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* Application Code */ /* GUIX default draw funtions */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_display_color_set(GX_DISPLAY *display, GX_RESOURCE_ID resource_id, GX_COLOR new_color) { diff --git a/common/src/gx_display_color_table_set.c b/common/src/gx_display_color_table_set.c index 93e1f195..114addaa 100644 --- a/common/src/gx_display_color_table_set.c +++ b/common/src/gx_display_color_table_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* Application Code */ /* GUIX default draw funtions */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_display_color_table_set(GX_DISPLAY *display, GX_COLOR *color_table, INT number_of_colors) { diff --git a/common/src/gx_display_create.c b/common/src/gx_display_create.c index f4e2181e..b37fa59f 100644 --- a/common/src/gx_display_create.c +++ b/common/src/gx_display_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_display_create(GX_DISPLAY *display, GX_CONST GX_CHAR *name, UINT (*display_driver_setup)(GX_DISPLAY *), diff --git a/common/src/gx_display_delete.c b/common/src/gx_display_delete.c index 09d56a52..47a35d40 100644 --- a/common/src/gx_display_delete.c +++ b/common/src/gx_display_delete.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_display_delete(GX_DISPLAY *display, VOID (*display_driver_cleanup)(GX_DISPLAY *)) { diff --git a/common/src/gx_display_driver_1555xrgb_canvas_blend.c b/common/src/gx_display_driver_1555xrgb_canvas_blend.c index d30d9e09..97734de2 100644 --- a/common/src/gx_display_driver_1555xrgb_canvas_blend.c +++ b/common/src/gx_display_driver_1555xrgb_canvas_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -77,14 +78,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_1555xrgb_canvas_blend(GX_CANVAS *canvas, GX_CANVAS *composite) { diff --git a/common/src/gx_display_driver_1555xrgb_jpeg_draw.c b/common/src/gx_display_driver_1555xrgb_jpeg_draw.c index 9dfba1b3..6e532c6a 100644 --- a/common/src/gx_display_driver_1555xrgb_jpeg_draw.c +++ b/common/src/gx_display_driver_1555xrgb_jpeg_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,18 +63,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* removed a parameter from */ -/* jpeg mcu decode function, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) VOID _gx_display_driver_1555xrgb_jpeg_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/common/src/gx_display_driver_1555xrgb_native_color_get.c b/common/src/gx_display_driver_1555xrgb_native_color_get.c index 4659f96b..01a1edf6 100644 --- a/common/src/gx_display_driver_1555xrgb_native_color_get.c +++ b/common/src/gx_display_driver_1555xrgb_native_color_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_COLOR _gx_display_driver_1555xrgb_native_color_get(GX_DISPLAY *display, GX_COLOR rawcolor) { diff --git a/common/src/gx_display_driver_1555xrgb_pixel_blend.c b/common/src/gx_display_driver_1555xrgb_pixel_blend.c index 6b6629a7..844fc602 100644 --- a/common/src/gx_display_driver_1555xrgb_pixel_blend.c +++ b/common/src/gx_display_driver_1555xrgb_pixel_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -75,14 +76,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_1555xrgb_pixel_blend(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR fcolor, GX_UBYTE alpha) { diff --git a/common/src/gx_display_driver_1555xrgb_pixelmap_rotate.c b/common/src/gx_display_driver_1555xrgb_pixelmap_rotate.c index 94cf67c0..af75d5d8 100644 --- a/common/src/gx_display_driver_1555xrgb_pixelmap_rotate.c +++ b/common/src/gx_display_driver_1555xrgb_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -77,17 +78,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* corrected logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_1555xrgb_pixelmap_raw_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -330,17 +320,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR col /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* corrected logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_1555xrgb_pixelmap_alpha_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -617,14 +596,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR col /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_1555xrgb_pixelmap_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT rot_cx, INT rot_cy) diff --git a/common/src/gx_display_driver_1555xrgb_png_draw.c b/common/src/gx_display_driver_1555xrgb_png_draw.c index 315e621d..03bd10ae 100644 --- a/common/src/gx_display_driver_1555xrgb_png_draw.c +++ b/common/src/gx_display_driver_1555xrgb_png_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) VOID _gx_display_driver_1555xrgb_png_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/common/src/gx_display_driver_1555xrgb_setup.c b/common/src/gx_display_driver_1555xrgb_setup.c index 52cc7d5b..1f5d81a7 100644 --- a/common/src/gx_display_driver_1555xrgb_setup.c +++ b/common/src/gx_display_driver_1555xrgb_setup.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_1555xrgb_setup(GX_DISPLAY *display, VOID *aux_data, VOID (*toggle_function)(struct GX_CANVAS_STRUCT *canvas, diff --git a/common/src/gx_display_driver_16bpp_block_move.c b/common/src/gx_display_driver_16bpp_block_move.c index dc91725c..d2d867e3 100644 --- a/common/src/gx_display_driver_16bpp_block_move.c +++ b/common/src/gx_display_driver_16bpp_block_move.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,17 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added canvas status check, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_16bpp_block_move(GX_DRAW_CONTEXT *context, GX_RECTANGLE *block, INT xshift, INT yshift) diff --git a/common/src/gx_display_driver_16bpp_canvas_copy.c b/common/src/gx_display_driver_16bpp_canvas_copy.c index b61ae8e0..8b387b10 100644 --- a/common/src/gx_display_driver_16bpp_canvas_copy.c +++ b/common/src/gx_display_driver_16bpp_canvas_copy.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,17 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added canvas status check, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_16bpp_canvas_copy(GX_CANVAS *canvas, GX_CANVAS *composite) { diff --git a/common/src/gx_display_driver_16bpp_horizontal_line_draw.c b/common/src/gx_display_driver_16bpp_horizontal_line_draw.c index b36fc4fd..9053438c 100644 --- a/common/src/gx_display_driver_16bpp_horizontal_line_draw.c +++ b/common/src/gx_display_driver_16bpp_horizontal_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,18 +66,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_16bpp_horizontal_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT ypos, INT width, GX_COLOR color) { diff --git a/common/src/gx_display_driver_16bpp_horizontal_pattern_line_draw.c b/common/src/gx_display_driver_16bpp_horizontal_pattern_line_draw.c index 960db200..0dab7abd 100644 --- a/common/src/gx_display_driver_16bpp_horizontal_pattern_line_draw.c +++ b/common/src/gx_display_driver_16bpp_horizontal_pattern_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,18 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_16bpp_horizontal_pattern_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT ypos) { diff --git a/common/src/gx_display_driver_16bpp_mouse_capture.c b/common/src/gx_display_driver_16bpp_mouse_capture.c index 5ed27c60..d526520a 100644 --- a/common/src/gx_display_driver_16bpp_mouse_capture.c +++ b/common/src/gx_display_driver_16bpp_mouse_capture.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -54,14 +55,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_MOUSE_SUPPORT) #if !defined(GX_HARDWARE_MOUSE_SUPPORT) diff --git a/common/src/gx_display_driver_16bpp_mouse_restore.c b/common/src/gx_display_driver_16bpp_mouse_restore.c index 97791150..84640dcb 100644 --- a/common/src/gx_display_driver_16bpp_mouse_restore.c +++ b/common/src/gx_display_driver_16bpp_mouse_restore.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -54,14 +55,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_MOUSE_SUPPORT) #if !defined(GX_HARDWARE_MOUSE_SUPPORT) diff --git a/common/src/gx_display_driver_16bpp_pixel_write.c b/common/src/gx_display_driver_16bpp_pixel_write.c index 0faf9a10..6790b859 100644 --- a/common/src/gx_display_driver_16bpp_pixel_write.c +++ b/common/src/gx_display_driver_16bpp_pixel_write.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,18 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_16bpp_pixel_write(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR color) { diff --git a/common/src/gx_display_driver_16bpp_pixelmap_blend.c b/common/src/gx_display_driver_16bpp_pixelmap_blend.c index 5a96d32c..fdb7dc7a 100644 --- a/common/src/gx_display_driver_16bpp_pixelmap_blend.c +++ b/common/src/gx_display_driver_16bpp_pixelmap_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_16bpp_pixelmap_raw_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -139,14 +132,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR fco /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_pixelmap_alpha_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -240,14 +225,6 @@ void (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR fco /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_16bpp_pixelmap_compressed_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -375,14 +352,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_palette_pixelmap_raw_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -458,14 +427,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_palette_pixelmap_transparent_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -546,14 +507,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_4444argb_pixelmap_raw_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -637,14 +590,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_565rgb_pixelmap_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -739,14 +684,6 @@ VOID _gx_display_driver_565rgb_pixelmap_blend(GX_DRAW_CONTEXT *context, /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_1555xrgb_pixelmap_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -812,14 +749,6 @@ VOID _gx_display_driver_1555xrgb_pixelmap_blend(GX_DRAW_CONTEXT *context, /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_4444argb_pixelmap_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) diff --git a/common/src/gx_display_driver_16bpp_pixelmap_draw.c b/common/src/gx_display_driver_16bpp_pixelmap_draw.c index 3f2b79fb..3b2e73c3 100644 --- a/common/src/gx_display_driver_16bpp_pixelmap_draw.c +++ b/common/src/gx_display_driver_16bpp_pixelmap_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,18 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_pixelmap_raw_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -146,14 +135,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_pixelmap_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -233,18 +214,6 @@ void (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -375,14 +344,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_pixelmap_compressed_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -570,18 +531,6 @@ void (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_palette_pixelmap_raw_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -664,18 +613,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_palette_pixelmap_transparent_raw_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -764,18 +701,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_palette_pixelmap_transparent_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -969,18 +894,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_palette_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -1159,14 +1072,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_16bpp_4444argb_pixelmap_raw_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -1252,14 +1157,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_16bpp_4444argb_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -1476,14 +1373,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_565rgb_pixelmap_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -1655,14 +1544,6 @@ GX_UBYTE brush_alpha = context -> gx_draw_context_brush.gx_brush_alpha; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_1555xrgb_pixelmap_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/common/src/gx_display_driver_16bpp_pixelmap_rotate.c b/common/src/gx_display_driver_16bpp_pixelmap_rotate.c index 6e5e8f7e..4bac3d93 100644 --- a/common/src/gx_display_driver_16bpp_pixelmap_rotate.c +++ b/common/src/gx_display_driver_16bpp_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -77,17 +78,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* corrected logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_pixelmap_raw_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -330,17 +320,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR col /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* corrected logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_pixelmap_alpha_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -611,21 +590,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR col /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* remove unused assignment, */ -/* resulting in version 6.1.7 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_16bpp_pixelmap_simple_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -759,17 +723,6 @@ INT newypos; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* remove unused assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_16bpp_pixelmap_simple_alpha_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -908,15 +861,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR col /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added 565bgr format support,*/ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_16bpp_pixelmap_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT rot_cx, INT rot_cy) diff --git a/common/src/gx_display_driver_16bpp_rotated_block_move.c b/common/src/gx_display_driver_16bpp_rotated_block_move.c index 75c937fc..32e30426 100644 --- a/common/src/gx_display_driver_16bpp_rotated_block_move.c +++ b/common/src/gx_display_driver_16bpp_rotated_block_move.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,12 +63,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_16bpp_rotated_block_move(GX_DRAW_CONTEXT *context, GX_RECTANGLE *block, INT xshift, INT yshift) diff --git a/common/src/gx_display_driver_16bpp_rotated_canvas_copy.c b/common/src/gx_display_driver_16bpp_rotated_canvas_copy.c index 25ccd805..e9384ef2 100644 --- a/common/src/gx_display_driver_16bpp_rotated_canvas_copy.c +++ b/common/src/gx_display_driver_16bpp_rotated_canvas_copy.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,12 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_16bpp_rotated_canvas_copy(GX_CANVAS *canvas, GX_CANVAS *composite) { diff --git a/common/src/gx_display_driver_16bpp_rotated_horizontal_line_draw.c b/common/src/gx_display_driver_16bpp_rotated_horizontal_line_draw.c index 8f6c7e07..07272b4c 100644 --- a/common/src/gx_display_driver_16bpp_rotated_horizontal_line_draw.c +++ b/common/src/gx_display_driver_16bpp_rotated_horizontal_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,12 +66,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_16bpp_rotated_horizontal_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT ypos, INT width, GX_COLOR color) { diff --git a/common/src/gx_display_driver_16bpp_rotated_horizontal_pattern_line_draw.c b/common/src/gx_display_driver_16bpp_rotated_horizontal_pattern_line_draw.c index 004221fd..66ba7bcc 100644 --- a/common/src/gx_display_driver_16bpp_rotated_horizontal_pattern_line_draw.c +++ b/common/src/gx_display_driver_16bpp_rotated_horizontal_pattern_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,12 +63,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_16bpp_rotated_horizontal_pattern_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT ypos) { diff --git a/common/src/gx_display_driver_16bpp_rotated_pixel_write.c b/common/src/gx_display_driver_16bpp_rotated_pixel_write.c index 3803e290..6fb83a7e 100644 --- a/common/src/gx_display_driver_16bpp_rotated_pixel_write.c +++ b/common/src/gx_display_driver_16bpp_rotated_pixel_write.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,12 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_16bpp_rotated_pixel_write(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR color) { diff --git a/common/src/gx_display_driver_16bpp_rotated_pixelmap_blend.c b/common/src/gx_display_driver_16bpp_rotated_pixelmap_blend.c index a38c35f0..da1e8f8d 100644 --- a/common/src/gx_display_driver_16bpp_rotated_pixelmap_blend.c +++ b/common/src/gx_display_driver_16bpp_rotated_pixelmap_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,12 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_16bpp_rotated_pixelmap_raw_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -153,12 +148,6 @@ GX_RECTANGLE rotated_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_pixelmap_alpha_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -264,12 +253,6 @@ GX_RECTANGLE rotated_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_16bpp_rotated_pixelmap_compressed_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -416,12 +399,6 @@ GX_RECTANGLE rotated_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_palette_pixelmap_raw_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -517,12 +494,6 @@ GX_RECTANGLE rotated_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_palette_pixelmap_transparent_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -622,12 +593,6 @@ GX_RECTANGLE rotated_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_4444argb_pixelmap_raw_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -731,12 +696,6 @@ GX_RECTANGLE rotated_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_565rgb_rotated_pixelmap_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) diff --git a/common/src/gx_display_driver_16bpp_rotated_pixelmap_draw.c b/common/src/gx_display_driver_16bpp_rotated_pixelmap_draw.c index 765c9ad4..554204ee 100644 --- a/common/src/gx_display_driver_16bpp_rotated_pixelmap_draw.c +++ b/common/src/gx_display_driver_16bpp_rotated_pixelmap_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,12 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_pixelmap_raw_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -150,12 +145,6 @@ GX_RECTANGLE rotated_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_pixelmap_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -251,11 +240,6 @@ void (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -410,12 +394,6 @@ GX_RECTANGLE rotated_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_pixelmap_compressed_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -619,12 +597,6 @@ void (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_palette_pixelmap_raw_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -725,12 +697,6 @@ GX_RECTANGLE rotated_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_palette_pixelmap_transparent_raw_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -837,11 +803,6 @@ GX_RECTANGLE rotated_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_palette_pixelmap_transparent_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -1057,11 +1018,6 @@ GX_RECTANGLE rotated_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_palette_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -1262,12 +1218,6 @@ GX_RECTANGLE rotated_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_16bpp_rotated_4444argb_pixelmap_raw_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -1373,11 +1323,6 @@ GX_RECTANGLE rotated_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ /**************************************************************************/ static VOID _gx_display_driver_16bpp_rotated_4444argb_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -1613,12 +1558,6 @@ GX_RECTANGLE rotated_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_565rgb_rotated_pixelmap_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/common/src/gx_display_driver_16bpp_rotated_pixelmap_rotate.c b/common/src/gx_display_driver_16bpp_rotated_pixelmap_rotate.c index e4f83e57..d59e78bb 100644 --- a/common/src/gx_display_driver_16bpp_rotated_pixelmap_rotate.c +++ b/common/src/gx_display_driver_16bpp_rotated_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -78,12 +79,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_pixelmap_raw_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -352,12 +347,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR col /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_pixelmap_alpha_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -657,12 +646,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR col /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_16bpp_rotated_pixelmap_simple_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -829,12 +812,6 @@ INT newypos; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_pixelmap_simple_alpha_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -993,12 +970,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR col /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_565rgb_rotated_pixelmap_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT rot_cx, INT rot_cy) diff --git a/common/src/gx_display_driver_16bpp_rotated_simple_line_draw.c b/common/src/gx_display_driver_16bpp_rotated_simple_line_draw.c index 33f63fd6..cfcd2b41 100644 --- a/common/src/gx_display_driver_16bpp_rotated_simple_line_draw.c +++ b/common/src/gx_display_driver_16bpp_rotated_simple_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,12 +67,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_16bpp_rotated_simple_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT ystart, INT xend, INT yend) { diff --git a/common/src/gx_display_driver_16bpp_rotated_vertical_line_draw.c b/common/src/gx_display_driver_16bpp_rotated_vertical_line_draw.c index d6180bb9..ee99855b 100644 --- a/common/src/gx_display_driver_16bpp_rotated_vertical_line_draw.c +++ b/common/src/gx_display_driver_16bpp_rotated_vertical_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,12 +63,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_16bpp_rotated_vertical_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT xpos, INT width, GX_COLOR color) { diff --git a/common/src/gx_display_driver_16bpp_rotated_vertical_pattern_line_draw.c b/common/src/gx_display_driver_16bpp_rotated_vertical_pattern_line_draw.c index 0d529010..cce4ddd6 100644 --- a/common/src/gx_display_driver_16bpp_rotated_vertical_pattern_line_draw.c +++ b/common/src/gx_display_driver_16bpp_rotated_vertical_pattern_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,12 +61,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_16bpp_rotated_vertical_pattern_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT xpos) { diff --git a/common/src/gx_display_driver_16bpp_row_pitch_get.c b/common/src/gx_display_driver_16bpp_row_pitch_get.c index 834a7093..42b12575 100644 --- a/common/src/gx_display_driver_16bpp_row_pitch_get.c +++ b/common/src/gx_display_driver_16bpp_row_pitch_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -56,14 +57,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ USHORT _gx_display_driver_16bpp_row_pitch_get(USHORT width) { diff --git a/common/src/gx_display_driver_16bpp_simple_line_draw.c b/common/src/gx_display_driver_16bpp_simple_line_draw.c index 368cd257..0ec90d86 100644 --- a/common/src/gx_display_driver_16bpp_simple_line_draw.c +++ b/common/src/gx_display_driver_16bpp_simple_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,18 +68,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_16bpp_simple_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT ystart, INT xend, INT yend) { diff --git a/common/src/gx_display_driver_16bpp_vertical_line_draw.c b/common/src/gx_display_driver_16bpp_vertical_line_draw.c index 93097c32..d2bdbb4c 100644 --- a/common/src/gx_display_driver_16bpp_vertical_line_draw.c +++ b/common/src/gx_display_driver_16bpp_vertical_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,18 +63,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_16bpp_vertical_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT xpos, INT width, GX_COLOR color) { diff --git a/common/src/gx_display_driver_16bpp_vertical_pattern_line_draw.c b/common/src/gx_display_driver_16bpp_vertical_pattern_line_draw.c index 728af21e..c23b740b 100644 --- a/common/src/gx_display_driver_16bpp_vertical_pattern_line_draw.c +++ b/common/src/gx_display_driver_16bpp_vertical_pattern_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,18 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_16bpp_vertical_pattern_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT xpos) { diff --git a/common/src/gx_display_driver_1bpp_block_move.c b/common/src/gx_display_driver_1bpp_block_move.c index 2949e9b3..2abb0f50 100644 --- a/common/src/gx_display_driver_1bpp_block_move.c +++ b/common/src/gx_display_driver_1bpp_block_move.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_1bpp_block_move(GX_DRAW_CONTEXT *context, GX_RECTANGLE *block, INT xshift, INT yshift) diff --git a/common/src/gx_display_driver_1bpp_canvas_copy.c b/common/src/gx_display_driver_1bpp_canvas_copy.c index 33c77066..97a5dd0e 100644 --- a/common/src/gx_display_driver_1bpp_canvas_copy.c +++ b/common/src/gx_display_driver_1bpp_canvas_copy.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_1bpp_canvas_copy(GX_CANVAS *canvas, GX_CANVAS *composite) { diff --git a/common/src/gx_display_driver_1bpp_glyph_1bpp_draw.c b/common/src/gx_display_driver_1bpp_glyph_1bpp_draw.c index ff0ac6c2..9ad826c4 100644 --- a/common/src/gx_display_driver_1bpp_glyph_1bpp_draw.c +++ b/common/src/gx_display_driver_1bpp_glyph_1bpp_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* _gx_canvas_text_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ /* Draw area defines where the glyph is drawn. The draw area is not larger than the glyph. If it is smaller than diff --git a/common/src/gx_display_driver_1bpp_horizontal_line_draw.c b/common/src/gx_display_driver_1bpp_horizontal_line_draw.c index 4a5b26be..3fe60cda 100644 --- a/common/src/gx_display_driver_1bpp_horizontal_line_draw.c +++ b/common/src/gx_display_driver_1bpp_horizontal_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_1bpp_horizontal_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT ypos, INT width, GX_COLOR color) { diff --git a/common/src/gx_display_driver_1bpp_horizontal_pattern_line_draw.c b/common/src/gx_display_driver_1bpp_horizontal_pattern_line_draw.c index 090dee08..1afa21f7 100644 --- a/common/src/gx_display_driver_1bpp_horizontal_pattern_line_draw.c +++ b/common/src/gx_display_driver_1bpp_horizontal_pattern_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_1bpp_horizontal_pattern_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT ypos) { diff --git a/common/src/gx_display_driver_1bpp_horizontal_pixelmap_line_draw.c b/common/src/gx_display_driver_1bpp_horizontal_pixelmap_line_draw.c index 94af905e..fbf32db7 100644 --- a/common/src/gx_display_driver_1bpp_horizontal_pixelmap_line_draw.c +++ b/common/src/gx_display_driver_1bpp_horizontal_pixelmap_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_1bpp_horizontal_pixelmap_line_raw_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, @@ -174,14 +167,6 @@ GX_PIXELMAP *pixelmap; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_1bpp_horizontal_pixelmap_line_transparent_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -288,14 +273,6 @@ GX_PIXELMAP *pixelmap = info -> pixelmap; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_1bpp_horizontal_pixelmap_line_compressed_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -451,14 +428,6 @@ GX_PIXELMAP *pixelmap; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_1bpp_horizontal_pixelmap_line_compressed_transparent_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -629,14 +598,6 @@ GX_PIXELMAP *pixelmap; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_1bpp_horizontal_pixelmap_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) { diff --git a/common/src/gx_display_driver_1bpp_mouse_capture.c b/common/src/gx_display_driver_1bpp_mouse_capture.c index f209e279..2b55c8c7 100644 --- a/common/src/gx_display_driver_1bpp_mouse_capture.c +++ b/common/src/gx_display_driver_1bpp_mouse_capture.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -54,14 +55,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_MOUSE_SUPPORT) #if !defined(GX_HARDWARE_MOUSE_SUPPORT) diff --git a/common/src/gx_display_driver_1bpp_mouse_restore.c b/common/src/gx_display_driver_1bpp_mouse_restore.c index 7f46f187..fbd62240 100644 --- a/common/src/gx_display_driver_1bpp_mouse_restore.c +++ b/common/src/gx_display_driver_1bpp_mouse_restore.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -54,14 +55,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_MOUSE_SUPPORT) #if !defined(GX_HARDWARE_MOUSE_SUPPORT) diff --git a/common/src/gx_display_driver_1bpp_native_color_get.c b/common/src/gx_display_driver_1bpp_native_color_get.c index 64b54982..313e3119 100644 --- a/common/src/gx_display_driver_1bpp_native_color_get.c +++ b/common/src/gx_display_driver_1bpp_native_color_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_COLOR _gx_display_driver_1bpp_native_color_get(GX_DISPLAY *display, GX_COLOR rawcolor) { diff --git a/common/src/gx_display_driver_1bpp_pixel_write.c b/common/src/gx_display_driver_1bpp_pixel_write.c index b42dcd57..5cc5ad62 100644 --- a/common/src/gx_display_driver_1bpp_pixel_write.c +++ b/common/src/gx_display_driver_1bpp_pixel_write.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,14 +58,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_1bpp_pixel_write(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR color) { diff --git a/common/src/gx_display_driver_1bpp_pixelmap_draw.c b/common/src/gx_display_driver_1bpp_pixelmap_draw.c index 1d6f967b..ad15f19d 100644 --- a/common/src/gx_display_driver_1bpp_pixelmap_draw.c +++ b/common/src/gx_display_driver_1bpp_pixelmap_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,14 +58,6 @@ /* */ /* _gx_display_driver_1bpp_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_1bpp_pixelmap_raw_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -168,14 +161,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_1bpp_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_1bpp_pixelmap_transparent_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -288,14 +273,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_1bpp_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_1bpp_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) { @@ -440,14 +417,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_1bpp_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_1bpp_pixelmap_compressed_transparent_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) { @@ -632,14 +601,6 @@ GX_RECTANGLE *clip = context->gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_1bpp_pixelmap_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/common/src/gx_display_driver_1bpp_pixelmap_rotate.c b/common/src/gx_display_driver_1bpp_pixelmap_rotate.c index ec321cbd..246630d4 100644 --- a/common/src/gx_display_driver_1bpp_pixelmap_rotate.c +++ b/common/src/gx_display_driver_1bpp_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,17 +66,6 @@ /* */ /* _gx_display_driver_1bpp_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* corrected logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_1bpp_pixelmap_raw_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -218,17 +208,6 @@ INT getstride; /* */ /* _gx_display_driver_1bpp_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* corrected logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_1bpp_pixelmap_transparent_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -372,18 +351,6 @@ INT newypos; /* */ /* _gx_display_driver_1bpp_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_1bpp_pixelmap_simple_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -568,18 +535,6 @@ INT newypos; /* */ /* _gx_display_driver_1bpp_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_1bpp_pixelmap_simple_transparent_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -793,14 +748,6 @@ GX_UBYTE getmask; /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_1bpp_pixelmap_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT rot_cx, INT rot_cy) diff --git a/common/src/gx_display_driver_1bpp_row_pitch_get.c b/common/src/gx_display_driver_1bpp_row_pitch_get.c index 595a125a..7bee6356 100644 --- a/common/src/gx_display_driver_1bpp_row_pitch_get.c +++ b/common/src/gx_display_driver_1bpp_row_pitch_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -56,14 +57,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ USHORT _gx_display_driver_1bpp_row_pitch_get(USHORT width) { diff --git a/common/src/gx_display_driver_1bpp_simple_line_draw.c b/common/src/gx_display_driver_1bpp_simple_line_draw.c index b3ceb7ee..a21f4983 100644 --- a/common/src/gx_display_driver_1bpp_simple_line_draw.c +++ b/common/src/gx_display_driver_1bpp_simple_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_1bpp_simple_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT ystart, INT xend, INT yend) { diff --git a/common/src/gx_display_driver_1bpp_vertical_line_draw.c b/common/src/gx_display_driver_1bpp_vertical_line_draw.c index b10c405a..887fcd5b 100644 --- a/common/src/gx_display_driver_1bpp_vertical_line_draw.c +++ b/common/src/gx_display_driver_1bpp_vertical_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_1bpp_vertical_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT xpos, INT width, GX_COLOR color) { diff --git a/common/src/gx_display_driver_1bpp_vertical_pattern_line_draw.c b/common/src/gx_display_driver_1bpp_vertical_pattern_line_draw.c index fb98f7e4..fe8d2363 100644 --- a/common/src/gx_display_driver_1bpp_vertical_pattern_line_draw.c +++ b/common/src/gx_display_driver_1bpp_vertical_pattern_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_1bpp_vertical_pattern_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT xpos) { diff --git a/common/src/gx_display_driver_24xrgb_canvas_blend.c b/common/src/gx_display_driver_24xrgb_canvas_blend.c index d901f48d..879c5594 100644 --- a/common/src/gx_display_driver_24xrgb_canvas_blend.c +++ b/common/src/gx_display_driver_24xrgb_canvas_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -76,14 +77,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_24xrgb_canvas_blend(GX_CANVAS *canvas, GX_CANVAS *composite) { diff --git a/common/src/gx_display_driver_24xrgb_jpeg_draw.c b/common/src/gx_display_driver_24xrgb_jpeg_draw.c index c0c2aea7..6ed713a1 100644 --- a/common/src/gx_display_driver_24xrgb_jpeg_draw.c +++ b/common/src/gx_display_driver_24xrgb_jpeg_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,18 +63,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* removed a parameter from */ -/* jpeg mcu decode function, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) VOID _gx_display_driver_24xrgb_jpeg_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/common/src/gx_display_driver_24xrgb_mouse_capture.c b/common/src/gx_display_driver_24xrgb_mouse_capture.c index fe3d7a1e..0f43192a 100644 --- a/common/src/gx_display_driver_24xrgb_mouse_capture.c +++ b/common/src/gx_display_driver_24xrgb_mouse_capture.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -54,14 +55,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_MOUSE_SUPPORT) #if !defined(GX_HARDWARE_MOUSE_SUPPORT) diff --git a/common/src/gx_display_driver_24xrgb_mouse_restore.c b/common/src/gx_display_driver_24xrgb_mouse_restore.c index e71bb111..e8c7b409 100644 --- a/common/src/gx_display_driver_24xrgb_mouse_restore.c +++ b/common/src/gx_display_driver_24xrgb_mouse_restore.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -54,14 +55,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_MOUSE_SUPPORT) #if !defined(GX_HARDWARE_MOUSE_SUPPORT) diff --git a/common/src/gx_display_driver_24xrgb_native_color_get.c b/common/src/gx_display_driver_24xrgb_native_color_get.c index 628ff4ef..3750927f 100644 --- a/common/src/gx_display_driver_24xrgb_native_color_get.c +++ b/common/src/gx_display_driver_24xrgb_native_color_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_COLOR _gx_display_driver_24xrgb_native_color_get(GX_DISPLAY *display, GX_COLOR rawcolor) { diff --git a/common/src/gx_display_driver_24xrgb_pixel_blend.c b/common/src/gx_display_driver_24xrgb_pixel_blend.c index 8c26fed9..4271bf19 100644 --- a/common/src/gx_display_driver_24xrgb_pixel_blend.c +++ b/common/src/gx_display_driver_24xrgb_pixel_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -73,17 +74,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* set alpha value as 0xff, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_24xrgb_pixel_blend(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR fcolor, GX_UBYTE alpha) { diff --git a/common/src/gx_display_driver_24xrgb_pixelmap_blend.c b/common/src/gx_display_driver_24xrgb_pixelmap_blend.c index fb726af0..caba75a5 100644 --- a/common/src/gx_display_driver_24xrgb_pixelmap_blend.c +++ b/common/src/gx_display_driver_24xrgb_pixelmap_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,18 +62,6 @@ /* */ /* _gx_display_driver_24xrgb_pixelmap_blend */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_pixelmap_raw_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) { @@ -137,18 +126,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_24xrgb_pixelmap_blend */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_pixelmap_alpha_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -228,18 +205,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_24xrgb_pixelmap_blend */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_palette_pixelmap_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -317,18 +282,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_24xrgb_pixelmap_blend */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_palette_pixelmap_transparent_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -407,14 +360,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_24xrgb_pixelmap_blend */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_4444argb_pixelmap_alpha_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) { @@ -494,14 +439,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_24xrgb_pixelmap_blend */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_565rgb_pixelmap_alpha_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -590,14 +527,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_24xrgb_pixelmap_blend */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_565rgb_pixelmap_raw_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) { @@ -677,14 +606,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_24xrgb_pixelmap_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) diff --git a/common/src/gx_display_driver_24xrgb_png_draw.c b/common/src/gx_display_driver_24xrgb_png_draw.c index a3fbd714..d4871ee0 100644 --- a/common/src/gx_display_driver_24xrgb_png_draw.c +++ b/common/src/gx_display_driver_24xrgb_png_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) VOID _gx_display_driver_24xrgb_png_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/common/src/gx_display_driver_24xrgb_rotated_canvas_blend.c b/common/src/gx_display_driver_24xrgb_rotated_canvas_blend.c index 8d063151..136a5ffa 100644 --- a/common/src/gx_display_driver_24xrgb_rotated_canvas_blend.c +++ b/common/src/gx_display_driver_24xrgb_rotated_canvas_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,12 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_24xrgb_rotated_canvas_blend(GX_CANVAS *canvas, GX_CANVAS *composite) { diff --git a/common/src/gx_display_driver_24xrgb_rotated_jpeg_draw.c b/common/src/gx_display_driver_24xrgb_rotated_jpeg_draw.c index 0f7ed713..f7d51472 100644 --- a/common/src/gx_display_driver_24xrgb_rotated_jpeg_draw.c +++ b/common/src/gx_display_driver_24xrgb_rotated_jpeg_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,16 +65,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* removed a parameter from */ -/* jpeg mcu decode function, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) VOID _gx_display_driver_24xrgb_rotated_jpeg_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/common/src/gx_display_driver_24xrgb_rotated_pixel_blend.c b/common/src/gx_display_driver_24xrgb_rotated_pixel_blend.c index 07ec9b09..3e89fd32 100644 --- a/common/src/gx_display_driver_24xrgb_rotated_pixel_blend.c +++ b/common/src/gx_display_driver_24xrgb_rotated_pixel_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,12 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_24xrgb_rotated_pixel_blend(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR fcolor, GX_UBYTE alpha) { diff --git a/common/src/gx_display_driver_24xrgb_rotated_png_draw.c b/common/src/gx_display_driver_24xrgb_rotated_png_draw.c index 1679cb9b..00302ee1 100644 --- a/common/src/gx_display_driver_24xrgb_rotated_png_draw.c +++ b/common/src/gx_display_driver_24xrgb_rotated_png_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,12 +67,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) VOID _gx_display_driver_24xrgb_rotated_png_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/common/src/gx_display_driver_24xrgb_rotated_setup.c b/common/src/gx_display_driver_24xrgb_rotated_setup.c index 0257e1df..ed20386b 100644 --- a/common/src/gx_display_driver_24xrgb_rotated_setup.c +++ b/common/src/gx_display_driver_24xrgb_rotated_setup.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,12 +58,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_24xrgb_rotated_setup(GX_DISPLAY *display, VOID *aux_data, VOID (*toggle_function)(struct GX_CANVAS_STRUCT *canvas, diff --git a/common/src/gx_display_driver_24xrgb_setup.c b/common/src/gx_display_driver_24xrgb_setup.c index 2bc2a63a..0943cee5 100644 --- a/common/src/gx_display_driver_24xrgb_setup.c +++ b/common/src/gx_display_driver_24xrgb_setup.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,18 +61,6 @@ static GX_COLOR mouse_capture_memory[GX_MOUSE_MAX_RESOLUTION * GX_MOUSE_MAX_RESO /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* added rotation angle */ -/* initialization, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_24xrgb_setup(GX_DISPLAY *display, VOID *aux_data, VOID (*toggle_function)(struct GX_CANVAS_STRUCT *canvas, diff --git a/common/src/gx_display_driver_32argb_native_color_get.c b/common/src/gx_display_driver_32argb_native_color_get.c index 86cd0ba8..0f665242 100644 --- a/common/src/gx_display_driver_32argb_native_color_get.c +++ b/common/src/gx_display_driver_32argb_native_color_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_COLOR _gx_display_driver_32argb_native_color_get(GX_DISPLAY *display, GX_COLOR rawcolor) { diff --git a/common/src/gx_display_driver_32argb_pixel_blend.c b/common/src/gx_display_driver_32argb_pixel_blend.c index 329ebc75..c721e6d8 100644 --- a/common/src/gx_display_driver_32argb_pixel_blend.c +++ b/common/src/gx_display_driver_32argb_pixel_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,17 +70,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* fix pixel blend logic, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32argb_pixel_blend(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR fcolor, GX_UBYTE alpha) { diff --git a/common/src/gx_display_driver_32argb_pixelmap_blend.c b/common/src/gx_display_driver_32argb_pixelmap_blend.c index 7c168da0..39472007 100644 --- a/common/src/gx_display_driver_32argb_pixelmap_blend.c +++ b/common/src/gx_display_driver_32argb_pixelmap_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,18 +63,6 @@ /* */ /* _gx_display_driver_32argb_pixelmap_blend */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32argb_pixelmap_raw_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, @@ -142,18 +131,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_32argb_pixelmap_blend */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32argb_pixelmap_alpha_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -220,14 +197,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32argb_pixelmap_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) diff --git a/common/src/gx_display_driver_32argb_pixelmap_draw.c b/common/src/gx_display_driver_32argb_pixelmap_draw.c index 9643ce07..afe59d0d 100644 --- a/common/src/gx_display_driver_32argb_pixelmap_draw.c +++ b/common/src/gx_display_driver_32argb_pixelmap_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,18 +67,6 @@ /* */ /* _gx_display_driver_32argb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32argb_pixelmap_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -153,16 +142,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 07-29-2022 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.12 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32argb_pixelmap_compressed_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -301,14 +280,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_32argb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32argb_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -473,14 +444,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_32argb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32argb_pixelmap_raw_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -562,14 +525,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32argb_pixelmap_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/common/src/gx_display_driver_32argb_rotated_pixel_blend.c b/common/src/gx_display_driver_32argb_rotated_pixel_blend.c index 0648493f..ffc01bb1 100644 --- a/common/src/gx_display_driver_32argb_rotated_pixel_blend.c +++ b/common/src/gx_display_driver_32argb_rotated_pixel_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,12 +58,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32argb_rotated_pixel_blend(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR fcolor, GX_UBYTE alpha) { diff --git a/common/src/gx_display_driver_32argb_rotated_setup.c b/common/src/gx_display_driver_32argb_rotated_setup.c index 2d544e93..41b7b07c 100644 --- a/common/src/gx_display_driver_32argb_rotated_setup.c +++ b/common/src/gx_display_driver_32argb_rotated_setup.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,12 +58,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32argb_rotated_setup(GX_DISPLAY *display, VOID *aux_data, VOID (*toggle_function)(struct GX_CANVAS_STRUCT *canvas, diff --git a/common/src/gx_display_driver_32argb_setup.c b/common/src/gx_display_driver_32argb_setup.c index 653ea388..60ac08e9 100644 --- a/common/src/gx_display_driver_32argb_setup.c +++ b/common/src/gx_display_driver_32argb_setup.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,17 +61,6 @@ static GX_COLOR mouse_capture_memory[GX_MOUSE_MAX_RESOLUTION * GX_MOUSE_MAX_RESO /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), added */ -/* display rotation support, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32argb_setup(GX_DISPLAY *display, VOID *aux_data, VOID (*toggle_function)(struct GX_CANVAS_STRUCT *canvas, diff --git a/common/src/gx_display_driver_32bpp_block_move.c b/common/src/gx_display_driver_32bpp_block_move.c index 0e97d3fb..6a0760d4 100644 --- a/common/src/gx_display_driver_32bpp_block_move.c +++ b/common/src/gx_display_driver_32bpp_block_move.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_block_move(GX_DRAW_CONTEXT *context, GX_RECTANGLE *block, INT xshift, INT yshift) diff --git a/common/src/gx_display_driver_32bpp_canvas_copy.c b/common/src/gx_display_driver_32bpp_canvas_copy.c index 662e5095..57bac1a0 100644 --- a/common/src/gx_display_driver_32bpp_canvas_copy.c +++ b/common/src/gx_display_driver_32bpp_canvas_copy.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_canvas_copy(GX_CANVAS *canvas, GX_CANVAS *composite) { diff --git a/common/src/gx_display_driver_32bpp_glyph_1bit_draw.c b/common/src/gx_display_driver_32bpp_glyph_1bit_draw.c index 13519ebb..74bbe09c 100644 --- a/common/src/gx_display_driver_32bpp_glyph_1bit_draw.c +++ b/common/src/gx_display_driver_32bpp_glyph_1bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -81,17 +82,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 04-25-2022 Ting Zhu Modified comment(s), */ -/* fixed access violation bug, */ -/* resulting in version 6.1.11 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_glyph_1bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) { diff --git a/common/src/gx_display_driver_32bpp_horizontal_line_draw.c b/common/src/gx_display_driver_32bpp_horizontal_line_draw.c index 236cb2bd..8403f5c8 100644 --- a/common/src/gx_display_driver_32bpp_horizontal_line_draw.c +++ b/common/src/gx_display_driver_32bpp_horizontal_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_horizontal_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT ypos, INT width, GX_COLOR color) { diff --git a/common/src/gx_display_driver_32bpp_horizontal_pattern_line_draw.c b/common/src/gx_display_driver_32bpp_horizontal_pattern_line_draw.c index d89b304d..3a3d3046 100644 --- a/common/src/gx_display_driver_32bpp_horizontal_pattern_line_draw.c +++ b/common/src/gx_display_driver_32bpp_horizontal_pattern_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_horizontal_pattern_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT ypos) { diff --git a/common/src/gx_display_driver_32bpp_horizontal_pixelmap_line_draw.c b/common/src/gx_display_driver_32bpp_horizontal_pixelmap_line_draw.c index 18919ea7..0fb1c84c 100644 --- a/common/src/gx_display_driver_32bpp_horizontal_pixelmap_line_draw.c +++ b/common/src/gx_display_driver_32bpp_horizontal_pixelmap_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* */ /* _gx_display_driver_32bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_horizontal_pixelmap_line_alpha_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info, GX_UBYTE alpha) @@ -155,14 +148,6 @@ GX_VALUE offset; /* */ /* _gx_display_driver_32bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_horizontal_pixelmap_line_raw_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info, GX_UBYTE alpha) @@ -240,14 +225,6 @@ GX_PIXELMAP *pixelmap; /* */ /* _gx_display_driver_32bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_horizontal_pixelmap_line_compressed_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info, GX_UBYTE alpha) @@ -377,14 +354,6 @@ GX_CONST GX_UBYTE *get_count = GX_NULL; /* */ /* _gx_display_driver_32bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_horizontal_pixelmap_line_compressed_alpha_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info, GX_UBYTE alpha) @@ -520,14 +489,6 @@ GX_PIXELMAP *pixelmap; /* */ /* _gx_display_driver_32bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_horizontal_pixelmap_line_alpha_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -615,14 +576,6 @@ GX_VALUE offset; /* */ /* _gx_display_driver_32bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_horizontal_pixelmap_line_raw_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -699,14 +652,6 @@ GX_PIXELMAP *pixelmap; /* */ /* _gx_display_driver_32bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_horizontal_pixelmap_line_compressed_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -842,14 +787,6 @@ GX_PIXELMAP *pixelmap; /* */ /* _gx_display_driver_32bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_horizontal_pixelmap_line_compressed_alpha_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -1014,14 +951,6 @@ GX_PIXELMAP *pixelmap; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_horizontal_pixelmap_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) diff --git a/common/src/gx_display_driver_32bpp_pixel_write.c b/common/src/gx_display_driver_32bpp_pixel_write.c index c8fe5993..81aa1ee1 100644 --- a/common/src/gx_display_driver_32bpp_pixel_write.c +++ b/common/src/gx_display_driver_32bpp_pixel_write.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_pixel_write(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR color) { diff --git a/common/src/gx_display_driver_32bpp_pixelmap_draw.c b/common/src/gx_display_driver_32bpp_pixelmap_draw.c index 613a1d4a..52a56151 100644 --- a/common/src/gx_display_driver_32bpp_pixelmap_draw.c +++ b/common/src/gx_display_driver_32bpp_pixelmap_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* _gx_display_driver_24xrgb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_pixelmap_raw_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -147,17 +140,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_24xrgb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused assignments, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_pixelmap_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -235,14 +217,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_24xrgb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -410,14 +384,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_24xrgb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_pixelmap_compressed_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -560,14 +526,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_24xrgb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_palette_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -750,17 +708,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_24xrgb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused assignments, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_palette_pixelmap_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -853,17 +800,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_24xrgb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused assignments, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_palette_pixelmap_transparent_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -948,14 +884,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_24xrgb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_palette_pixelmap_transparent_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -1147,14 +1075,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_24xrgb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_565rgb_pixelmap_raw_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -1233,14 +1153,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_24xrgb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_565rgb_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -1422,14 +1334,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_24xrgb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_565rgb_pixelmap_compressed_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -1665,14 +1569,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_24xrgb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_565rgb_pixelmap_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -1770,14 +1666,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_24xrgb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_4444argb_pixelmap_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -1862,14 +1750,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_24xrgb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_4444argb_pixelmap_compressed_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -2102,14 +1982,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_24xrgb_pixelmap_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/common/src/gx_display_driver_32bpp_pixelmap_rotate.c b/common/src/gx_display_driver_32bpp_pixelmap_rotate.c index b163cb6f..157a1413 100644 --- a/common/src/gx_display_driver_32bpp_pixelmap_rotate.c +++ b/common/src/gx_display_driver_32bpp_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -81,17 +82,6 @@ /* */ /* _gx_display_driver_32bpp_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* corrected logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_pixelmap_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -351,17 +341,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR col /* */ /* _gx_display_driver_32bpp_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* corrected logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_pixelmap_alpha_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -598,17 +577,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR col /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused assignments, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_24xrgb_pixelmap_simple_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -782,17 +750,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR col /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-15-2021 Ting Zhu Modified comment(s), */ -/* corrected format type, */ -/* resulting in version 6.1.9 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_pixelmap_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT rot_cx, INT rot_cy) diff --git a/common/src/gx_display_driver_32bpp_rotated_block_move.c b/common/src/gx_display_driver_32bpp_rotated_block_move.c index 3a37412d..2c5a35b4 100644 --- a/common/src/gx_display_driver_32bpp_rotated_block_move.c +++ b/common/src/gx_display_driver_32bpp_rotated_block_move.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,12 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_rotated_block_move(GX_DRAW_CONTEXT *context, GX_RECTANGLE *block, INT xshift, INT yshift) diff --git a/common/src/gx_display_driver_32bpp_rotated_canvas_copy.c b/common/src/gx_display_driver_32bpp_rotated_canvas_copy.c index dda00a4d..6b74c7b6 100644 --- a/common/src/gx_display_driver_32bpp_rotated_canvas_copy.c +++ b/common/src/gx_display_driver_32bpp_rotated_canvas_copy.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,12 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_rotated_canvas_copy(GX_CANVAS *canvas, GX_CANVAS *composite) { diff --git a/common/src/gx_display_driver_32bpp_rotated_glyph_1bit_draw.c b/common/src/gx_display_driver_32bpp_rotated_glyph_1bit_draw.c index f612cf72..668ac41d 100644 --- a/common/src/gx_display_driver_32bpp_rotated_glyph_1bit_draw.c +++ b/common/src/gx_display_driver_32bpp_rotated_glyph_1bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -80,15 +81,6 @@ /* */ /* GUIX Internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), changed */ -/* blend function set macro, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_rotated_glyph_1bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) { diff --git a/common/src/gx_display_driver_32bpp_rotated_horizontal_line_draw.c b/common/src/gx_display_driver_32bpp_rotated_horizontal_line_draw.c index 7f403a91..6843d3f2 100644 --- a/common/src/gx_display_driver_32bpp_rotated_horizontal_line_draw.c +++ b/common/src/gx_display_driver_32bpp_rotated_horizontal_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,12 +65,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_rotated_horizontal_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT ypos, INT width, GX_COLOR color) { diff --git a/common/src/gx_display_driver_32bpp_rotated_horizontal_pattern_line_draw.c b/common/src/gx_display_driver_32bpp_rotated_horizontal_pattern_line_draw.c index 2341ea25..221b4114 100644 --- a/common/src/gx_display_driver_32bpp_rotated_horizontal_pattern_line_draw.c +++ b/common/src/gx_display_driver_32bpp_rotated_horizontal_pattern_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,12 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_rotated_horizontal_pattern_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT ypos) { diff --git a/common/src/gx_display_driver_32bpp_rotated_horizontal_pixelmap_line_draw.c b/common/src/gx_display_driver_32bpp_rotated_horizontal_pixelmap_line_draw.c index f721af0c..0fbbd84a 100644 --- a/common/src/gx_display_driver_32bpp_rotated_horizontal_pixelmap_line_draw.c +++ b/common/src/gx_display_driver_32bpp_rotated_horizontal_pixelmap_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,12 +69,6 @@ /* */ /* _gx_display_driver_32bpp_rotated_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_horizontal_pixelmap_line_alpha_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info, GX_UBYTE alpha) @@ -157,12 +152,6 @@ GX_VALUE offset; /* */ /* _gx_display_driver_32bpp_rotated_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_horizontal_pixelmap_line_raw_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info, GX_UBYTE alpha) @@ -243,12 +232,6 @@ GX_PIXELMAP *pixelmap; /* */ /* _gx_display_driver_32bpp_rotated_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_horizontal_pixelmap_line_compressed_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info, GX_UBYTE alpha) @@ -380,12 +363,6 @@ GX_CONST GX_UBYTE *get_count = GX_NULL; /* */ /* _gx_display_driver_32bpp_rotated_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_horizontal_pixelmap_line_compressed_alpha_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info, GX_UBYTE alpha) @@ -521,12 +498,6 @@ GX_PIXELMAP *pixelmap; /* */ /* _gx_display_driver_32bpp_rotated_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_horizontal_pixelmap_line_alpha_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -615,12 +586,6 @@ GX_VALUE offset; /* */ /* _gx_display_driver_32bpp_rotated_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_horizontal_pixelmap_line_raw_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -699,12 +664,6 @@ GX_PIXELMAP *pixelmap; /* */ /* _gx_display_driver_32bpp_rotated_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_horizontal_pixelmap_line_compressed_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -840,12 +799,6 @@ GX_PIXELMAP *pixelmap; /* */ /* _gx_display_driver_32bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_horizontal_pixelmap_line_compressed_alpha_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -998,12 +951,6 @@ GX_PIXELMAP *pixelmap; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_rotated_horizontal_pixelmap_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT x, GX_FILL_PIXELMAP_INFO *info) diff --git a/common/src/gx_display_driver_32bpp_rotated_pixel_write.c b/common/src/gx_display_driver_32bpp_rotated_pixel_write.c index 8dda9991..11bb0955 100644 --- a/common/src/gx_display_driver_32bpp_rotated_pixel_write.c +++ b/common/src/gx_display_driver_32bpp_rotated_pixel_write.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,12 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_rotated_pixel_write(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR color) { diff --git a/common/src/gx_display_driver_32bpp_rotated_pixelmap_blend.c b/common/src/gx_display_driver_32bpp_rotated_pixelmap_blend.c index 5e94be1f..a63b2ed6 100644 --- a/common/src/gx_display_driver_32bpp_rotated_pixelmap_blend.c +++ b/common/src/gx_display_driver_32bpp_rotated_pixelmap_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,15 +64,6 @@ /* */ /* _gx_display_driver_32bpp_rotated_pixelmap_blend */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), changed */ -/* blend function set macro, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_pixelmap_raw_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) { @@ -156,15 +148,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR fco /* */ /* _gx_display_driver_32bpp_rotated_pixelmap_blend */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), changed */ -/* blend function set macro, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_pixelmap_alpha_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -269,15 +252,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR fco /* */ /* _gx_display_driver_32bpp_rotated_pixelmap_blend */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), changed */ -/* blend function set macro, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_palette_pixelmap_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -369,15 +343,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR fco /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), changed */ -/* blend function set macro, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_palette_pixelmap_transparent_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -470,15 +435,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR fco /* */ /* _gx_display_driver_32bpp_rotated_pixelmap_blend */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), changed */ -/* blend function set macro, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_4444argb_pixelmap_alpha_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) { @@ -589,15 +545,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR /* */ /* _gx_display_driver_32bpp_rotated_pixelmap_blend */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), changed */ -/* blend function set macro, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_565rgb_pixelmap_alpha_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -712,15 +659,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* _gx_display_driver_32bpp_rotated_pixelmap_blend */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), changed */ -/* blend function set macro, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_565rgb_pixelmap_raw_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) { @@ -819,12 +757,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_rotated_pixelmap_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) diff --git a/common/src/gx_display_driver_32bpp_rotated_pixelmap_draw.c b/common/src/gx_display_driver_32bpp_rotated_pixelmap_draw.c index efa9ad92..66182cce 100644 --- a/common/src/gx_display_driver_32bpp_rotated_pixelmap_draw.c +++ b/common/src/gx_display_driver_32bpp_rotated_pixelmap_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,12 +63,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_pixelmap_raw_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -160,15 +155,6 @@ GX_RECTANGLE rotated_clip; /* */ /* _gx_display_driver_32bpp_rotated_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), changed */ -/* blend function set macro, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_pixelmap_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -270,15 +256,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR fco /* */ /* _gx_display_driver_32bpp_rotated_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), changed */ -/* blend function set macro, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -472,15 +449,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* _gx_display_driver_32bpp_rotated_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), changed */ -/* blend function set macro, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_pixelmap_compressed_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -649,17 +617,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* _gx_display_driver_32bpp_rotated_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), changed */ -/* blend function set macro, */ -/* moved NULL pointer check to */ -/* caller function, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_palette_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -855,12 +812,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR f /* */ /* _gx_display_driver_32bpp_rotated_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_palette_pixelmap_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -956,12 +907,6 @@ GX_RECTANGLE rotated_clip; /* */ /* _gx_display_driver_32bpp_rotated_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_palette_pixelmap_transparent_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -1053,15 +998,6 @@ GX_RECTANGLE rotated_clip; /* */ /* _gx_display_driver_32bpp_rotated_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), changed */ -/* blend function set macro, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_palette_pixelmap_transparent_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -1267,12 +1203,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR f /* */ /* _gx_display_driver_32bpp_rotated_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_565rgb_pixelmap_raw_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -1368,15 +1298,6 @@ GX_RECTANGLE rotated_clip; /* */ /* _gx_display_driver_32bpp_rotated_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), changed */ -/* blend function set macro, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_565rgb_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -1584,15 +1505,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR /* */ /* _gx_display_driver_32bpp_rotated_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), changed */ -/* blend function set macro, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_565rgb_pixelmap_compressed_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -1853,15 +1765,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* _gx_display_driver_32bpp_rotated_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), changed */ -/* blend function set macro, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_565rgb_pixelmap_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -1978,15 +1881,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* _gx_display_driver_32bpp_rotated_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), changed */ -/* blend function set macro, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_4444argb_pixelmap_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -2095,15 +1989,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR /* */ /* _gx_display_driver_32bpp_rotated_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), changed */ -/* blend function set macro, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_4444argb_pixelmap_compressed_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -2334,16 +2219,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), */ -/* added 8bit palette table */ -/* NULL pointer check, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_rotated_pixelmap_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/common/src/gx_display_driver_32bpp_rotated_pixelmap_rotate.c b/common/src/gx_display_driver_32bpp_rotated_pixelmap_rotate.c index ba833e6b..c4f71a87 100644 --- a/common/src/gx_display_driver_32bpp_rotated_pixelmap_rotate.c +++ b/common/src/gx_display_driver_32bpp_rotated_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -73,15 +74,6 @@ /* */ /* _gx_display_driver_32bpp_rotated_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), changed */ -/* blend function set macro, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_pixelmap_raw_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -364,15 +356,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR fco /* */ /* _gx_display_driver_32bpp_rotated_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), changed */ -/* blend function set macro, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_pixelmap_alpha_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -633,15 +616,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR fco /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), changed */ -/* blend function set macro, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_32bpp_rotated_pixelmap_simple_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -831,12 +805,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR fco /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_rotated_pixelmap_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT rot_cx, INT rot_cy) diff --git a/common/src/gx_display_driver_32bpp_rotated_simple_line_draw.c b/common/src/gx_display_driver_32bpp_rotated_simple_line_draw.c index da688443..413d24d4 100644 --- a/common/src/gx_display_driver_32bpp_rotated_simple_line_draw.c +++ b/common/src/gx_display_driver_32bpp_rotated_simple_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,12 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_rotated_simple_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT ystart, INT xend, INT yend) { diff --git a/common/src/gx_display_driver_32bpp_rotated_vertical_line_draw.c b/common/src/gx_display_driver_32bpp_rotated_vertical_line_draw.c index d30c533c..8369db93 100644 --- a/common/src/gx_display_driver_32bpp_rotated_vertical_line_draw.c +++ b/common/src/gx_display_driver_32bpp_rotated_vertical_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,12 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_rotated_vertical_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT xpos, INT width, GX_COLOR color) { diff --git a/common/src/gx_display_driver_32bpp_rotated_vertical_pattern_line_draw.c b/common/src/gx_display_driver_32bpp_rotated_vertical_pattern_line_draw.c index 01f767fb..8bbcbd55 100644 --- a/common/src/gx_display_driver_32bpp_rotated_vertical_pattern_line_draw.c +++ b/common/src/gx_display_driver_32bpp_rotated_vertical_pattern_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,12 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_rotated_vertical_pattern_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT xpos) { diff --git a/common/src/gx_display_driver_32bpp_row_pitch_get.c b/common/src/gx_display_driver_32bpp_row_pitch_get.c index c15f8102..67ae91ca 100644 --- a/common/src/gx_display_driver_32bpp_row_pitch_get.c +++ b/common/src/gx_display_driver_32bpp_row_pitch_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -56,14 +57,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ USHORT _gx_display_driver_32bpp_row_pitch_get(USHORT width) { diff --git a/common/src/gx_display_driver_32bpp_simple_line_draw.c b/common/src/gx_display_driver_32bpp_simple_line_draw.c index 114272c9..e253423d 100644 --- a/common/src/gx_display_driver_32bpp_simple_line_draw.c +++ b/common/src/gx_display_driver_32bpp_simple_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_simple_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT ystart, INT xend, INT yend) { diff --git a/common/src/gx_display_driver_32bpp_vertical_line_draw.c b/common/src/gx_display_driver_32bpp_vertical_line_draw.c index e73c9e1f..bcc9fcea 100644 --- a/common/src/gx_display_driver_32bpp_vertical_line_draw.c +++ b/common/src/gx_display_driver_32bpp_vertical_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_vertical_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT xpos, INT width, GX_COLOR color) { diff --git a/common/src/gx_display_driver_32bpp_vertical_pattern_line_draw.c b/common/src/gx_display_driver_32bpp_vertical_pattern_line_draw.c index 0935d715..1394a8d7 100644 --- a/common/src/gx_display_driver_32bpp_vertical_pattern_line_draw.c +++ b/common/src/gx_display_driver_32bpp_vertical_pattern_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_32bpp_vertical_pattern_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT xpos) { diff --git a/common/src/gx_display_driver_332rgb_native_color_get.c b/common/src/gx_display_driver_332rgb_native_color_get.c index db9bc00b..24980c98 100644 --- a/common/src/gx_display_driver_332rgb_native_color_get.c +++ b/common/src/gx_display_driver_332rgb_native_color_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_COLOR _gx_display_driver_332rgb_native_color_get(GX_DISPLAY *display, GX_COLOR rawcolor) { diff --git a/common/src/gx_display_driver_332rgb_pixel_blend.c b/common/src/gx_display_driver_332rgb_pixel_blend.c index 2fbcd00d..055d624b 100644 --- a/common/src/gx_display_driver_332rgb_pixel_blend.c +++ b/common/src/gx_display_driver_332rgb_pixel_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -73,14 +74,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_332rgb_pixel_blend(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR fcolor, GX_UBYTE alpha) { diff --git a/common/src/gx_display_driver_332rgb_pixelmap_draw.c b/common/src/gx_display_driver_332rgb_pixelmap_draw.c index 599839f2..8542aa3e 100644 --- a/common/src/gx_display_driver_332rgb_pixelmap_draw.c +++ b/common/src/gx_display_driver_332rgb_pixelmap_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* _gx_display_driver_332rgb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_332rgb_pixelmap_raw_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -142,14 +135,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_332rgb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_332rgb_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -314,14 +299,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_332rgb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_332rgb_pixelmap_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -393,14 +370,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_332rgb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_332rgb_pixelmap_compressed_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -569,14 +538,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_332rgb_pixelmap_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/common/src/gx_display_driver_332rgb_pixelmap_rotate.c b/common/src/gx_display_driver_332rgb_pixelmap_rotate.c index 85e53169..2eb82213 100644 --- a/common/src/gx_display_driver_332rgb_pixelmap_rotate.c +++ b/common/src/gx_display_driver_332rgb_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -75,18 +76,6 @@ /* */ /* _gx_display_driver_332rgb_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_332rgb_pixelmap_simple_alpha_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -221,17 +210,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR col /* */ /* _gx_display_driver_8bpp_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* corrected logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_332rgb_pixelmap_alpha_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -505,17 +483,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR col /* */ /* _gx_display_driver_332rgb_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* corrected logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_332rgb_pixelmap_raw_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -763,14 +730,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR col /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_332rgb_pixelmap_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT rot_cx, INT rot_cy) diff --git a/common/src/gx_display_driver_332rgb_setup.c b/common/src/gx_display_driver_332rgb_setup.c index 61f77d29..92184d06 100644 --- a/common/src/gx_display_driver_332rgb_setup.c +++ b/common/src/gx_display_driver_332rgb_setup.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_332rgb_setup(GX_DISPLAY *display, VOID *aux_data, VOID (*toggle_function)(struct GX_CANVAS_STRUCT *canvas, diff --git a/common/src/gx_display_driver_4444argb_canvas_blend.c b/common/src/gx_display_driver_4444argb_canvas_blend.c index 1ba2ccd3..8fa1ece7 100644 --- a/common/src/gx_display_driver_4444argb_canvas_blend.c +++ b/common/src/gx_display_driver_4444argb_canvas_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -75,14 +76,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_4444argb_canvas_blend(GX_CANVAS *canvas, GX_CANVAS *composite) { diff --git a/common/src/gx_display_driver_4444argb_horizontal_pixelmap_line_draw.c b/common/src/gx_display_driver_4444argb_horizontal_pixelmap_line_draw.c index ffab043a..6fb21dd5 100644 --- a/common/src/gx_display_driver_4444argb_horizontal_pixelmap_line_draw.c +++ b/common/src/gx_display_driver_4444argb_horizontal_pixelmap_line_draw.c @@ -1,5 +1,6 @@ /*************************************************************************** * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at @@ -66,14 +67,6 @@ /* */ /* _gx_display_driver_4444argb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4444argb_horizontal_pixelmap_line_alpha_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info, GX_UBYTE alpha) @@ -162,14 +155,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR /* */ /* _gx_display_driver_4444argb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4444argb_horizontal_pixelmap_line_raw_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info, GX_UBYTE alpha) @@ -253,14 +238,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR /* */ /* _gx_display_driver_4444argb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4444argb_horizontal_pixelmap_line_compressed_alpha_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info, GX_UBYTE alpha) @@ -403,14 +380,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR /* */ /* _gx_display_driver_4444argb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4444argb_horizontal_pixelmap_line_compressed_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info, GX_UBYTE alpha) @@ -538,14 +507,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR /* */ /* _gx_display_driver_4444argb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4444argb_horizontal_pixelmap_line_alpha_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -633,14 +594,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR /* */ /* _gx_display_driver_4444argb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4444argb_horizontal_pixelmap_line_raw_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -719,14 +672,6 @@ GX_PIXELMAP *pixelmap; /* */ /* _gx_display_driver_4444argb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4444argb_horizontal_pixelmap_line_compressed_alpha_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -863,14 +808,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR /* */ /* _gx_display_driver_4444argb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4444argb_horizontal_pixelmap_line_compressed_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -1020,14 +957,6 @@ GX_PIXELMAP *pixelmap; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_4444argb_horizontal_pixelmap_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) diff --git a/common/src/gx_display_driver_4444argb_native_color_get.c b/common/src/gx_display_driver_4444argb_native_color_get.c index 5c7c89e9..f1ff51c6 100644 --- a/common/src/gx_display_driver_4444argb_native_color_get.c +++ b/common/src/gx_display_driver_4444argb_native_color_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_COLOR _gx_display_driver_4444argb_native_color_get(GX_DISPLAY *display, GX_COLOR rawcolor) { diff --git a/common/src/gx_display_driver_4444argb_pixel_blend.c b/common/src/gx_display_driver_4444argb_pixel_blend.c index 5b3c7f5f..938cd17e 100644 --- a/common/src/gx_display_driver_4444argb_pixel_blend.c +++ b/common/src/gx_display_driver_4444argb_pixel_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -79,14 +80,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_4444argb_pixel_blend(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR fcolor, GX_UBYTE alpha) { diff --git a/common/src/gx_display_driver_4444argb_pixelmap_draw.c b/common/src/gx_display_driver_4444argb_pixelmap_draw.c index 6e83ce8a..17296558 100644 --- a/common/src/gx_display_driver_4444argb_pixelmap_draw.c +++ b/common/src/gx_display_driver_4444argb_pixelmap_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* _gx_display_driver_4444argb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4444argb_pixelmap_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -150,14 +143,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_4444argb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4444argb_pixelmap_raw_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -233,14 +218,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_4444argb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4444argb_pixelmap_compressed_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -376,14 +353,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_4444argb_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4444argb_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -523,14 +492,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_4444argb_pixelmap_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/common/src/gx_display_driver_4444argb_pixelmap_rotate.c b/common/src/gx_display_driver_4444argb_pixelmap_rotate.c index 1e57824b..8b36545b 100644 --- a/common/src/gx_display_driver_4444argb_pixelmap_rotate.c +++ b/common/src/gx_display_driver_4444argb_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -80,17 +81,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* corrected logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4444argb_pixelmap_general_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -355,18 +345,6 @@ USHORT alpha[4] = {0}; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4444argb_pixelmap_simple_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -489,14 +467,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x1, INT y1, GX_COLOR c /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_4444argb_pixelmap_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT rot_cx, INT rot_cy) diff --git a/common/src/gx_display_driver_4444argb_setup.c b/common/src/gx_display_driver_4444argb_setup.c index d551ea7e..e92acc69 100644 --- a/common/src/gx_display_driver_4444argb_setup.c +++ b/common/src/gx_display_driver_4444argb_setup.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_4444argb_setup(GX_DISPLAY *display, VOID *aux_data, VOID (*toggle_function)(struct GX_CANVAS_STRUCT *canvas, diff --git a/common/src/gx_display_driver_4bpp_block_move.c b/common/src/gx_display_driver_4bpp_block_move.c index 47c1edd4..046d48c9 100644 --- a/common/src/gx_display_driver_4bpp_block_move.c +++ b/common/src/gx_display_driver_4bpp_block_move.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_4bpp_block_move(GX_DRAW_CONTEXT *context, GX_RECTANGLE *block, INT xshift, INT yshift) diff --git a/common/src/gx_display_driver_4bpp_canvas_copy.c b/common/src/gx_display_driver_4bpp_canvas_copy.c index a605bb92..29d86da3 100644 --- a/common/src/gx_display_driver_4bpp_canvas_copy.c +++ b/common/src/gx_display_driver_4bpp_canvas_copy.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_4bpp_canvas_copy(GX_CANVAS *canvas, GX_CANVAS *composite) { diff --git a/common/src/gx_display_driver_4bpp_glyph_1bit_draw.c b/common/src/gx_display_driver_4bpp_glyph_1bit_draw.c index 480f57a9..dfe36cf4 100644 --- a/common/src/gx_display_driver_4bpp_glyph_1bit_draw.c +++ b/common/src/gx_display_driver_4bpp_glyph_1bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #define WRITE_PIXEL if (alpha & mask) \ diff --git a/common/src/gx_display_driver_4bpp_glyph_4bit_draw.c b/common/src/gx_display_driver_4bpp_glyph_4bit_draw.c index 3fc012f5..4adfb755 100644 --- a/common/src/gx_display_driver_4bpp_glyph_4bit_draw.c +++ b/common/src/gx_display_driver_4bpp_glyph_4bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* */ /* _gx_canvas_text_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_4bpp_glyph_4bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, const GX_GLYPH *glyph) { diff --git a/common/src/gx_display_driver_4bpp_grayscale_setup.c b/common/src/gx_display_driver_4bpp_grayscale_setup.c index 807c8d16..97b06459 100644 --- a/common/src/gx_display_driver_4bpp_grayscale_setup.c +++ b/common/src/gx_display_driver_4bpp_grayscale_setup.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,18 +63,6 @@ static GX_UBYTE mouse_capture_memory[GX_MOUSE_MAX_RESOLUTION * GX_MOUSE_MAX_RESO /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* added rotation angle */ -/* initialization, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_4bpp_grayscale_setup(GX_DISPLAY *display, VOID *aux_data, VOID (*toggle_function)(struct GX_CANVAS_STRUCT *canvas, diff --git a/common/src/gx_display_driver_4bpp_horizontal_line_draw.c b/common/src/gx_display_driver_4bpp_horizontal_line_draw.c index f82185b7..86167ca8 100644 --- a/common/src/gx_display_driver_4bpp_horizontal_line_draw.c +++ b/common/src/gx_display_driver_4bpp_horizontal_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_4bpp_horizontal_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT ypos, INT width, GX_COLOR color) { diff --git a/common/src/gx_display_driver_4bpp_horizontal_pattern_line_draw.c b/common/src/gx_display_driver_4bpp_horizontal_pattern_line_draw.c index 3374093a..518b66a4 100644 --- a/common/src/gx_display_driver_4bpp_horizontal_pattern_line_draw.c +++ b/common/src/gx_display_driver_4bpp_horizontal_pattern_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_4bpp_horizontal_pattern_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT ypos) { diff --git a/common/src/gx_display_driver_4bpp_horizontal_pixelmap_line_draw.c b/common/src/gx_display_driver_4bpp_horizontal_pixelmap_line_draw.c index 1af88702..df74c4b9 100644 --- a/common/src/gx_display_driver_4bpp_horizontal_pixelmap_line_draw.c +++ b/common/src/gx_display_driver_4bpp_horizontal_pixelmap_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* _gx_display_driver_4bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4bpp_horizontal_pixelmap_line_raw_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -184,14 +177,6 @@ GX_PIXELMAP *pixelmap; /* */ /* _gx_display_driver_4bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4bpp_horizontal_pixelmap_line_transparent_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -312,14 +297,6 @@ GX_PIXELMAP *pixelmap = info -> pixelmap; /* */ /* _gx_display_driver_4bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4bpp_horizontal_pixelmap_line_compressed_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -526,14 +503,6 @@ GX_UBYTE getmask = 0; /* */ /* _gx_display_driver_4bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4bpp_horizontal_pixelmap_line_compressed_transparent_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -722,14 +691,6 @@ GX_UBYTE putmask; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_4bpp_horizontal_pixelmap_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) diff --git a/common/src/gx_display_driver_4bpp_mouse_capture.c b/common/src/gx_display_driver_4bpp_mouse_capture.c index 34af67c5..82ed1f25 100644 --- a/common/src/gx_display_driver_4bpp_mouse_capture.c +++ b/common/src/gx_display_driver_4bpp_mouse_capture.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -54,14 +55,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_MOUSE_SUPPORT) #if !defined(GX_HARDWARE_MOUSE_SUPPORT) diff --git a/common/src/gx_display_driver_4bpp_mouse_restore.c b/common/src/gx_display_driver_4bpp_mouse_restore.c index 1f92d510..b566fc18 100644 --- a/common/src/gx_display_driver_4bpp_mouse_restore.c +++ b/common/src/gx_display_driver_4bpp_mouse_restore.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -54,14 +55,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_MOUSE_SUPPORT) #if !defined(GX_HARDWARE_MOUSE_SUPPORT) diff --git a/common/src/gx_display_driver_4bpp_native_color_get.c b/common/src/gx_display_driver_4bpp_native_color_get.c index 9ccb1d7c..48982dcf 100644 --- a/common/src/gx_display_driver_4bpp_native_color_get.c +++ b/common/src/gx_display_driver_4bpp_native_color_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_COLOR _gx_display_driver_4bpp_native_color_get(GX_DISPLAY *display, GX_COLOR rawcolor) { diff --git a/common/src/gx_display_driver_4bpp_pixel_write.c b/common/src/gx_display_driver_4bpp_pixel_write.c index 9f0c9c84..c679795d 100644 --- a/common/src/gx_display_driver_4bpp_pixel_write.c +++ b/common/src/gx_display_driver_4bpp_pixel_write.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,14 +58,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_4bpp_pixel_write(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR color) { diff --git a/common/src/gx_display_driver_4bpp_pixelmap_draw.c b/common/src/gx_display_driver_4bpp_pixelmap_draw.c index 391bf74d..fe5b5ac5 100644 --- a/common/src/gx_display_driver_4bpp_pixelmap_draw.c +++ b/common/src/gx_display_driver_4bpp_pixelmap_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* _gx_display_driver_4bpp_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4bpp_pixelmap_raw_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -171,14 +164,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_4bpp_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4bpp_pixelmap_transparent_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -296,14 +281,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_4bpp_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4bpp_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -500,14 +477,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* _gx_display_driver_4bpp_pixelmap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4bpp_pixelmap_compressed_transparent_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -683,14 +652,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_4bpp_pixelmap_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/common/src/gx_display_driver_4bpp_pixelmap_rotate.c b/common/src/gx_display_driver_4bpp_pixelmap_rotate.c index 4b2cf441..aa84d7bc 100644 --- a/common/src/gx_display_driver_4bpp_pixelmap_rotate.c +++ b/common/src/gx_display_driver_4bpp_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,17 +66,6 @@ /* */ /* _gx_display_driver_4bpp_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* corrected logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4bpp_pixelmap_raw_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -225,17 +215,6 @@ GX_UBYTE color; /* */ /* _gx_display_driver_4bpp_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* corrected logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4bpp_pixelmap_transparent_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -399,18 +378,6 @@ INT newypos; /* */ /* _gx_display_driver_4bpp_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4bpp_pixelmap_simple_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -624,18 +591,6 @@ GX_UBYTE color; /* */ /* _gx_display_driver_4bpp_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_4bpp_pixelmap_simple_transparent_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -894,14 +849,6 @@ GX_UBYTE pixel; /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_4bpp_pixelmap_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT rot_cx, INT rot_cy) diff --git a/common/src/gx_display_driver_4bpp_row_pitch_get.c b/common/src/gx_display_driver_4bpp_row_pitch_get.c index 1bf58d29..8f2755ce 100644 --- a/common/src/gx_display_driver_4bpp_row_pitch_get.c +++ b/common/src/gx_display_driver_4bpp_row_pitch_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,14 +58,6 @@ /* _gx_display_driver_4bpp_pixel_write */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ USHORT _gx_display_driver_4bpp_row_pitch_get(USHORT width) { diff --git a/common/src/gx_display_driver_4bpp_simple_line_draw.c b/common/src/gx_display_driver_4bpp_simple_line_draw.c index bc04d823..5ac1ec39 100644 --- a/common/src/gx_display_driver_4bpp_simple_line_draw.c +++ b/common/src/gx_display_driver_4bpp_simple_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_4bpp_simple_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT ystart, INT xend, INT yend) { diff --git a/common/src/gx_display_driver_4bpp_vertical_line_draw.c b/common/src/gx_display_driver_4bpp_vertical_line_draw.c index 6eee4826..9dacb20b 100644 --- a/common/src/gx_display_driver_4bpp_vertical_line_draw.c +++ b/common/src/gx_display_driver_4bpp_vertical_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_4bpp_vertical_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT xpos, INT width, GX_COLOR color) { diff --git a/common/src/gx_display_driver_4bpp_vertical_pattern_line_draw.c b/common/src/gx_display_driver_4bpp_vertical_pattern_line_draw.c index d7f5554c..d3dcaa81 100644 --- a/common/src/gx_display_driver_4bpp_vertical_pattern_line_draw.c +++ b/common/src/gx_display_driver_4bpp_vertical_pattern_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,18 +59,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_4bpp_vertical_pattern_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT xpos) { diff --git a/common/src/gx_display_driver_565rgb_canvas_blend.c b/common/src/gx_display_driver_565rgb_canvas_blend.c index 191090e0..4157e3e3 100644 --- a/common/src/gx_display_driver_565rgb_canvas_blend.c +++ b/common/src/gx_display_driver_565rgb_canvas_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -76,16 +77,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added canvas status check, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_565rgb_canvas_blend(GX_CANVAS *canvas, GX_CANVAS *composite) { diff --git a/common/src/gx_display_driver_565rgb_glyph_1bit_draw.c b/common/src/gx_display_driver_565rgb_glyph_1bit_draw.c index 918b20ff..346e2010 100644 --- a/common/src/gx_display_driver_565rgb_glyph_1bit_draw.c +++ b/common/src/gx_display_driver_565rgb_glyph_1bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -81,21 +82,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 04-25-2022 Ting Zhu Modified comment(s), */ -/* fixed access violation bug, */ -/* resulting in version 6.1.11 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_16bpp_glyph_1bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) { diff --git a/common/src/gx_display_driver_565rgb_horizontal_pixelmap_line_draw.c b/common/src/gx_display_driver_565rgb_horizontal_pixelmap_line_draw.c index acaf7db1..83b6ca9a 100644 --- a/common/src/gx_display_driver_565rgb_horizontal_pixelmap_line_draw.c +++ b/common/src/gx_display_driver_565rgb_horizontal_pixelmap_line_draw.c @@ -1,5 +1,6 @@ /*************************************************************************** * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at @@ -67,14 +68,6 @@ /* */ /* _gx_display_driver_565rgb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_horizontal_pixelmap_line_raw_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, @@ -160,14 +153,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR /* */ /* _gx_display_driver_565rgb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_horizontal_pixelmap_line_alpha_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, @@ -266,14 +251,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* _gx_display_driver_565rgb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_horizontal_pixelmap_line_compressed_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info, GX_UBYTE alpha) { @@ -400,14 +377,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR /* */ /* _gx_display_driver_565rgb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_horizontal_pixelmap_line_compressed_alpha_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, @@ -563,18 +532,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* _gx_display_driver_565rgb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_horizontal_pixelmap_line_raw_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, @@ -657,14 +614,6 @@ GX_PIXELMAP *pixelmap; /* */ /* _gx_display_driver_565rgb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_horizontal_pixelmap_line_alpha_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -753,18 +702,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* _gx_display_driver_565rgb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_horizontal_pixelmap_line_compressed_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -892,14 +829,6 @@ GX_PIXELMAP *pixelmap; /* */ /* _gx_display_driver_565rgb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_horizontal_pixelmap_line_compressed_alpha_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -1066,14 +995,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_565rgb_horizontal_pixelmap_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) diff --git a/common/src/gx_display_driver_565rgb_jpeg_draw.c b/common/src/gx_display_driver_565rgb_jpeg_draw.c index 30c4f1cd..f0ecb5b5 100644 --- a/common/src/gx_display_driver_565rgb_jpeg_draw.c +++ b/common/src/gx_display_driver_565rgb_jpeg_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,18 +65,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* removed a parameter from */ -/* jpeg mcu decode function, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) VOID _gx_display_driver_565rgb_jpeg_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/common/src/gx_display_driver_565rgb_native_color_get.c b/common/src/gx_display_driver_565rgb_native_color_get.c index caa42478..d3757272 100644 --- a/common/src/gx_display_driver_565rgb_native_color_get.c +++ b/common/src/gx_display_driver_565rgb_native_color_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_COLOR _gx_display_driver_565rgb_native_color_get(GX_DISPLAY *display, GX_COLOR rawcolor) { diff --git a/common/src/gx_display_driver_565rgb_pixel_blend.c b/common/src/gx_display_driver_565rgb_pixel_blend.c index fc0df316..958c9e43 100644 --- a/common/src/gx_display_driver_565rgb_pixel_blend.c +++ b/common/src/gx_display_driver_565rgb_pixel_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -75,18 +76,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_565rgb_pixel_blend(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR fcolor, GX_UBYTE alpha) { diff --git a/common/src/gx_display_driver_565rgb_png_draw.c b/common/src/gx_display_driver_565rgb_png_draw.c index b0e2994f..960ed429 100644 --- a/common/src/gx_display_driver_565rgb_png_draw.c +++ b/common/src/gx_display_driver_565rgb_png_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) VOID _gx_display_driver_565rgb_png_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/common/src/gx_display_driver_565rgb_rotated_canvas_blend.c b/common/src/gx_display_driver_565rgb_rotated_canvas_blend.c index d5d29587..ffdff0df 100644 --- a/common/src/gx_display_driver_565rgb_rotated_canvas_blend.c +++ b/common/src/gx_display_driver_565rgb_rotated_canvas_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -76,12 +77,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_565rgb_rotated_canvas_blend(GX_CANVAS *canvas, GX_CANVAS *composite) { diff --git a/common/src/gx_display_driver_565rgb_rotated_glyph_1bit_draw.c b/common/src/gx_display_driver_565rgb_rotated_glyph_1bit_draw.c index 8223f415..0f752a76 100644 --- a/common/src/gx_display_driver_565rgb_rotated_glyph_1bit_draw.c +++ b/common/src/gx_display_driver_565rgb_rotated_glyph_1bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -81,12 +82,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_565rgb_rotated_glyph_1bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) { diff --git a/common/src/gx_display_driver_565rgb_rotated_horizontal_pixelmap_line_draw.c b/common/src/gx_display_driver_565rgb_rotated_horizontal_pixelmap_line_draw.c index 006e9700..915dfb4b 100644 --- a/common/src/gx_display_driver_565rgb_rotated_horizontal_pixelmap_line_draw.c +++ b/common/src/gx_display_driver_565rgb_rotated_horizontal_pixelmap_line_draw.c @@ -1,5 +1,6 @@ /*************************************************************************** * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at @@ -67,12 +68,6 @@ /* */ /* _gx_display_driver_565rgb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_horizontal_pixelmap_line_raw_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, @@ -152,12 +147,6 @@ GX_PIXELMAP *pixelmap; /* */ /* _gx_display_driver_565rgb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_horizontal_pixelmap_line_alpha_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, @@ -250,12 +239,6 @@ INT offset; /* */ /* _gx_display_driver_565rgb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_horizontal_pixelmap_line_compressed_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info, GX_UBYTE alpha) { @@ -378,12 +361,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR /* */ /* _gx_display_driver_565rgb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_horizontal_pixelmap_line_compressed_alpha_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, @@ -534,12 +511,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* _gx_display_driver_565rgb_rotated_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_horizontal_pixelmap_line_raw_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, @@ -624,12 +595,6 @@ GX_PIXELMAP *pixelmap; /* */ /* _gx_display_driver_565rgb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_horizontal_pixelmap_line_alpha_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -712,12 +677,6 @@ INT offset; /* */ /* _gx_display_driver_565rgb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_horizontal_pixelmap_line_compressed_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -845,12 +804,6 @@ GX_PIXELMAP *pixelmap; /* */ /* _gx_display_driver_565rgb_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_565rgb_rotated_horizontal_pixelmap_line_compressed_alpha_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -1012,12 +965,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_565rgb_rotated_horizontal_pixelmap_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT x, GX_FILL_PIXELMAP_INFO *info) diff --git a/common/src/gx_display_driver_565rgb_rotated_jpeg_draw.c b/common/src/gx_display_driver_565rgb_rotated_jpeg_draw.c index 843d317f..5ed74f1f 100644 --- a/common/src/gx_display_driver_565rgb_rotated_jpeg_draw.c +++ b/common/src/gx_display_driver_565rgb_rotated_jpeg_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,16 +65,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* removed a parameter from */ -/* jpeg mcu decode function, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) VOID _gx_display_driver_565rgb_rotated_jpeg_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/common/src/gx_display_driver_565rgb_rotated_pixel_blend.c b/common/src/gx_display_driver_565rgb_rotated_pixel_blend.c index b5ebcb5f..e70dd1c6 100644 --- a/common/src/gx_display_driver_565rgb_rotated_pixel_blend.c +++ b/common/src/gx_display_driver_565rgb_rotated_pixel_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -75,12 +76,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_565rgb_rotated_pixel_blend(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR fcolor, GX_UBYTE alpha) { diff --git a/common/src/gx_display_driver_565rgb_rotated_png_draw.c b/common/src/gx_display_driver_565rgb_rotated_png_draw.c index e7575972..5caf8815 100644 --- a/common/src/gx_display_driver_565rgb_rotated_png_draw.c +++ b/common/src/gx_display_driver_565rgb_rotated_png_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,12 +67,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) VOID _gx_display_driver_565rgb_rotated_png_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/common/src/gx_display_driver_565rgb_rotated_setup.c b/common/src/gx_display_driver_565rgb_rotated_setup.c index 76355c24..08b7a341 100644 --- a/common/src/gx_display_driver_565rgb_rotated_setup.c +++ b/common/src/gx_display_driver_565rgb_rotated_setup.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,12 +59,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_565rgb_rotated_setup(GX_DISPLAY *display, VOID *aux_data, VOID (*toggle_function)(struct GX_CANVAS_STRUCT *canvas, diff --git a/common/src/gx_display_driver_565rgb_setup.c b/common/src/gx_display_driver_565rgb_setup.c index 061a6bc1..876b8c27 100644 --- a/common/src/gx_display_driver_565rgb_setup.c +++ b/common/src/gx_display_driver_565rgb_setup.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,18 +62,6 @@ static USHORT mouse_capture_memory[GX_MOUSE_MAX_RESOLUTION * GX_MOUSE_MAX_RESOLU /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* added rotation angle */ -/* initialization, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_565rgb_setup(GX_DISPLAY *display, VOID *aux_data, VOID (*toggle_function)(struct GX_CANVAS_STRUCT *canvas, diff --git a/common/src/gx_display_driver_8bit_palette_native_color_get.c b/common/src/gx_display_driver_8bit_palette_native_color_get.c index f338c4e9..c638c39f 100644 --- a/common/src/gx_display_driver_8bit_palette_native_color_get.c +++ b/common/src/gx_display_driver_8bit_palette_native_color_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_COLOR _gx_display_driver_8bit_palette_native_color_get(GX_DISPLAY *display, GX_COLOR rawcolor) { diff --git a/common/src/gx_display_driver_8bit_palette_rotated_setup.c b/common/src/gx_display_driver_8bit_palette_rotated_setup.c index 2e993f08..37330869 100644 --- a/common/src/gx_display_driver_8bit_palette_rotated_setup.c +++ b/common/src/gx_display_driver_8bit_palette_rotated_setup.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,12 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bit_palette_rotated_setup(GX_DISPLAY *display, VOID *aux_data, VOID (*toggle_function)(struct GX_CANVAS_STRUCT *canvas, diff --git a/common/src/gx_display_driver_8bit_palette_setup.c b/common/src/gx_display_driver_8bit_palette_setup.c index 98ac111d..e1497183 100644 --- a/common/src/gx_display_driver_8bit_palette_setup.c +++ b/common/src/gx_display_driver_8bit_palette_setup.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,18 +65,6 @@ static GX_UBYTE mouse_capture_memory[GX_MOUSE_MAX_RESOLUTION * GX_MOUSE_MAX_RESO /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* added rotation angle */ -/* initialization, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bit_palette_setup(GX_DISPLAY *display, VOID *aux_data, VOID (*toggle_function)(struct GX_CANVAS_STRUCT *canvas, diff --git a/common/src/gx_display_driver_8bpp_block_move.c b/common/src/gx_display_driver_8bpp_block_move.c index 29d044a5..93db9282 100644 --- a/common/src/gx_display_driver_8bpp_block_move.c +++ b/common/src/gx_display_driver_8bpp_block_move.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_block_move(GX_DRAW_CONTEXT *context, GX_RECTANGLE *block, INT xshift, INT yshift) diff --git a/common/src/gx_display_driver_8bpp_canvas_copy.c b/common/src/gx_display_driver_8bpp_canvas_copy.c index a53c1102..c699d6d7 100644 --- a/common/src/gx_display_driver_8bpp_canvas_copy.c +++ b/common/src/gx_display_driver_8bpp_canvas_copy.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_canvas_copy(GX_CANVAS *canvas, GX_CANVAS *composite) { diff --git a/common/src/gx_display_driver_8bpp_glyph_1bit_draw.c b/common/src/gx_display_driver_8bpp_glyph_1bit_draw.c index 2b678dde..101f9ffc 100644 --- a/common/src/gx_display_driver_8bpp_glyph_1bit_draw.c +++ b/common/src/gx_display_driver_8bpp_glyph_1bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -82,17 +83,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 04-25-2022 Ting Zhu Modified comment(s), */ -/* fixed access violation bug, */ -/* resulting in version 6.1.11 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_glyph_1bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) { diff --git a/common/src/gx_display_driver_8bpp_glyph_3bit_draw.c b/common/src/gx_display_driver_8bpp_glyph_3bit_draw.c index 950d2e7c..86eaf785 100644 --- a/common/src/gx_display_driver_8bpp_glyph_3bit_draw.c +++ b/common/src/gx_display_driver_8bpp_glyph_3bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* */ /* _gx_canvas_text_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_glyph_3bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) { diff --git a/common/src/gx_display_driver_8bpp_glyph_4bit_draw.c b/common/src/gx_display_driver_8bpp_glyph_4bit_draw.c index d85710e7..c790c749 100644 --- a/common/src/gx_display_driver_8bpp_glyph_4bit_draw.c +++ b/common/src/gx_display_driver_8bpp_glyph_4bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* */ /* _gx_canvas_text_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_glyph_4bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) { diff --git a/common/src/gx_display_driver_8bpp_horizontal_line_draw.c b/common/src/gx_display_driver_8bpp_horizontal_line_draw.c index 6e1403da..01b59c73 100644 --- a/common/src/gx_display_driver_8bpp_horizontal_line_draw.c +++ b/common/src/gx_display_driver_8bpp_horizontal_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_horizontal_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT ypos, INT width, GX_COLOR color) { diff --git a/common/src/gx_display_driver_8bpp_horizontal_pattern_line_draw.c b/common/src/gx_display_driver_8bpp_horizontal_pattern_line_draw.c index ae7f4396..53d41e6c 100644 --- a/common/src/gx_display_driver_8bpp_horizontal_pattern_line_draw.c +++ b/common/src/gx_display_driver_8bpp_horizontal_pattern_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_horizontal_pattern_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT ypos) { diff --git a/common/src/gx_display_driver_8bpp_horizontal_pixelmap_line_draw.c b/common/src/gx_display_driver_8bpp_horizontal_pixelmap_line_draw.c index 8d3865a7..15e5c9a8 100644 --- a/common/src/gx_display_driver_8bpp_horizontal_pixelmap_line_draw.c +++ b/common/src/gx_display_driver_8bpp_horizontal_pixelmap_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ /* */ /* _gx_display_driver_8bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_horizontal_pixelmap_line_raw_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info, GX_UBYTE alpha) @@ -157,14 +150,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *, INT, INT, GX_COLOR, GX_UBYTE /* */ /* _gx_display_driver_8bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_horizontal_pixelmap_line_compressed_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info, GX_UBYTE alpha) @@ -294,14 +279,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *, INT, INT, GX_COLOR, GX_UBYTE /* */ /* _gx_display_driver_8bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_horizontal_pixelmap_line_alpha_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info, GX_UBYTE alpha) @@ -397,14 +374,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* _gx_display_driver_8bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_horizontal_pixelmap_line_compressed_alpha_blend(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info, GX_UBYTE alpha) @@ -545,14 +514,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *, INT, INT, GX_COLOR, GX_UBYTE); /* */ /* _gx_display_driver_8bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_horizontal_pixelmap_line_raw_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -629,14 +590,6 @@ GX_PIXELMAP *pixelmap; /* */ /* _gx_display_driver_8bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_horizontal_pixelmap_line_compressed_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -763,14 +716,6 @@ GX_PIXELMAP *pixelmap; /* */ /* _gx_display_driver_8bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_horizontal_pixelmap_line_transparent_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -854,14 +799,6 @@ GX_UBYTE pixel; /* */ /* _gx_display_driver_8bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_horizontal_pixelmap_line_compressed_transparent_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -1005,14 +942,6 @@ GX_PIXELMAP *pixelmap; /* */ /* _gx_display_driver_8bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_horizontal_pixelmap_line_alpha_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -1102,14 +1031,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* _gx_display_driver_8bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_horizontal_pixelmap_line_compressed_alpha_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -1264,14 +1185,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_horizontal_pixelmap_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -1376,14 +1289,6 @@ VOID _gx_display_driver_8bpp_horizontal_pixelmap_line_draw(GX_DRAW_CONTEXT *cont /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_332rgb_horizontal_pixelmap_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) diff --git a/common/src/gx_display_driver_8bpp_mouse_capture.c b/common/src/gx_display_driver_8bpp_mouse_capture.c index a05c2eac..56e17954 100644 --- a/common/src/gx_display_driver_8bpp_mouse_capture.c +++ b/common/src/gx_display_driver_8bpp_mouse_capture.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -54,14 +55,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_MOUSE_SUPPORT) #if !defined(GX_HARDWARE_MOUSE_SUPPORT) diff --git a/common/src/gx_display_driver_8bpp_mouse_restore.c b/common/src/gx_display_driver_8bpp_mouse_restore.c index b367e8db..21eed9bf 100644 --- a/common/src/gx_display_driver_8bpp_mouse_restore.c +++ b/common/src/gx_display_driver_8bpp_mouse_restore.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -54,14 +55,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_MOUSE_SUPPORT) #if !defined(GX_HARDWARE_MOUSE_SUPPORT) diff --git a/common/src/gx_display_driver_8bpp_pixel_write.c b/common/src/gx_display_driver_8bpp_pixel_write.c index dd7f55dc..712ec801 100644 --- a/common/src/gx_display_driver_8bpp_pixel_write.c +++ b/common/src/gx_display_driver_8bpp_pixel_write.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_pixel_write(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR color) { diff --git a/common/src/gx_display_driver_8bpp_pixelmap_blend.c b/common/src/gx_display_driver_8bpp_pixelmap_blend.c index 0c6b9eef..6c797849 100644 --- a/common/src/gx_display_driver_8bpp_pixelmap_blend.c +++ b/common/src/gx_display_driver_8bpp_pixelmap_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* _gx_display_driver_8bpp_pixelmap_blend */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_pixelmap_raw_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -141,14 +134,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR fco /* */ /* _gx_display_driver_8bpp_pixelmap_blend */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_pixelmap_alpha_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -243,14 +228,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_pixelmap_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) diff --git a/common/src/gx_display_driver_8bpp_pixelmap_draw.c b/common/src/gx_display_driver_8bpp_pixelmap_draw.c index 60d043a6..bc5bb65a 100644 --- a/common/src/gx_display_driver_8bpp_pixelmap_draw.c +++ b/common/src/gx_display_driver_8bpp_pixelmap_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,14 +58,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_pixelmap_raw_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -139,18 +132,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -307,14 +288,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_pixelmap_transparent_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -397,18 +370,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_pixelmap_compressed_transparent_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -580,14 +541,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_pixelmap_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/common/src/gx_display_driver_8bpp_pixelmap_rotate.c b/common/src/gx_display_driver_8bpp_pixelmap_rotate.c index 0a2703c0..9b7bf79f 100644 --- a/common/src/gx_display_driver_8bpp_pixelmap_rotate.c +++ b/common/src/gx_display_driver_8bpp_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,17 +66,6 @@ /* */ /* _gx_display_driver_8bpp_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* corrected logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_pixelmap_raw_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -195,17 +185,6 @@ INT newypos; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* corrected logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_pixelmap_transparent_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -329,18 +308,6 @@ INT newypos; /* */ /* _gx_display_driver_8bpp_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_pixelmap_simple_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -481,18 +448,6 @@ INT newypos; /* */ /* _gx_display_driver_8bpp_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_pixelmap_simple_transparent_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -654,14 +609,6 @@ INT newypos; /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_pixelmap_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT rot_cx, INT rot_cy) diff --git a/common/src/gx_display_driver_8bpp_rotated_block_move.c b/common/src/gx_display_driver_8bpp_rotated_block_move.c index cc5fee4b..987b5681 100644 --- a/common/src/gx_display_driver_8bpp_rotated_block_move.c +++ b/common/src/gx_display_driver_8bpp_rotated_block_move.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,12 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_rotated_block_move(GX_DRAW_CONTEXT *context, GX_RECTANGLE *block, INT xshift, INT yshift) diff --git a/common/src/gx_display_driver_8bpp_rotated_canvas_copy.c b/common/src/gx_display_driver_8bpp_rotated_canvas_copy.c index 226a8ff4..078056d4 100644 --- a/common/src/gx_display_driver_8bpp_rotated_canvas_copy.c +++ b/common/src/gx_display_driver_8bpp_rotated_canvas_copy.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,12 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_rotated_canvas_copy(GX_CANVAS *canvas, GX_CANVAS *composite) { diff --git a/common/src/gx_display_driver_8bpp_rotated_glyph_1bit_draw.c b/common/src/gx_display_driver_8bpp_rotated_glyph_1bit_draw.c index e1cde358..c99ddde0 100644 --- a/common/src/gx_display_driver_8bpp_rotated_glyph_1bit_draw.c +++ b/common/src/gx_display_driver_8bpp_rotated_glyph_1bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -82,12 +83,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_rotated_glyph_1bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) { diff --git a/common/src/gx_display_driver_8bpp_rotated_glyph_3bit_draw.c b/common/src/gx_display_driver_8bpp_rotated_glyph_3bit_draw.c index 891c703e..052edbf4 100644 --- a/common/src/gx_display_driver_8bpp_rotated_glyph_3bit_draw.c +++ b/common/src/gx_display_driver_8bpp_rotated_glyph_3bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,12 +66,6 @@ /* */ /* _gx_canvas_text_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_rotated_glyph_3bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) { diff --git a/common/src/gx_display_driver_8bpp_rotated_glyph_4bit_draw.c b/common/src/gx_display_driver_8bpp_rotated_glyph_4bit_draw.c index 381d1024..cc6d76d0 100644 --- a/common/src/gx_display_driver_8bpp_rotated_glyph_4bit_draw.c +++ b/common/src/gx_display_driver_8bpp_rotated_glyph_4bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,12 +66,6 @@ /* */ /* _gx_canvas_text_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_rotated_glyph_4bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) { diff --git a/common/src/gx_display_driver_8bpp_rotated_horizontal_line_draw.c b/common/src/gx_display_driver_8bpp_rotated_horizontal_line_draw.c index 7b4024dc..667f6e73 100644 --- a/common/src/gx_display_driver_8bpp_rotated_horizontal_line_draw.c +++ b/common/src/gx_display_driver_8bpp_rotated_horizontal_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,12 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_rotated_horizontal_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT ypos, INT width, GX_COLOR color) { diff --git a/common/src/gx_display_driver_8bpp_rotated_horizontal_pattern_line_draw.c b/common/src/gx_display_driver_8bpp_rotated_horizontal_pattern_line_draw.c index 362f0e62..67e92104 100644 --- a/common/src/gx_display_driver_8bpp_rotated_horizontal_pattern_line_draw.c +++ b/common/src/gx_display_driver_8bpp_rotated_horizontal_pattern_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,12 +63,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_rotated_horizontal_pattern_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT ypos) { diff --git a/common/src/gx_display_driver_8bpp_rotated_horizontal_pixelmap_line_draw.c b/common/src/gx_display_driver_8bpp_rotated_horizontal_pixelmap_line_draw.c index 18860127..a91ad327 100644 --- a/common/src/gx_display_driver_8bpp_rotated_horizontal_pixelmap_line_draw.c +++ b/common/src/gx_display_driver_8bpp_rotated_horizontal_pixelmap_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,12 +60,6 @@ /* */ /* _gx_display_driver_8bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_rotated_horizontal_pixelmap_line_raw_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -143,12 +138,6 @@ GX_PIXELMAP *pixelmap; /* */ /* _gx_display_driver_8bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_rotated_horizontal_pixelmap_line_compressed_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -277,12 +266,6 @@ GX_PIXELMAP *pixelmap; /* */ /* _gx_display_driver_8bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_rotated_horizontal_pixelmap_line_transparent_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -367,12 +350,6 @@ GX_UBYTE pixel; /* */ /* _gx_display_driver_8bpp_horizontal_pixelmap_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_rotated_horizontal_pixelmap_line_compressed_transparent_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -517,15 +494,6 @@ GX_PIXELMAP *pixelmap; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), */ -/* removed redundant code, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_rotated_horizontal_pixelmap_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT x, GX_FILL_PIXELMAP_INFO *info) diff --git a/common/src/gx_display_driver_8bpp_rotated_pixel_write.c b/common/src/gx_display_driver_8bpp_rotated_pixel_write.c index 8be45f11..9e32c3f2 100644 --- a/common/src/gx_display_driver_8bpp_rotated_pixel_write.c +++ b/common/src/gx_display_driver_8bpp_rotated_pixel_write.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,12 +59,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_rotated_pixel_write(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLOR color) { diff --git a/common/src/gx_display_driver_8bpp_rotated_pixelmap_draw.c b/common/src/gx_display_driver_8bpp_rotated_pixelmap_draw.c index 59d18862..58961119 100644 --- a/common/src/gx_display_driver_8bpp_rotated_pixelmap_draw.c +++ b/common/src/gx_display_driver_8bpp_rotated_pixelmap_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,12 +58,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_rotated_pixelmap_raw_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -155,12 +150,6 @@ GX_RECTANGLE rotated_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_rotated_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -315,12 +304,6 @@ GX_RECTANGLE rotated_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_rotated_pixelmap_transparent_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -421,12 +404,6 @@ GX_RECTANGLE rotated_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_rotated_pixelmap_compressed_transparent_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -592,12 +569,6 @@ GX_RECTANGLE rotated_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_rotated_pixelmap_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/common/src/gx_display_driver_8bpp_rotated_pixelmap_rotate.c b/common/src/gx_display_driver_8bpp_rotated_pixelmap_rotate.c index 038aa76b..7612dae2 100644 --- a/common/src/gx_display_driver_8bpp_rotated_pixelmap_rotate.c +++ b/common/src/gx_display_driver_8bpp_rotated_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,12 +66,6 @@ /* */ /* _gx_display_driver_8bpp_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_rotated_pixelmap_raw_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -226,12 +221,6 @@ INT newypos; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_rotated_pixelmap_transparent_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -388,12 +377,6 @@ INT newypos; /* */ /* _gx_display_driver_8bpp_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_rotated_pixelmap_simple_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -559,12 +542,6 @@ else /* */ /* _gx_display_driver_8bpp_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_8bpp_rotated_pixelmap_simple_transparent_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT cx, INT cy) @@ -743,12 +720,6 @@ INT newypos; /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_rotated_pixelmap_rotate(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, INT angle, INT rot_cx, INT rot_cy) diff --git a/common/src/gx_display_driver_8bpp_rotated_simple_line_draw.c b/common/src/gx_display_driver_8bpp_rotated_simple_line_draw.c index d0d27d15..c22a39b6 100644 --- a/common/src/gx_display_driver_8bpp_rotated_simple_line_draw.c +++ b/common/src/gx_display_driver_8bpp_rotated_simple_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,12 +67,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_rotated_simple_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT ystart, INT xend, INT yend) { diff --git a/common/src/gx_display_driver_8bpp_rotated_vertical_line_draw.c b/common/src/gx_display_driver_8bpp_rotated_vertical_line_draw.c index 6d901f3c..5d2f773a 100644 --- a/common/src/gx_display_driver_8bpp_rotated_vertical_line_draw.c +++ b/common/src/gx_display_driver_8bpp_rotated_vertical_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,12 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_rotated_vertical_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT xpos, INT width, GX_COLOR color) { diff --git a/common/src/gx_display_driver_8bpp_rotated_vertical_pattern_line_draw.c b/common/src/gx_display_driver_8bpp_rotated_vertical_pattern_line_draw.c index 8fcd0ec0..65199cae 100644 --- a/common/src/gx_display_driver_8bpp_rotated_vertical_pattern_line_draw.c +++ b/common/src/gx_display_driver_8bpp_rotated_vertical_pattern_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,12 +61,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_rotated_vertical_pattern_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT xpos) { diff --git a/common/src/gx_display_driver_8bpp_row_pitch_get.c b/common/src/gx_display_driver_8bpp_row_pitch_get.c index 52b61688..1632c0d7 100644 --- a/common/src/gx_display_driver_8bpp_row_pitch_get.c +++ b/common/src/gx_display_driver_8bpp_row_pitch_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -56,14 +57,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ USHORT _gx_display_driver_8bpp_row_pitch_get(USHORT width) { diff --git a/common/src/gx_display_driver_8bpp_simple_line_draw.c b/common/src/gx_display_driver_8bpp_simple_line_draw.c index 04417294..97e535fa 100644 --- a/common/src/gx_display_driver_8bpp_simple_line_draw.c +++ b/common/src/gx_display_driver_8bpp_simple_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_simple_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT ystart, INT xend, INT yend) { diff --git a/common/src/gx_display_driver_8bpp_vertical_line_draw.c b/common/src/gx_display_driver_8bpp_vertical_line_draw.c index 9f979d8e..de65e54e 100644 --- a/common/src/gx_display_driver_8bpp_vertical_line_draw.c +++ b/common/src/gx_display_driver_8bpp_vertical_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_vertical_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT xpos, INT width, GX_COLOR color) { diff --git a/common/src/gx_display_driver_8bpp_vertical_pattern_line_draw.c b/common/src/gx_display_driver_8bpp_vertical_pattern_line_draw.c index 3b4101ad..26103746 100644 --- a/common/src/gx_display_driver_8bpp_vertical_pattern_line_draw.c +++ b/common/src/gx_display_driver_8bpp_vertical_pattern_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_8bpp_vertical_pattern_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT xpos) { diff --git a/common/src/gx_display_driver_arc_clipping_get.c b/common/src/gx_display_driver_arc_clipping_get.c index a0870998..2c03a389 100644 --- a/common/src/gx_display_driver_arc_clipping_get.c +++ b/common/src/gx_display_driver_arc_clipping_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ARC_DRAWING_SUPPORT) VOID _gx_display_driver_arc_clipping_get(INT xcenter, INT ycenter, UINT r, INT start_angle, INT end_angle, diff --git a/common/src/gx_display_driver_generic_aliased_arc_draw.c b/common/src/gx_display_driver_generic_aliased_arc_draw.c index c20d123a..b153d128 100644 --- a/common/src/gx_display_driver_generic_aliased_arc_draw.c +++ b/common/src/gx_display_driver_generic_aliased_arc_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ARC_DRAWING_SUPPORT) VOID _gx_display_driver_generic_aliased_arc_draw(GX_DRAW_CONTEXT *context, INT xcenter, INT ycenter, UINT r, INT start_angle, INT end_angle) diff --git a/common/src/gx_display_driver_generic_aliased_circle_draw.c b/common/src/gx_display_driver_generic_aliased_circle_draw.c index 885e0ce9..c2fcf822 100644 --- a/common/src/gx_display_driver_generic_aliased_circle_draw.c +++ b/common/src/gx_display_driver_generic_aliased_circle_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ARC_DRAWING_SUPPORT) diff --git a/common/src/gx_display_driver_generic_aliased_ellipse_draw.c b/common/src/gx_display_driver_generic_aliased_ellipse_draw.c index 5aba3c31..908d9cf8 100644 --- a/common/src/gx_display_driver_generic_aliased_ellipse_draw.c +++ b/common/src/gx_display_driver_generic_aliased_ellipse_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_aliased_ellipse_draw(GX_DRAW_CONTEXT *context, INT xcenter, INT ycenter, INT a, INT b) { diff --git a/common/src/gx_display_driver_generic_aliased_filled_circle_draw.c b/common/src/gx_display_driver_generic_aliased_filled_circle_draw.c index d10c5bcd..dd669ce0 100644 --- a/common/src/gx_display_driver_generic_aliased_filled_circle_draw.c +++ b/common/src/gx_display_driver_generic_aliased_filled_circle_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,18 +65,6 @@ /* */ /* _gx_display_driver_generic_aliased_wide_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_aliased_filled_circle_draw(GX_DRAW_CONTEXT *context, GX_FIXED_VAL xcenter, GX_FIXED_VAL ycenter, GX_FIXED_VAL r) { diff --git a/common/src/gx_display_driver_generic_aliased_fixed_point_line_draw.c b/common/src/gx_display_driver_generic_aliased_fixed_point_line_draw.c index cf3b388a..c233f9e6 100644 --- a/common/src/gx_display_driver_generic_aliased_fixed_point_line_draw.c +++ b/common/src/gx_display_driver_generic_aliased_fixed_point_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,17 +69,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Ting Zhu Modified comment(s), */ -/* fixed compile warnings, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_aliased_fixed_point_line_draw(GX_DRAW_CONTEXT *context, GX_FIXED_VAL xstart, GX_FIXED_VAL ystart, diff --git a/common/src/gx_display_driver_generic_aliased_line_draw.c b/common/src/gx_display_driver_generic_aliased_line_draw.c index bc7df371..6b343a4b 100644 --- a/common/src/gx_display_driver_generic_aliased_line_draw.c +++ b/common/src/gx_display_driver_generic_aliased_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_aliased_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT ystart, INT xend, INT yend) { diff --git a/common/src/gx_display_driver_generic_aliased_wide_arc_draw.c b/common/src/gx_display_driver_generic_aliased_wide_arc_draw.c index 5c4d0c90..70f13afc 100644 --- a/common/src/gx_display_driver_generic_aliased_wide_arc_draw.c +++ b/common/src/gx_display_driver_generic_aliased_wide_arc_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -74,14 +75,6 @@ /* */ /* _gx_display_driver_generic_aliased_wide_arc_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_generic_simple_aliased_wide_arc_draw(GX_DRAW_CONTEXT *context, INT xcenter, INT ycenter, UINT r, INT start_angle, INT end_angle) { @@ -692,14 +685,6 @@ INT next_shift; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_aliased_wide_arc_draw(GX_DRAW_CONTEXT *context, INT xcenter, INT ycenter, UINT r, INT start_angle, INT end_angle) { diff --git a/common/src/gx_display_driver_generic_aliased_wide_circle_draw.c b/common/src/gx_display_driver_generic_aliased_wide_circle_draw.c index 7a62cdc8..9e5d7612 100644 --- a/common/src/gx_display_driver_generic_aliased_wide_circle_draw.c +++ b/common/src/gx_display_driver_generic_aliased_wide_circle_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,17 +69,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Ting Zhu Modified comment(s), */ -/* fixed compile warnings, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ #if defined(GX_ARC_DRAWING_SUPPORT) VOID _gx_display_driver_generic_aliased_wide_circle_draw(GX_DRAW_CONTEXT *context, INT xcenter, INT ycenter, UINT r) diff --git a/common/src/gx_display_driver_generic_aliased_wide_ellipse_draw.c b/common/src/gx_display_driver_generic_aliased_wide_ellipse_draw.c index 58d8c005..6c29e596 100644 --- a/common/src/gx_display_driver_generic_aliased_wide_ellipse_draw.c +++ b/common/src/gx_display_driver_generic_aliased_wide_ellipse_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,14 +73,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_aliased_wide_ellipse_draw(GX_DRAW_CONTEXT *context, INT xcenter, INT ycenter, INT a, INT b) { diff --git a/common/src/gx_display_driver_generic_aliased_wide_line_draw.c b/common/src/gx_display_driver_generic_aliased_wide_line_draw.c index 1b95d173..a1b5be16 100644 --- a/common/src/gx_display_driver_generic_aliased_wide_line_draw.c +++ b/common/src/gx_display_driver_generic_aliased_wide_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,17 +73,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* supported display rotation, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_aliased_wide_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT ystart, INT xend, INT yend) diff --git a/common/src/gx_display_driver_generic_alphamap_draw.c b/common/src/gx_display_driver_generic_alphamap_draw.c index adf6b3da..ed3aadb5 100644 --- a/common/src/gx_display_driver_generic_alphamap_draw.c +++ b/common/src/gx_display_driver_generic_alphamap_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* */ /* _gx_display_driver_generic_alphamap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_generic_alphamap_raw_alpha_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pmp, GX_UBYTE alpha) { @@ -152,14 +145,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* _gx_display_driver_generic_alphamap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_generic_alphamap_compressed_alpha_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pmp, GX_UBYTE alpha) { @@ -298,14 +283,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* _gx_display_driver_generic_alphamap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_generic_alphamap_raw_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pmp) { @@ -382,14 +359,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* _gx_display_driver_generic_alphamap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_generic_alphamap_compressed_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pmp) { @@ -535,14 +504,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* Application Code */ /* GUIX default draw funtions */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_alphamap_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pmp) { diff --git a/common/src/gx_display_driver_generic_arc_draw.c b/common/src/gx_display_driver_generic_arc_draw.c index 39de2f8f..5c02a6c7 100644 --- a/common/src/gx_display_driver_generic_arc_draw.c +++ b/common/src/gx_display_driver_generic_arc_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ARC_DRAWING_SUPPORT) VOID _gx_display_driver_generic_arc_draw(GX_DRAW_CONTEXT *context, INT xcenter, INT ycenter, UINT r, INT start_angle, INT end_angle) diff --git a/common/src/gx_display_driver_generic_arc_fill.c b/common/src/gx_display_driver_generic_arc_fill.c index baaffe41..158cc8b9 100644 --- a/common/src/gx_display_driver_generic_arc_fill.c +++ b/common/src/gx_display_driver_generic_arc_fill.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -74,14 +75,6 @@ /* */ /* _gx_display_driver_generic_arc_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ARC_DRAWING_SUPPORT) diff --git a/common/src/gx_display_driver_generic_circle_draw.c b/common/src/gx_display_driver_generic_circle_draw.c index 16af7fca..2a0f4c11 100644 --- a/common/src/gx_display_driver_generic_circle_draw.c +++ b/common/src/gx_display_driver_generic_circle_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ARC_DRAWING_SUPPORT) diff --git a/common/src/gx_display_driver_generic_circle_fill.c b/common/src/gx_display_driver_generic_circle_fill.c index 159d46ae..33b13491 100644 --- a/common/src/gx_display_driver_generic_circle_fill.c +++ b/common/src/gx_display_driver_generic_circle_fill.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_circle_fill(GX_DRAW_CONTEXT *context, INT xcenter, INT ycenter, UINT r) { diff --git a/common/src/gx_display_driver_generic_drawing_complete.c b/common/src/gx_display_driver_generic_drawing_complete.c index ceb8829d..b13570df 100644 --- a/common/src/gx_display_driver_generic_drawing_complete.c +++ b/common/src/gx_display_driver_generic_drawing_complete.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if !defined (GX_HARDWARE_MOUSE_SUPPORT) VOID _gx_display_driver_generic_drawing_complete(GX_DISPLAY *display, GX_CANVAS *canvas) diff --git a/common/src/gx_display_driver_generic_drawing_initiate.c b/common/src/gx_display_driver_generic_drawing_initiate.c index 37135f67..e8f9ada2 100644 --- a/common/src/gx_display_driver_generic_drawing_initiate.c +++ b/common/src/gx_display_driver_generic_drawing_initiate.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if !defined (GX_HARDWARE_MOUSE_SUPPORT) VOID _gx_display_driver_generic_drawing_initiate(GX_DISPLAY *display, GX_CANVAS *canvas) diff --git a/common/src/gx_display_driver_generic_ellipse_draw.c b/common/src/gx_display_driver_generic_ellipse_draw.c index 092a703c..88824c16 100644 --- a/common/src/gx_display_driver_generic_ellipse_draw.c +++ b/common/src/gx_display_driver_generic_ellipse_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,17 +67,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* improved precision, */ -/* resulting in version 6.1.6 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_ellipse_draw(GX_DRAW_CONTEXT *context, INT xcenter, INT ycenter, INT a, INT b) { diff --git a/common/src/gx_display_driver_generic_ellipse_fill.c b/common/src/gx_display_driver_generic_ellipse_fill.c index b23c1c25..ef3653f1 100644 --- a/common/src/gx_display_driver_generic_ellipse_fill.c +++ b/common/src/gx_display_driver_generic_ellipse_fill.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,19 +71,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* modified algorithm to make */ -/* it fit one-width antialiaed */ -/* ellipse outline, */ -/* resulting in version 6.1.6 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_ellipse_fill(GX_DRAW_CONTEXT *context, INT xcenter, INT ycenter, INT a, INT b) { diff --git a/common/src/gx_display_driver_generic_filled_circle_draw.c b/common/src/gx_display_driver_generic_filled_circle_draw.c index 4ca98203..567a811c 100644 --- a/common/src/gx_display_driver_generic_filled_circle_draw.c +++ b/common/src/gx_display_driver_generic_filled_circle_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* _gx_display_driver_generic_simple_wide_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_filled_circle_draw(GX_DRAW_CONTEXT *context, GX_FIXED_VAL xcenter, GX_FIXED_VAL ycenter, GX_FIXED_VAL r) { diff --git a/common/src/gx_display_driver_generic_glyph_4bpp_draw.c b/common/src/gx_display_driver_generic_glyph_4bpp_draw.c index aed86816..283b4958 100644 --- a/common/src/gx_display_driver_generic_glyph_4bpp_draw.c +++ b/common/src/gx_display_driver_generic_glyph_4bpp_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_glyph_4bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) { diff --git a/common/src/gx_display_driver_generic_glyph_8bpp_draw.c b/common/src/gx_display_driver_generic_glyph_8bpp_draw.c index ccdc6a35..77ab1113 100644 --- a/common/src/gx_display_driver_generic_glyph_8bpp_draw.c +++ b/common/src/gx_display_driver_generic_glyph_8bpp_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_glyph_8bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) { diff --git a/common/src/gx_display_driver_generic_mouse_cursor_define.c b/common/src/gx_display_driver_generic_mouse_cursor_define.c index 96a840e6..d916f628 100644 --- a/common/src/gx_display_driver_generic_mouse_cursor_define.c +++ b/common/src/gx_display_driver_generic_mouse_cursor_define.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,14 +58,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_mouse_define(GX_DISPLAY *display, GX_CANVAS *canvas, GX_MOUSE_CURSOR_INFO *info) { diff --git a/common/src/gx_display_driver_generic_mouse_draw.c b/common/src/gx_display_driver_generic_mouse_draw.c index a3303efb..1b5db49d 100644 --- a/common/src/gx_display_driver_generic_mouse_draw.c +++ b/common/src/gx_display_driver_generic_mouse_draw.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -56,14 +57,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_MOUSE_SUPPORT) #if !defined(GX_HARDWARE_MOUSE_SUPPORT) diff --git a/common/src/gx_display_driver_generic_mouse_enable.c b/common/src/gx_display_driver_generic_mouse_enable.c index b21bb73c..1955c7f8 100644 --- a/common/src/gx_display_driver_generic_mouse_enable.c +++ b/common/src/gx_display_driver_generic_mouse_enable.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_mouse_enable(GX_DISPLAY *display, GX_BOOL enable) { diff --git a/common/src/gx_display_driver_generic_mouse_position_set.c b/common/src/gx_display_driver_generic_mouse_position_set.c index 8b8a0510..82f2f0c3 100644 --- a/common/src/gx_display_driver_generic_mouse_position_set.c +++ b/common/src/gx_display_driver_generic_mouse_position_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,14 +58,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_mouse_position_set(GX_DISPLAY *display, GX_POINT *pos) { diff --git a/common/src/gx_display_driver_generic_pie_fill.c b/common/src/gx_display_driver_generic_pie_fill.c index cf8d8bc6..8307011c 100644 --- a/common/src/gx_display_driver_generic_pie_fill.c +++ b/common/src/gx_display_driver_generic_pie_fill.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* */ /* _gx_canvas_pie_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ARC_DRAWING_SUPPORT) @@ -90,7 +83,7 @@ VOID _gx_display_driver_generic_pie_fill(GX_DRAW_CONTEXT *context, INT xcenter, } else if (end_angle < 360) { - /* Skip-end parameter should only be set when drawing the above area. + /* Skip-end parameter should only be set when drawing the above area. It would be set to GX_TRUE to skip the bottom line to avoid case that this line will be drawn twice, which is not correct, when brush alpha is set. */ _gx_display_driver_generic_simple_pie_fill(context, xcenter, ycenter, r, start_angle, 180, GX_TRUE); diff --git a/common/src/gx_display_driver_generic_polygon_draw.c b/common/src/gx_display_driver_generic_polygon_draw.c index a3d02878..79f00f40 100644 --- a/common/src/gx_display_driver_generic_polygon_draw.c +++ b/common/src/gx_display_driver_generic_polygon_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_polygon_draw(GX_DRAW_CONTEXT *context, GX_POINT *vertex, INT num) { diff --git a/common/src/gx_display_driver_generic_polygon_fill.c b/common/src/gx_display_driver_generic_polygon_fill.c index 637bc90b..7303f698 100644 --- a/common/src/gx_display_driver_generic_polygon_fill.c +++ b/common/src/gx_display_driver_generic_polygon_fill.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* */ /* _gx_display_driver_generic_polygon_fill */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_polygon_min_max_get(GX_POINT *vertex, INT num, INT *ymin, INT *ymax, INT *xmin) { @@ -143,14 +136,6 @@ INT x_min; /* */ /* _gx_display_driver_generic_polygon_fill */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_polygon_new_edge_table_init(GX_DRAW_CONTEXT *context, GX_POINT *vertex, INT num, GX_POLYGON_EDGE *net, INT *net_size) { @@ -273,14 +258,6 @@ GX_VALUE net_index = 0; /* */ /* _gx_display_driver_generic_polygon_fill */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_polygon_active_edge_insert(GX_POLYGON_EDGE *aet, GX_POLYGON_EDGE *net, INT y, INT net_size, INT *aet_size) { @@ -341,14 +318,6 @@ INT active_edge_table_size = *aet_size; /* */ /* _gx_display_driver_generic_polygon_fill */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_polygon_non_active_edge_remove(GX_POLYGON_EDGE *aet, INT y, INT *aet_size) { @@ -407,14 +376,6 @@ INT j; /* */ /* _gx_display_driver_generic_polygon_fill */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_polygon_scan_line_draw(GX_DRAW_CONTEXT *context, GX_POLYGON_EDGE *aet, INT y, INT aet_size) { @@ -506,15 +467,6 @@ GX_COLOR fill_color; /* */ /* _gx_display_driver_generic_polygon_fill */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* removed use of memcpy, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_polygon_pixelmap_scan_line_draw(GX_DRAW_CONTEXT *context, GX_POLYGON_EDGE *aet, INT aet_size, INT xpos, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -618,14 +570,6 @@ GX_BOOL is_drawn = GX_FALSE; /* */ /* _gx_display_driver_generic_polygon_fill */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_display_driver_polygon_active_edge_table_update_and_restore(GX_POLYGON_EDGE *aet, INT aet_size) { @@ -701,14 +645,6 @@ GX_POLYGON_EDGE temp; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_polygon_fill(GX_DRAW_CONTEXT *context, GX_POINT *vertex, INT num) { diff --git a/common/src/gx_display_driver_generic_rotated_alphamap_draw.c b/common/src/gx_display_driver_generic_rotated_alphamap_draw.c index fb3fc657..58440d88 100644 --- a/common/src/gx_display_driver_generic_rotated_alphamap_draw.c +++ b/common/src/gx_display_driver_generic_rotated_alphamap_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,12 +67,6 @@ /* */ /* _gx_display_driver_generic_alphamap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_generic_rotated_alphamap_raw_alpha_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pmp, GX_UBYTE alpha) { @@ -167,12 +162,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* _gx_display_driver_generic_alphamap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_generic_rotated_alphamap_compressed_alpha_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pmp, GX_UBYTE alpha) { @@ -327,12 +316,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* _gx_display_driver_generic_alphamap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_generic_rotated_alphamap_raw_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pmp) { @@ -425,12 +408,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* _gx_display_driver_generic_alphamap_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_generic_rotated_alphamap_compressed_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pmp) { @@ -591,12 +568,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* Application Code */ /* GUIX default draw funtions */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_rotated_alphamap_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pmp) { diff --git a/common/src/gx_display_driver_generic_rotated_arc_fill.c b/common/src/gx_display_driver_generic_rotated_arc_fill.c index 7801e740..74af228c 100644 --- a/common/src/gx_display_driver_generic_rotated_arc_fill.c +++ b/common/src/gx_display_driver_generic_rotated_arc_fill.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -74,12 +75,6 @@ /* */ /* _gx_display_driver_generic_arc_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ #if defined(GX_ARC_DRAWING_SUPPORT) VOID _gx_display_driver_generic_rotated_arc_fill(GX_DRAW_CONTEXT *context, INT xcenter, INT ycenter, UINT r, INT start_angle, INT end_angle) diff --git a/common/src/gx_display_driver_generic_rotated_circle_fill.c b/common/src/gx_display_driver_generic_rotated_circle_fill.c index 7794e364..2970afb8 100644 --- a/common/src/gx_display_driver_generic_rotated_circle_fill.c +++ b/common/src/gx_display_driver_generic_rotated_circle_fill.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,12 +69,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_rotated_circle_fill(GX_DRAW_CONTEXT *context, INT xcenter, INT ycenter, UINT r) { diff --git a/common/src/gx_display_driver_generic_rotated_ellipse_fill.c b/common/src/gx_display_driver_generic_rotated_ellipse_fill.c index 090aab80..a613d15b 100644 --- a/common/src/gx_display_driver_generic_rotated_ellipse_fill.c +++ b/common/src/gx_display_driver_generic_rotated_ellipse_fill.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,17 +71,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 04-02-2021 Ting Zhu Modified comment(s), */ -/* modified algorithm to make */ -/* it fit one-width antialiaed */ -/* ellipse outline, */ -/* resulting in version 6.1.6 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_rotated_ellipse_fill(GX_DRAW_CONTEXT *context, INT xcenter, INT ycenter, INT a, INT b) { diff --git a/common/src/gx_display_driver_generic_rotated_glyph_4bit_draw.c b/common/src/gx_display_driver_generic_rotated_glyph_4bit_draw.c index 76ff1fb2..2606ed4a 100644 --- a/common/src/gx_display_driver_generic_rotated_glyph_4bit_draw.c +++ b/common/src/gx_display_driver_generic_rotated_glyph_4bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,12 +65,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_rotated_glyph_4bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) { diff --git a/common/src/gx_display_driver_generic_rotated_glyph_8bit_draw.c b/common/src/gx_display_driver_generic_rotated_glyph_8bit_draw.c index 2781b68a..065c172b 100644 --- a/common/src/gx_display_driver_generic_rotated_glyph_8bit_draw.c +++ b/common/src/gx_display_driver_generic_rotated_glyph_8bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,12 +67,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_rotated_glyph_8bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) { diff --git a/common/src/gx_display_driver_generic_rotated_pie_fill.c b/common/src/gx_display_driver_generic_rotated_pie_fill.c index eddcbff8..38e8cbee 100644 --- a/common/src/gx_display_driver_generic_rotated_pie_fill.c +++ b/common/src/gx_display_driver_generic_rotated_pie_fill.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -74,15 +75,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 03-02-2021 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ #if defined(GX_ARC_DRAWING_SUPPORT) @@ -574,12 +566,6 @@ GX_FILL_PIXELMAP_INFO info; /* */ /* _gx_canvas_pie_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_rotated_pie_fill(GX_DRAW_CONTEXT *context, INT xcenter, INT ycenter, UINT r, INT start_angle, INT end_angle) { diff --git a/common/src/gx_display_driver_generic_rotated_polygon_fill.c b/common/src/gx_display_driver_generic_rotated_polygon_fill.c index c8b55952..44fca7d5 100644 --- a/common/src/gx_display_driver_generic_rotated_polygon_fill.c +++ b/common/src/gx_display_driver_generic_rotated_polygon_fill.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,12 +66,6 @@ /* */ /* _gx_display_driver_generic_polygon_fill */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_polygon_min_max_get(GX_POINT *vertex, INT num, INT *xmin, INT *xmax, INT *ymin) { @@ -140,12 +135,6 @@ INT y_min; /* */ /* _gx_display_driver_generic_polygon_fill */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_polygon_new_edge_table_init_90(GX_POINT *vertex, INT num, GX_POLYGON_EDGE *net, INT *net_size) { @@ -258,12 +247,6 @@ GX_VALUE net_index = 0; /* */ /* _gx_display_driver_generic_polygon_fill */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_polygon_new_edge_table_init_270(GX_POINT *vertex, INT num, GX_POLYGON_EDGE *net, INT *net_size) { @@ -376,12 +359,6 @@ GX_VALUE net_index = 0; /* */ /* _gx_display_driver_generic_polygon_fill */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_polygon_active_edge_insert(GX_POLYGON_EDGE *aet, GX_POLYGON_EDGE *net, INT x, INT net_size, INT *aet_size) { @@ -442,12 +419,6 @@ INT active_edge_table_size = *aet_size; /* */ /* _gx_display_driver_generic_polygon_fill */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_polygon_non_active_edge_remove(GX_POLYGON_EDGE *aet, INT x, INT *aet_size) { @@ -506,12 +477,6 @@ INT j; /* */ /* _gx_display_driver_generic_polygon_fill */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_polygon_scan_line_draw(GX_DRAW_CONTEXT *context, GX_POLYGON_EDGE *aet, INT x, INT aet_size) { @@ -608,12 +573,6 @@ GX_COLOR fill_color; /* */ /* _gx_display_driver_generic_polygon_fill */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_polygon_pixelmap_scan_line_draw(GX_DRAW_CONTEXT *context, GX_POLYGON_EDGE *aet, INT aet_size, INT ypos, INT x, GX_FILL_PIXELMAP_INFO *info) @@ -723,12 +682,6 @@ GX_BOOL is_drawn = GX_FALSE; /* */ /* _gx_display_driver_generic_polygon_fill */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static UINT _gx_display_driver_polygon_active_edge_table_update_and_restore(GX_POLYGON_EDGE *aet, INT aet_size) { @@ -804,12 +757,6 @@ GX_POLYGON_EDGE temp; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_rotated_polygon_fill(GX_DRAW_CONTEXT *context, GX_POINT *vertex, INT num) { diff --git a/common/src/gx_display_driver_generic_rotated_wide_line_fill.c b/common/src/gx_display_driver_generic_rotated_wide_line_fill.c index f7c32de1..28cb8625 100644 --- a/common/src/gx_display_driver_generic_rotated_wide_line_fill.c +++ b/common/src/gx_display_driver_generic_rotated_wide_line_fill.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,12 +67,6 @@ /* _gx_display_driver_generic_simple_wide_line_draw */ /* _gx_display_driver_generic_aliased_wide_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_rotated_wide_line_fill(GX_DRAW_CONTEXT *context, GX_FIXED_POINT *pPoints) { diff --git a/common/src/gx_display_driver_generic_simple_pie_fill.c b/common/src/gx_display_driver_generic_simple_pie_fill.c index 7c89329f..aeb7ae51 100644 --- a/common/src/gx_display_driver_generic_simple_pie_fill.c +++ b/common/src/gx_display_driver_generic_simple_pie_fill.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -74,14 +75,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ARC_DRAWING_SUPPORT) diff --git a/common/src/gx_display_driver_generic_simple_wide_line_draw.c b/common/src/gx_display_driver_generic_simple_wide_line_draw.c index 8c9f6bed..8213241a 100644 --- a/common/src/gx_display_driver_generic_simple_wide_line_draw.c +++ b/common/src/gx_display_driver_generic_simple_wide_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,17 +70,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* supported display rotation, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_simple_wide_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT ystart, INT xend, INT yend) diff --git a/common/src/gx_display_driver_generic_wide_arc_draw.c b/common/src/gx_display_driver_generic_wide_arc_draw.c index f69dd4bb..29d07129 100644 --- a/common/src/gx_display_driver_generic_wide_arc_draw.c +++ b/common/src/gx_display_driver_generic_wide_arc_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ /* */ /* _gx_display_driver_generic_wide_arc_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_display_driver_generic_simple_wide_arc_draw(GX_DRAW_CONTEXT *context, INT xcenter, INT ycenter, UINT r, INT start_angle, INT end_angle) { @@ -499,14 +492,6 @@ VOID (*line_draw)(GX_DRAW_CONTEXT *context, INT x1, INT x2, INT ypos, I /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_wide_arc_draw(GX_DRAW_CONTEXT *context, INT xcenter, INT ycenter, UINT r, INT start_angle, INT end_angle) { diff --git a/common/src/gx_display_driver_generic_wide_circle_draw.c b/common/src/gx_display_driver_generic_wide_circle_draw.c index d3e1f1e4..1751d264 100644 --- a/common/src/gx_display_driver_generic_wide_circle_draw.c +++ b/common/src/gx_display_driver_generic_wide_circle_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_wide_circle_draw(GX_DRAW_CONTEXT *context, INT xcenter, INT ycenter, UINT r) { diff --git a/common/src/gx_display_driver_generic_wide_ellipse_draw.c b/common/src/gx_display_driver_generic_wide_ellipse_draw.c index 6e82ebce..516e93f6 100644 --- a/common/src/gx_display_driver_generic_wide_ellipse_draw.c +++ b/common/src/gx_display_driver_generic_wide_ellipse_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_wide_ellipse_draw(GX_DRAW_CONTEXT *context, INT xcenter, INT ycenter, INT a, INT b) { diff --git a/common/src/gx_display_driver_generic_wide_line_fill.c b/common/src/gx_display_driver_generic_wide_line_fill.c index 1070bb01..c5deff27 100644 --- a/common/src/gx_display_driver_generic_wide_line_fill.c +++ b/common/src/gx_display_driver_generic_wide_line_fill.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* _gx_display_driver_generic_simple_wide_line_draw */ /* _gx_display_driver_generic_aliased_wide_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_generic_wide_line_fill(GX_DRAW_CONTEXT *context, GX_FIXED_POINT *pPoints) { diff --git a/common/src/gx_display_driver_generic_wide_line_points_calculate.c b/common/src/gx_display_driver_generic_wide_line_points_calculate.c index 472e1a0c..42397b98 100644 --- a/common/src/gx_display_driver_generic_wide_line_points_calculate.c +++ b/common/src/gx_display_driver_generic_wide_line_points_calculate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -79,14 +80,6 @@ static GX_FIXED_POINT LinePoints[5]; /* _gx_display_driver_generic_simple_wide_line_draw */ /* _gx_display_driver_generic_aliased_wide_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_FIXED_POINT *_gx_display_driver_generic_wide_line_points_calculate(GX_DRAW_CONTEXT *context, INT xStart, INT yStart, INT xEnd, INT yEnd, INT brush_width, GX_BOOL outline) diff --git a/common/src/gx_display_driver_horizontal_line_alpha_draw.c b/common/src/gx_display_driver_horizontal_line_alpha_draw.c index b7320910..9bb8ca26 100644 --- a/common/src/gx_display_driver_horizontal_line_alpha_draw.c +++ b/common/src/gx_display_driver_horizontal_line_alpha_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ /* _gx_display_driver_16bpp_horizontal_line_draw */ /* _gx_display_driver_32bpp_horizontal_line_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_horizontal_line_alpha_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT ypos, INT width, GX_COLOR color, GX_UBYTE alpha) { diff --git a/common/src/gx_display_driver_monochrome_setup.c b/common/src/gx_display_driver_monochrome_setup.c index 5f1be63f..0575c0c6 100644 --- a/common/src/gx_display_driver_monochrome_setup.c +++ b/common/src/gx_display_driver_monochrome_setup.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,18 +61,6 @@ static GX_UBYTE mouse_capture_memory[GX_MOUSE_MAX_RESOLUTION * GX_MOUSE_MAX_RESO /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* added rotation angle */ -/* initialization, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_monochrome_setup(GX_DISPLAY *display, VOID *aux_data, VOID (*toggle_function)(struct GX_CANVAS_STRUCT *canvas, diff --git a/common/src/gx_display_driver_simple_line_alpha_draw.c b/common/src/gx_display_driver_simple_line_alpha_draw.c index aefb4d89..3338dd54 100644 --- a/common/src/gx_display_driver_simple_line_alpha_draw.c +++ b/common/src/gx_display_driver_simple_line_alpha_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,14 +71,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_simple_line_alpha_draw(GX_DRAW_CONTEXT *context, INT xstart, INT ystart, INT xend, INT yend, GX_UBYTE alpha) { diff --git a/common/src/gx_display_driver_vertical_line_alpha_draw.c b/common/src/gx_display_driver_vertical_line_alpha_draw.c index 03c7002c..71c2c611 100644 --- a/common/src/gx_display_driver_vertical_line_alpha_draw.c +++ b/common/src/gx_display_driver_vertical_line_alpha_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* _gx_display_driver_16bpp_vertical_line_alpha_draw */ /* _gx_display_driver_8bpp_vertical_line_alpha_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_display_driver_vertical_line_alpha_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT xpos, INT width, GX_COLOR color, GX_UBYTE alpha) { diff --git a/common/src/gx_display_font_table_set.c b/common/src/gx_display_font_table_set.c index 0c2eb382..dfe77c96 100644 --- a/common/src/gx_display_font_table_set.c +++ b/common/src/gx_display_font_table_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_display_font_table_set(GX_DISPLAY *display, GX_FONT **font_table, UINT number_of_fonts) { diff --git a/common/src/gx_display_language_table_get.c b/common/src/gx_display_language_table_get.c index dc780698..a9c0d03c 100644 --- a/common/src/gx_display_language_table_get.c +++ b/common/src/gx_display_language_table_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_display_language_table_get(GX_DISPLAY *display, @@ -128,14 +121,6 @@ UINT _gx_display_language_table_get(GX_DISPLAY *display, /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_display_language_table_get_ext(GX_DISPLAY *display, GX_STRING ***language_table, GX_UBYTE *language_count, UINT *string_count) diff --git a/common/src/gx_display_language_table_set.c b/common/src/gx_display_language_table_set.c index 52474d8c..593fdd75 100644 --- a/common/src/gx_display_language_table_set.c +++ b/common/src/gx_display_language_table_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_display_language_table_set(GX_DISPLAY *display, GX_CHAR ***language_table, @@ -151,14 +144,6 @@ GX_CONST GX_CHAR ***old_table = display -> gx_display_language_table_deprecated; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_display_language_table_set_ext(GX_DISPLAY *display, GX_CONST GX_STRING **language_table, GX_UBYTE num_languages, UINT number_of_strings) @@ -240,14 +225,6 @@ GX_CONST GX_STRING **old_table = display -> gx_display_language_table; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 01-31-2022 Ting Zhu Initial Version 6.1.10 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ #if defined(GX_DYNAMIC_BIDI_TEXT_SUPPORT) UINT _gx_display_language_direction_table_set(GX_DISPLAY *display, GX_CONST GX_UBYTE *language_direction_table, GX_UBYTE num_languages) diff --git a/common/src/gx_display_pixelmap_table_set.c b/common/src/gx_display_pixelmap_table_set.c index 5808caef..7e6bfb05 100644 --- a/common/src/gx_display_pixelmap_table_set.c +++ b/common/src/gx_display_pixelmap_table_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_display_pixelmap_table_set(GX_DISPLAY *display, GX_PIXELMAP **pixelmap_table, UINT number_of_pixelmaps) { diff --git a/common/src/gx_display_string_get.c b/common/src/gx_display_string_get.c index 3ed9970f..92bec2ec 100644 --- a/common/src/gx_display_string_get.c +++ b/common/src/gx_display_string_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* _gx_context_string_get */ /* _gx_widget_string_get Drew the text onto the wdiget */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_display_string_get(GX_DISPLAY *display, GX_RESOURCE_ID string_id, GX_CONST GX_CHAR **return_string) @@ -159,14 +152,6 @@ INT language; /* _gx_context_string_get */ /* _gx_widget_string_get Drew the text onto the wdiget */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_display_string_get_ext(GX_DISPLAY *display, GX_RESOURCE_ID string_id, GX_STRING *return_string) { diff --git a/common/src/gx_display_string_table_get.c b/common/src/gx_display_string_table_get.c index 3aac327b..7700a630 100644 --- a/common/src/gx_display_string_table_get.c +++ b/common/src/gx_display_string_table_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_display_string_table_get(GX_DISPLAY *display, GX_UBYTE language, GX_CHAR ***put_table, UINT *put_size) @@ -127,14 +120,6 @@ UINT _gx_display_string_table_get(GX_DISPLAY *display, GX_UBYTE language, GX_CHA /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_display_string_table_get_ext(GX_DISPLAY *display, GX_UBYTE language, GX_STRING **put_table, UINT *put_size) { diff --git a/common/src/gx_display_theme_install.c b/common/src/gx_display_theme_install.c index b07fb718..186617f6 100644 --- a/common/src/gx_display_theme_install.c +++ b/common/src/gx_display_theme_install.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_display_theme_install(GX_DISPLAY *display, GX_CONST GX_THEME *theme_ptr) { diff --git a/common/src/gx_drop_list_background_draw.c b/common/src/gx_drop_list_background_draw.c index 3731339b..4d432fb6 100644 --- a/common/src/gx_drop_list_background_draw.c +++ b/common/src/gx_drop_list_background_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ /* */ /* _gx_drop_list_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_drop_list_background_draw(GX_DROP_LIST *drop_list) { diff --git a/common/src/gx_drop_list_close.c b/common/src/gx_drop_list_close.c index 45ea61b7..a56480b4 100644 --- a/common/src/gx_drop_list_close.c +++ b/common/src/gx_drop_list_close.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* Application Code */ /* _gx_drop_list_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_drop_list_close(GX_DROP_LIST *drop_list) { diff --git a/common/src/gx_drop_list_create.c b/common/src/gx_drop_list_create.c index 1b05026a..8efdf65b 100644 --- a/common/src/gx_drop_list_create.c +++ b/common/src/gx_drop_list_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -75,14 +76,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_drop_list_create(GX_DROP_LIST *drop_list, GX_CONST GX_CHAR *name, GX_WIDGET *parent, INT total_rows, INT open_height, diff --git a/common/src/gx_drop_list_draw.c b/common/src/gx_drop_list_draw.c index a685c110..cb4b6b0a 100644 --- a/common/src/gx_drop_list_draw.c +++ b/common/src/gx_drop_list_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,12 +67,6 @@ /* */ /* _gx_drop_list_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ -/* */ /**************************************************************************/ static VOID _gx_drop_list_selected_children_draw(GX_DROP_LIST *drop_list, GX_WIDGET *widget, GX_VALUE xshift, GX_VALUE yshift) { @@ -170,18 +165,6 @@ ULONG old_style; /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* improved drawing of the */ -/* selected item, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ VOID _gx_drop_list_draw(GX_DROP_LIST *drop_list) { diff --git a/common/src/gx_drop_list_event_process.c b/common/src/gx_drop_list_event_process.c index e3c261be..8ea0ca1d 100644 --- a/common/src/gx_drop_list_event_process.c +++ b/common/src/gx_drop_list_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,14 +71,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_drop_list_event_process(GX_DROP_LIST *drop_list, GX_EVENT *event_ptr) diff --git a/common/src/gx_drop_list_open.c b/common/src/gx_drop_list_open.c index 770da11a..736d185f 100644 --- a/common/src/gx_drop_list_open.c +++ b/common/src/gx_drop_list_open.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* _gx_drop_list_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_drop_list_open(GX_DROP_LIST *drop_list) { diff --git a/common/src/gx_drop_list_pixelmap_set.c b/common/src/gx_drop_list_pixelmap_set.c index 3bb45d14..6422627a 100644 --- a/common/src/gx_drop_list_pixelmap_set.c +++ b/common/src/gx_drop_list_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_drop_list_pixelmap_set(GX_DROP_LIST *drop_list, GX_RESOURCE_ID id) { diff --git a/common/src/gx_drop_list_popup_get.c b/common/src/gx_drop_list_popup_get.c index a91b0ed6..5cf12f04 100644 --- a/common/src/gx_drop_list_popup_get.c +++ b/common/src/gx_drop_list_popup_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_drop_list_popup_get(GX_DROP_LIST *drop_list, GX_VERTICAL_LIST **return_list) { diff --git a/common/src/gx_generic_scroll_wheel_children_position.c b/common/src/gx_generic_scroll_wheel_children_position.c index bc75cb21..2b65198e 100644 --- a/common/src/gx_generic_scroll_wheel_children_position.c +++ b/common/src/gx_generic_scroll_wheel_children_position.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,12 +69,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gx_generic_scroll_wheel_children_position(GX_GENERIC_SCROLL_WHEEL *wheel) { diff --git a/common/src/gx_generic_scroll_wheel_create.c b/common/src/gx_generic_scroll_wheel_create.c index 7ac49d6a..8cb27d76 100644 --- a/common/src/gx_generic_scroll_wheel_create.c +++ b/common/src/gx_generic_scroll_wheel_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,12 +70,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gx_generic_scroll_wheel_create(GX_GENERIC_SCROLL_WHEEL *wheel, diff --git a/common/src/gx_generic_scroll_wheel_down_wrap.c b/common/src/gx_generic_scroll_wheel_down_wrap.c index f48eb767..3f185146 100644 --- a/common/src/gx_generic_scroll_wheel_down_wrap.c +++ b/common/src/gx_generic_scroll_wheel_down_wrap.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,12 +70,6 @@ /* _gx_generic_scroll_wheel_scroll Generic scroll wheel scroll */ /* function */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ -/* */ /**************************************************************************/ VOID _gx_generic_scroll_wheel_down_wrap(GX_GENERIC_SCROLL_WHEEL *wheel) { diff --git a/common/src/gx_generic_scroll_wheel_draw.c b/common/src/gx_generic_scroll_wheel_draw.c index 4cab7fe6..582499e8 100644 --- a/common/src/gx_generic_scroll_wheel_draw.c +++ b/common/src/gx_generic_scroll_wheel_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,12 +73,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ -/* */ /**************************************************************************/ VOID _gx_generic_scroll_wheel_draw(GX_GENERIC_SCROLL_WHEEL *wheel) { diff --git a/common/src/gx_generic_scroll_wheel_event_process.c b/common/src/gx_generic_scroll_wheel_event_process.c index 271c4025..7c3e7840 100644 --- a/common/src/gx_generic_scroll_wheel_event_process.c +++ b/common/src/gx_generic_scroll_wheel_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,12 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gx_generic_scroll_wheel_event_process(GX_GENERIC_SCROLL_WHEEL *wheel, GX_EVENT *event_ptr) { diff --git a/common/src/gx_generic_scroll_wheel_row_height_set.c b/common/src/gx_generic_scroll_wheel_row_height_set.c index 83be079f..80819c7e 100644 --- a/common/src/gx_generic_scroll_wheel_row_height_set.c +++ b/common/src/gx_generic_scroll_wheel_row_height_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,12 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gx_generic_scroll_wheel_row_height_set(GX_GENERIC_SCROLL_WHEEL *wheel, GX_VALUE row_height) { diff --git a/common/src/gx_generic_scroll_wheel_scroll.c b/common/src/gx_generic_scroll_wheel_scroll.c index e130aaa0..c35edf0a 100644 --- a/common/src/gx_generic_scroll_wheel_scroll.c +++ b/common/src/gx_generic_scroll_wheel_scroll.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,18 +72,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ -/* 10-31-2022 Kenneth Maxwell Modified comment(s), */ -/* changed return type, */ -/* resulting in version 6.2.0 */ -/* 03-08-2023 Ting Zhu Modified comment(s), */ -/* changed return type, */ -/* resulting in version 6.2.1 */ -/* */ /**************************************************************************/ UINT _gx_generic_scroll_wheel_scroll(GX_GENERIC_SCROLL_WHEEL *wheel, GX_VALUE shift) { diff --git a/common/src/gx_generic_scroll_wheel_total_rows_set.c b/common/src/gx_generic_scroll_wheel_total_rows_set.c index 8096d207..85f46681 100644 --- a/common/src/gx_generic_scroll_wheel_total_rows_set.c +++ b/common/src/gx_generic_scroll_wheel_total_rows_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,12 +71,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gx_generic_scroll_wheel_total_rows_set(GX_GENERIC_SCROLL_WHEEL *wheel, INT count) { diff --git a/common/src/gx_generic_scroll_wheel_up_wrap.c b/common/src/gx_generic_scroll_wheel_up_wrap.c index f09817a2..5403de73 100644 --- a/common/src/gx_generic_scroll_wheel_up_wrap.c +++ b/common/src/gx_generic_scroll_wheel_up_wrap.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,12 +68,6 @@ /* _gx_generic_scroll_wheel_scroll Generic scroll wheel scroll */ /* function */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ -/* */ /**************************************************************************/ VOID _gx_generic_scroll_wheel_up_wrap(GX_GENERIC_SCROLL_WHEEL *wheel) { diff --git a/common/src/gx_generic_scroll_wheel_wrap_style_check.c b/common/src/gx_generic_scroll_wheel_wrap_style_check.c index 6768f9f4..ee434747 100644 --- a/common/src/gx_generic_scroll_wheel_wrap_style_check.c +++ b/common/src/gx_generic_scroll_wheel_wrap_style_check.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,12 +58,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ -/* */ /**************************************************************************/ GX_BOOL _gx_generic_scroll_wheel_wrap_style_check(GX_GENERIC_SCROLL_WHEEL *wheel) { diff --git a/common/src/gx_horizontal_list_children_position.c b/common/src/gx_horizontal_list_children_position.c index 733671d6..0b298a9e 100644 --- a/common/src/gx_horizontal_list_children_position.c +++ b/common/src/gx_horizontal_list_children_position.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* _gx_horizontal_list_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_horizontal_list_children_position(GX_HORIZONTAL_LIST *horizontal_list) { diff --git a/common/src/gx_horizontal_list_create.c b/common/src/gx_horizontal_list_create.c index 740b1da2..8aaed540 100644 --- a/common/src/gx_horizontal_list_create.c +++ b/common/src/gx_horizontal_list_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,18 +73,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* initialized new horizontal */ -/* list control block member, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT _gx_horizontal_list_create(GX_HORIZONTAL_LIST *horizontal_list, GX_CONST GX_CHAR *name, diff --git a/common/src/gx_horizontal_list_event_process.c b/common/src/gx_horizontal_list_event_process.c index f2f03cd7..c0a7d1ad 100644 --- a/common/src/gx_horizontal_list_event_process.c +++ b/common/src/gx_horizontal_list_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -82,18 +83,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 07-29-2022 Kenneth Maxwell Modified comment(s), */ -/* fixed bug in EVENT_PEN_DRAG */ -/* handler, */ -/* resulting in version 6.1.12 */ -/* */ /**************************************************************************/ UINT _gx_horizontal_list_event_process(GX_HORIZONTAL_LIST *list, GX_EVENT *event_ptr) { diff --git a/common/src/gx_horizontal_list_left_wrap.c b/common/src/gx_horizontal_list_left_wrap.c index d4e2798a..28053dbc 100644 --- a/common/src/gx_horizontal_list_left_wrap.c +++ b/common/src/gx_horizontal_list_left_wrap.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* _gx_horizontal_list_scroll */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_horizontal_list_left_wrap(GX_HORIZONTAL_LIST *list) { diff --git a/common/src/gx_horizontal_list_page_index_set.c b/common/src/gx_horizontal_list_page_index_set.c index e996b259..92ada168 100644 --- a/common/src/gx_horizontal_list_page_index_set.c +++ b/common/src/gx_horizontal_list_page_index_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* _gx_horizontal_list_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_horizontal_list_page_index_set(GX_HORIZONTAL_LIST *list, INT index) { diff --git a/common/src/gx_horizontal_list_right_wrap.c b/common/src/gx_horizontal_list_right_wrap.c index a504b8a4..9d7a45f3 100644 --- a/common/src/gx_horizontal_list_right_wrap.c +++ b/common/src/gx_horizontal_list_right_wrap.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* _gx_horizontal_list_scroll */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_horizontal_list_right_wrap(GX_HORIZONTAL_LIST *list) { diff --git a/common/src/gx_horizontal_list_scroll.c b/common/src/gx_horizontal_list_scroll.c index 67fd801e..01d34d2c 100644 --- a/common/src/gx_horizontal_list_scroll.c +++ b/common/src/gx_horizontal_list_scroll.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,12 +63,6 @@ /* */ /* _gx_horizontal_list_scroll */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 08-02-2021 Ting Zhu Initial Version 6.1.8 */ -/* */ /**************************************************************************/ static VOID _gx_horizontal_list_invisible_page_scroll(GX_HORIZONTAL_LIST *list, INT num_pages) { @@ -178,17 +173,6 @@ INT maximum_scroll_pages; /* */ /* _gx_horizontal_list_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 08-02-2021 Ting Zhu Modified comment(s), */ -/* fixed scroll overflow issue,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ VOID _gx_horizontal_list_scroll(GX_HORIZONTAL_LIST *list, INT amount) { diff --git a/common/src/gx_horizontal_list_scroll_info_get.c b/common/src/gx_horizontal_list_scroll_info_get.c index 7b5982fe..a5a27e66 100644 --- a/common/src/gx_horizontal_list_scroll_info_get.c +++ b/common/src/gx_horizontal_list_scroll_info_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,18 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2023 Ting Zhu Modified comments(s), */ -/* improved the calculation of */ -/* the maximum scrolling value.*/ -/* resulting in version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_horizontal_list_scroll_info_get(GX_WINDOW *win, ULONG style, GX_SCROLL_INFO *info) { diff --git a/common/src/gx_horizontal_list_selected_index_get.c b/common/src/gx_horizontal_list_selected_index_get.c index dbb7632b..0affb0c3 100644 --- a/common/src/gx_horizontal_list_selected_index_get.c +++ b/common/src/gx_horizontal_list_selected_index_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_horizontal_list_selected_index_get(GX_HORIZONTAL_LIST *horizontal_list, INT *return_index) diff --git a/common/src/gx_horizontal_list_selected_set.c b/common/src/gx_horizontal_list_selected_set.c index 0edc2e81..5a3f2721 100644 --- a/common/src/gx_horizontal_list_selected_set.c +++ b/common/src/gx_horizontal_list_selected_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,18 +67,6 @@ /* */ /* _gx_horizontal_list_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 07-29-2022 Kenneth Maxwell Modified comment(s), */ -/* added support for */ -/* GX_STYLE_REPEAT_SELECT, */ -/* resulting in version 6.1.12 */ -/* */ /**************************************************************************/ UINT _gx_horizontal_list_selected_set(GX_HORIZONTAL_LIST *horizontal_list, INT index) diff --git a/common/src/gx_horizontal_list_selected_visible.c b/common/src/gx_horizontal_list_selected_visible.c index 21272a6c..9520988c 100644 --- a/common/src/gx_horizontal_list_selected_visible.c +++ b/common/src/gx_horizontal_list_selected_visible.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* _gx_horizontal_list_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_horizontal_list_selected_visible(GX_HORIZONTAL_LIST *list, GX_WIDGET *child) { diff --git a/common/src/gx_horizontal_list_selected_widget_get.c b/common/src/gx_horizontal_list_selected_widget_get.c index 06c00f91..d9993a69 100644 --- a/common/src/gx_horizontal_list_selected_widget_get.c +++ b/common/src/gx_horizontal_list_selected_widget_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_horizontal_list_selected_widget_get(GX_HORIZONTAL_LIST *horizontal_list, GX_WIDGET **return_list_entry) diff --git a/common/src/gx_horizontal_list_slide_back_check.c b/common/src/gx_horizontal_list_slide_back_check.c index f8c7850a..8625f9a1 100644 --- a/common/src/gx_horizontal_list_slide_back_check.c +++ b/common/src/gx_horizontal_list_slide_back_check.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ /* _gx_horizontal_list_event_process */ /* sw_horizontal_list_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_horizontal_list_slide_back_check(GX_HORIZONTAL_LIST *list) { diff --git a/common/src/gx_horizontal_list_total_columns_set.c b/common/src/gx_horizontal_list_total_columns_set.c index 45a62b4a..a2871562 100644 --- a/common/src/gx_horizontal_list_total_columns_set.c +++ b/common/src/gx_horizontal_list_total_columns_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,17 +67,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT _gx_horizontal_list_total_columns_set(GX_HORIZONTAL_LIST *list, INT count) { diff --git a/common/src/gx_horizontal_scrollbar_create.c b/common/src/gx_horizontal_scrollbar_create.c index 7f3bdc66..93567958 100644 --- a/common/src/gx_horizontal_scrollbar_create.c +++ b/common/src/gx_horizontal_scrollbar_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -73,14 +74,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_horizontal_scrollbar_create(GX_SCROLLBAR *scrollbar, GX_CONST GX_CHAR *name, GX_WINDOW *parent, GX_SCROLLBAR_APPEARANCE *appearance, ULONG style) diff --git a/common/src/gx_icon_background_draw.c b/common/src/gx_icon_background_draw.c index 58e952db..e12f81af 100644 --- a/common/src/gx_icon_background_draw.c +++ b/common/src/gx_icon_background_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_icon_background_draw(GX_ICON *icon) { diff --git a/common/src/gx_icon_button_create.c b/common/src/gx_icon_button_create.c index 40b78e1b..408b7bd3 100644 --- a/common/src/gx_icon_button_create.c +++ b/common/src/gx_icon_button_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_icon_button_create(GX_ICON_BUTTON *button, GX_CONST GX_CHAR *name, diff --git a/common/src/gx_icon_button_draw.c b/common/src/gx_icon_button_draw.c index ba70a937..4dd26ec2 100644 --- a/common/src/gx_icon_button_draw.c +++ b/common/src/gx_icon_button_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,17 +68,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-15-2021 Ting Zhu Modified comment(s), */ -/* fixed pixelmap draw offset, */ -/* resulting in version 6.1.9 */ -/* */ /**************************************************************************/ VOID _gx_icon_button_draw(GX_ICON_BUTTON *button) { diff --git a/common/src/gx_icon_button_pixelmap_set.c b/common/src/gx_icon_button_pixelmap_set.c index a799e4e4..97e3290e 100644 --- a/common/src/gx_icon_button_pixelmap_set.c +++ b/common/src/gx_icon_button_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* _gx_drop_list_pixelmap_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_icon_button_pixelmap_set(GX_ICON_BUTTON *button, GX_RESOURCE_ID pixelmap_id) diff --git a/common/src/gx_icon_create.c b/common/src/gx_icon_create.c index a6ef914c..c17878c7 100644 --- a/common/src/gx_icon_create.c +++ b/common/src/gx_icon_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,14 +73,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_icon_create(GX_ICON *icon, GX_CONST GX_CHAR *name, GX_WIDGET *parent, GX_RESOURCE_ID pixelmap_id, ULONG style, USHORT icon_id, diff --git a/common/src/gx_icon_draw.c b/common/src/gx_icon_draw.c index 3bc41b40..f629c818 100644 --- a/common/src/gx_icon_draw.c +++ b/common/src/gx_icon_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_icon_draw(GX_ICON *icon) { diff --git a/common/src/gx_icon_event_process.c b/common/src/gx_icon_event_process.c index 28c26c24..b9dbdbaf 100644 --- a/common/src/gx_icon_event_process.c +++ b/common/src/gx_icon_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_icon_event_process(GX_ICON *icon, GX_EVENT *event_ptr) { diff --git a/common/src/gx_icon_pixelmap_set.c b/common/src/gx_icon_pixelmap_set.c index 8c77112a..f882658e 100644 --- a/common/src/gx_icon_pixelmap_set.c +++ b/common/src/gx_icon_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_icon_pixelmap_set(GX_ICON *icon, GX_RESOURCE_ID normal_pixelmap_id, diff --git a/common/src/gx_icon_pixelmap_update.c b/common/src/gx_icon_pixelmap_update.c index d58a31e4..419634cb 100644 --- a/common/src/gx_icon_pixelmap_update.c +++ b/common/src/gx_icon_pixelmap_update.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* _gx_icon_event_process */ /* _gx_icon_pixelmap_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_icon_pixelmap_update(GX_ICON *icon) { diff --git a/common/src/gx_image_reader_colorspace_convert.c b/common/src/gx_image_reader_colorspace_convert.c index 4663cd63..050621ec 100644 --- a/common/src/gx_image_reader_colorspace_convert.c +++ b/common/src/gx_image_reader_colorspace_convert.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* _gx_image_reader_colorspace_convert */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) static VOID _gx_image_reader_one_row_dither(GX_IMAGE_READER *image_reader, INT *error_ptr) @@ -236,14 +229,6 @@ INT *cur_err; /* */ /* _gx_image_reader_colorspace_convert */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) static VOID _gx_image_reader_one_row_convert(GX_IMAGE_READER *image_reader, INT *width) @@ -293,12 +278,6 @@ GX_PIXEL pixel; /* */ /* _gx_image_reader_colorspace_convert */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) static VOID _gx_image_reader_one_row_rotated_convert(GX_IMAGE_READER *image_reader, INT *width) @@ -354,14 +333,6 @@ GX_PIXEL pixel; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) UINT _gx_image_reader_colorspace_convert(GX_IMAGE_READER *image_reader, GX_PIXELMAP *outmap) diff --git a/common/src/gx_image_reader_create.c b/common/src/gx_image_reader_create.c index 2f7a895e..aff47687 100644 --- a/common/src/gx_image_reader_create.c +++ b/common/src/gx_image_reader_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) UINT _gx_image_reader_create(GX_IMAGE_READER *image_reader, diff --git a/common/src/gx_image_reader_image_decode.c b/common/src/gx_image_reader_image_decode.c index c87b7ad7..5571f8a6 100644 --- a/common/src/gx_image_reader_image_decode.c +++ b/common/src/gx_image_reader_image_decode.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) static UINT _gx_image_reader_image_type_get(GX_IMAGE_READER *image_reader) @@ -135,18 +128,6 @@ GX_CONST GX_UBYTE *buffer; /* */ /* _gx_image_reader_colorspace_convert */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* modified jpeg decode */ -/* function parameter list, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) UINT _gx_image_reader_image_decode(GX_IMAGE_READER *image_reader, GX_PIXELMAP *outmap) diff --git a/common/src/gx_image_reader_jpeg_decode.c b/common/src/gx_image_reader_jpeg_decode.c index 85ee2b47..7b97df90 100644 --- a/common/src/gx_image_reader_jpeg_decode.c +++ b/common/src/gx_image_reader_jpeg_decode.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -120,18 +121,6 @@ /* */ /* _gx_image_reader_jpeg_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2022 Kenneth Maxwell Modified comment(s), */ -/* prevented underflow from */ -/* bad input data, */ -/* resulting in version 6.2.0 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_jpeg_quantization_table_set(GX_JPEG_INFO *jpeg_info, UINT segment_len) { @@ -209,21 +198,6 @@ INT index; /* _gx_image_reader_jpeg_dc_decode */ /* _gx_image_reader_jpeg_ac_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2022 Kenneth Maxwell Modified comment(s), */ -/* changed bit_count to */ -/* GX_VALUE data type, */ -/* resulting in version 6.2.0 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_jpeg_huffcode_find(GX_JPEG_INFO *jpeg_info, UINT table_class, @@ -291,21 +265,6 @@ GX_HUFFCODE_INFO *code_info; /* */ /* _gx_image_reader_jpeg_decode_blocks */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2022 Kenneth Maxwell Modified comment(s), */ -/* added range test to prevent */ -/* underflow, */ -/* resulting in version 6.2.0 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_huffman_table_set(GX_JPEG_INFO *jpeg_info, UINT segment_len) { @@ -411,14 +370,6 @@ USHORT code = 0; /* */ /* _gx_image_reader_jpeg_decode_blocks */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_jpeg_frame_header_read(GX_JPEG_INFO *jpeg_info, UINT segment_len) { @@ -507,14 +458,6 @@ INT i_component; /* */ /* _gx_image_reader_jpeg_decode_blocks */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_jpeg_scan_header_read(GX_JPEG_INFO *jpeg_info, UINT segment_len) { @@ -584,20 +527,6 @@ INT index; /* */ /* _gx_image_reader_jpeg_one_block_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2022 Kenneth Maxwell Modified comment(s), */ -/* added range test, */ -/* resulting in version 6.2.0 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_jpeg_dc_decode(GX_JPEG_INFO *jpeg_info, UINT i_component) { @@ -684,20 +613,6 @@ GX_BOOL negative; /* */ /* _gx_image_reader_jpeg_one_block_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2022 Kenneth Maxwell Modified comment(s), */ -/* added range test, */ -/* resulting in version 6.2.0 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_jpeg_ac_decode(GX_JPEG_INFO *jpeg_info, UINT i_component) { @@ -886,12 +801,6 @@ INT negative; /* */ /* _gx_image_reader_jpeg_one_block_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ -/* */ /**************************************************************************/ static VOID _gx_image_reader_jpeg_dequantize_idct(INT *block, INT *quant_table, GX_BYTE *out, INT stride) { @@ -1127,17 +1036,6 @@ int16_t const *base; /* */ /* _gx_image_reader_jpeg_2d_idct */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ static VOID _gx_image_reader_jpeg_1d_idct(INT *input_data, INT *output_data, INT post_scale, INT round) { @@ -1220,23 +1118,6 @@ INT t; /* */ /* _gx_image_reader_jpeg_one_block_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2022 Kenneth Maxwell Modified comment(s), */ -/* added range check for */ -/* stride, changed return val, */ -/* added range check for */ -/* table_index, */ -/* resulting in version 6.2.0 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ static VOID _gx_image_reader_jpeg_dequantize_idct(INT *block, INT *quant_table, GX_BYTE *out, INT stride) { @@ -1320,21 +1201,6 @@ INT row; /* */ /* _gx_image_reader_jpeg_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2022 Kenneth Maxwell Modified comment(s), */ -/* returned result of */ -/* dequantize_idct, */ -/* resulting in version 6.2.0 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_jpeg_one_block_decode(GX_JPEG_INFO *jpeg_info, UINT i_component, GX_BYTE *block_data) { @@ -1418,12 +1284,6 @@ INT stride; /* _gx_image_reader_jpeg_one_mcu_write */ /* _gx_image_reader_jpeg_one_mcu_rotated_write */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ -/* */ /**************************************************************************/ static VOID _gx_image_reader_jpeg_24xrgb_pixel_write_helium(GX_JPEG_INFO *jpeg_info, uint8x16_t vred, uint8x16_t vgreen, uint8x16_t vblue, INT size) { @@ -1471,12 +1331,6 @@ INT index; /* _gx_image_reader_jpeg_one_mcu_write */ /* _gx_image_reader_jpeg_one_mcu_rotated_write */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ -/* */ /**************************************************************************/ static VOID _gx_image_reader_jpeg_24xrgb_pixel_write(GX_JPEG_INFO *jpeg_info, GX_UBYTE red, GX_UBYTE green, GX_UBYTE blue) { @@ -1526,12 +1380,6 @@ static VOID _gx_image_reader_jpeg_24xrgb_pixel_write(GX_JPEG_INFO *jpeg_info, GX /* _gx_image_reader_jpeg_one_mcu_write */ /* _gx_image_reader_jpeg_one_mcu_rotated_write */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ -/* */ /**************************************************************************/ static VOID _gx_image_reader_jpeg_24bpp_pixel_write_helium(GX_JPEG_INFO *jpeg_info, uint8x16_t vred, uint8x16_t vgreen, uint8x16_t vblue, INT size) { @@ -1590,12 +1438,6 @@ mve_pred16_t p; /* _gx_image_reader_jpeg_one_mcu_write */ /* _gx_image_reader_jpeg_one_mcu_rotated_write */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ -/* */ /**************************************************************************/ static VOID _gx_image_reader_jpeg_24bpp_pixel_write(GX_JPEG_INFO *jpeg_info, GX_UBYTE red, GX_UBYTE green, GX_UBYTE blue) { @@ -1651,12 +1493,6 @@ static VOID _gx_image_reader_jpeg_24bpp_pixel_write(GX_JPEG_INFO *jpeg_info, GX_ /* _gx_image_reader_jpeg_one_mcu_write */ /* _gx_image_reader_jpeg_one_mcu_rotated_write */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ -/* */ /**************************************************************************/ static VOID _gx_image_reader_jpeg_565rgb_pixel_write_helium(GX_JPEG_INFO *jpeg_info, uint8x16_t vred, uint8x16_t vgreen, uint8x16_t vblue, INT size) { @@ -1741,12 +1577,6 @@ GX_UBYTE blue[16]; /* _gx_image_reader_jpeg_one_mcu_write */ /* _gx_image_reader_jpeg_one_mcu_rotated_write */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ -/* */ /**************************************************************************/ static VOID _gx_image_reader_jpeg_565rgb_pixel_write(GX_JPEG_INFO *jpeg_info, GX_UBYTE red, GX_UBYTE green, GX_UBYTE blue) { @@ -1806,12 +1636,6 @@ static VOID _gx_image_reader_jpeg_565rgb_pixel_write(GX_JPEG_INFO *jpeg_info, GX /* _gx_image_reader_jpeg_one_mcu_write */ /* _gx_image_reader_jpeg_one_mcu_rotated_write */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ -/* */ /**************************************************************************/ static VOID _gx_image_reader_jpeg_1555xrgb_pixel_write_helium(GX_JPEG_INFO *jpeg_info, uint8x16_t vred, uint8x16_t vgreen, uint8x16_t vblue, INT size) { @@ -1896,12 +1720,6 @@ GX_UBYTE blue[16]; /* _gx_image_reader_jpeg_one_mcu_write */ /* _gx_image_reader_jpeg_one_mcu_rotated_write */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ -/* */ /**************************************************************************/ static VOID _gx_image_reader_jpeg_1555xrgb_pixel_write(GX_JPEG_INFO *jpeg_info, GX_UBYTE red, GX_UBYTE green, GX_UBYTE blue) { @@ -1958,12 +1776,6 @@ static VOID _gx_image_reader_jpeg_1555xrgb_pixel_write(GX_JPEG_INFO *jpeg_info, /* */ /* _gx_image_reader_jpeg_decompress */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_jpeg_pixel_write_info_set(GX_JPEG_INFO *jpeg_info) { @@ -2079,19 +1891,6 @@ static UINT _gx_image_reader_jpeg_pixel_write_info_set(GX_JPEG_INFO *jpeg_info) /* */ /* _gx_image_reader_jpeg_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added Helium support, */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_jpeg_one_mcu_write(GX_JPEG_INFO *jpeg_info, INT xpos, INT ypos, INT h, INT v) { @@ -2247,12 +2046,6 @@ INT blue; /* */ /* _gx_image_reader_jpeg_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_jpeg_one_mcu_rotated_write(GX_JPEG_INFO *jpeg_info, INT xpos, INT ypos, INT h, INT v) { @@ -2445,20 +2238,6 @@ GX_BYTE sign = 1; /* */ /* _gx_image_reader_jpeg_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2022 Kenneth Maxwell Modified comment(s), */ -/* abort if block decode fails,*/ -/* resulting in version 6.2.0 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_jpeg_decompress(GX_JPEG_INFO *jpeg_info) { @@ -2567,17 +2346,6 @@ UINT (*one_mcu_write)(GX_JPEG_INFO *jpeg_info, INT xpos, INT ypos, INT h, INT v) /* _gx_image_reader_jpeg_decode */ /* _gx_image_reader_jpeg_mcu_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), removed */ -/* huffman table free logic, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_jpeg_decode_blocks(GX_JPEG_INFO *jpeg_info) { @@ -2707,17 +2475,6 @@ UINT status = GX_SUCCESS; /* */ /* _gx_image_reader_image_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ UINT _gx_image_reader_jpeg_decode(GX_IMAGE_READER *image_reader, GX_PIXELMAP *outmap) { @@ -2816,17 +2573,6 @@ GX_JPEG_INFO *jpeg_info; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ UINT _gx_image_reader_jpeg_mcu_decode(GX_CONST GX_UBYTE *read_data, ULONG data_size, GX_DRAW_CONTEXT *context, INT xpos, INT ypos) diff --git a/common/src/gx_image_reader_nearest_palette_color_get.c b/common/src/gx_image_reader_nearest_palette_color_get.c index cdc7af17..1b95c6b3 100644 --- a/common/src/gx_image_reader_nearest_palette_color_get.c +++ b/common/src/gx_image_reader_nearest_palette_color_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) UINT _gx_image_reader_nearest_palette_color_get(GX_IMAGE_READER *image_reader, GX_PIXEL *want_color, INT *index) diff --git a/common/src/gx_image_reader_palette_set.c b/common/src/gx_image_reader_palette_set.c index 43111468..e963ebb5 100644 --- a/common/src/gx_image_reader_palette_set.c +++ b/common/src/gx_image_reader_palette_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) UINT _gx_image_reader_palette_set(GX_IMAGE_READER *image_reader, GX_COLOR *pal, UINT palsize) diff --git a/common/src/gx_image_reader_pixel_read_callback_set.c b/common/src/gx_image_reader_pixel_read_callback_set.c index 2a5d2633..06683290 100644 --- a/common/src/gx_image_reader_pixel_read_callback_set.c +++ b/common/src/gx_image_reader_pixel_read_callback_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* _gx_image_reader_pixel_read_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_8bit_alpha_read(GX_IMAGE_READER *image_reader, INT index, GX_PIXEL *pixel) { @@ -116,14 +109,6 @@ GX_UBYTE *pLine; /* */ /* _gx_image_reader_pixel_read_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_1bit_pixel_read(GX_IMAGE_READER *image_reader, INT index, GX_PIXEL *pixel) { @@ -212,14 +197,6 @@ UINT palindex; /* */ /* _gx_image_reader_pixel_read_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_2bit_pixel_read(GX_IMAGE_READER *image_reader, INT index, GX_PIXEL *pixel) { @@ -309,14 +286,6 @@ UINT palindex; /* */ /* _gx_image_reader_pixel_read_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_4bit_pixel_read(GX_IMAGE_READER *image_reader, INT index, GX_PIXEL *pixel) { @@ -405,14 +374,6 @@ UINT palindex; /* */ /* _gx_image_reader_pixel_read_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_8bit_pixel_read(GX_IMAGE_READER *image_reader, INT index, GX_PIXEL *pixel) { @@ -496,14 +457,6 @@ UINT palindex; /* */ /* _gx_image_reader_pixel_read_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_8bit_palette_pixel_read(GX_IMAGE_READER *image_reader, INT index, GX_PIXEL *pixel) { @@ -571,14 +524,6 @@ UINT palindex; /* */ /* _gx_image_reader_pixel_read_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_16bit_gray_alpha_read(GX_IMAGE_READER *image_reader, INT index, GX_PIXEL *pixel) { @@ -629,14 +574,6 @@ GX_UBYTE *pLine; /* */ /* _gx_image_reader_pixel_read_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_32bit_gray_alpha_read(GX_IMAGE_READER *image_reader, INT index, GX_PIXEL *pixel) { @@ -686,14 +623,6 @@ GX_UBYTE *pLine; /* */ /* _gx_image_reader_pixel_read_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_24bit_pixel_read(GX_IMAGE_READER *image_reader, INT index, GX_PIXEL *pixel) { @@ -754,14 +683,6 @@ GX_COLOR *pTrans = image_reader -> gx_image_reader_png_trans; /* */ /* _gx_image_reader_pixel_read_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_48bit_pixel_read(GX_IMAGE_READER *image_reader, INT index, GX_PIXEL *pixel) { @@ -824,14 +745,6 @@ GX_COLOR *pTrans = image_reader -> gx_image_reader_png_trans; /* */ /* _gx_image_reader_pixel_read_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_64bit_pixel_read(GX_IMAGE_READER *image_reader, INT index, GX_PIXEL *pixel) { @@ -883,14 +796,6 @@ GX_UBYTE *pLine; /* */ /* _gx_image_reader_pixel_read_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_32argb_pixel_read(GX_IMAGE_READER *image_reader, INT index, GX_PIXEL *pixel) { @@ -939,14 +844,6 @@ GX_COLOR *pLine; /* */ /* _gx_image_reader_pixel_read_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_32bit_pixel_read(GX_IMAGE_READER *image_reader, INT index, GX_PIXEL *pixel) { @@ -995,14 +892,6 @@ GX_UBYTE *pget; /* */ /* _gx_image_reader_pixel_read_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_16bit_gray_read(GX_IMAGE_READER *image_reader, INT index, GX_PIXEL *pixel) { @@ -1062,14 +951,6 @@ GX_UBYTE *pget; /* */ /* _gx_image_reader_pixel_read_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_565rgb_pixel_read(GX_IMAGE_READER *image_reader, INT index, GX_PIXEL *pixel) { @@ -1131,14 +1012,6 @@ GX_UBYTE *pAlpha; /* */ /* _gx_image_reader_pixel_read_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_1555xrgb_pixel_read(GX_IMAGE_READER *image_reader, INT index, GX_PIXEL *pixel) { @@ -1200,14 +1073,6 @@ GX_UBYTE *pAlpha; /* */ /* _gx_image_reader_pixel_read_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_4444argb_pixel_read(GX_IMAGE_READER *image_reader, INT index, GX_PIXEL *pixel) { @@ -1257,14 +1122,6 @@ const USHORT *data = (USHORT *)(image_reader -> gx_image_reader_getdata); /* */ /* _gx_image_reader_pixel_read_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_4bit_grayscale_pixel_read(GX_IMAGE_READER *image_reader, INT index, GX_PIXEL *pixel) { @@ -1324,14 +1181,6 @@ GX_UBYTE color; /* */ /* _gx_image_reader_pixel_read_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_4bit_grayscale_transparent_read(GX_IMAGE_READER *image_reader, INT index, GX_PIXEL *pixel) { @@ -1405,14 +1254,6 @@ GX_UBYTE transparency = *(auxdata + aux_index); /* */ /* _gx_image_reader_pixel_read_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_1bpp_pixel_read(GX_IMAGE_READER *image_reader, INT index, GX_PIXEL *pixel) { @@ -1470,14 +1311,6 @@ GX_UBYTE color; /* */ /* _gx_image_reader_pixel_read_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_1bpp_transparent_read(GX_IMAGE_READER *image_reader, INT index, GX_PIXEL *pixel) { @@ -1590,14 +1423,6 @@ GX_UBYTE color; /* */ /* gx_image_reader_colorspace_convert */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_image_reader_pixel_read_callback_set(GX_IMAGE_READER *image_reader, GX_PIXELMAP *inmap) { diff --git a/common/src/gx_image_reader_pixel_write_callback_set.c b/common/src/gx_image_reader_pixel_write_callback_set.c index 82bf89df..1c6c3674 100644 --- a/common/src/gx_image_reader_pixel_write_callback_set.c +++ b/common/src/gx_image_reader_pixel_write_callback_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ extern VOID _gx_image_reader_rgb2gray(GX_PIXEL *pixel, GX_UBYTE *gray); /* */ /* _gx_image_reader_pixel_write_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_8bit_alpha_write(GX_IMAGE_READER *image_reader, GX_PIXEL *pixel) { @@ -119,14 +112,6 @@ GX_UBYTE *palpha; /* */ /* _gx_image_reader_pixel_write_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_8bit_palette_write(GX_IMAGE_READER *image_reader, GX_PIXEL *pixel) { @@ -186,14 +171,6 @@ INT palindex; /* */ /* _gx_image_reader_pixel_write_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_24xrgb_pixel_write(GX_IMAGE_READER *image_reader, GX_PIXEL *pixel) { @@ -246,12 +223,6 @@ GX_COLOR *pLine; /* */ /* _gx_image_reader_pixel_write_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_24xrgb_rotated_pixel_write(GX_IMAGE_READER *image_reader, GX_PIXEL *pixel) { @@ -310,14 +281,6 @@ GX_COLOR *pLine; /* */ /* _gx_image_reader_pixel_write_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_32argb_pixel_write(GX_IMAGE_READER *image_reader, GX_PIXEL *pixel) { @@ -369,14 +332,6 @@ GX_COLOR *pLine; /* */ /* _gx_image_reader_pixel_write_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_565rgb_rle_pixel_write(GX_IMAGE_READER *image_reader, GX_PIXEL *pixel) { @@ -450,14 +405,6 @@ GX_UBYTE *pAlpha; /* */ /* _gx_image_reader_pixel_write_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_565rgb_pixel_write(GX_IMAGE_READER *image_reader, GX_PIXEL *pixel) { @@ -518,15 +465,6 @@ GX_UBYTE *pAlpha; /* */ /* _gx_image_reader_pixel_write_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 03-02-2021 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_565rgb_rotated_pixel_write(GX_IMAGE_READER *image_reader, GX_PIXEL *pixel) { @@ -599,14 +537,6 @@ GX_UBYTE *pAlpha; /* */ /* _gx_image_reader_pixel_write_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_1555xrgb_rle_pixel_write(GX_IMAGE_READER *image_reader, GX_PIXEL *pixel) { @@ -681,14 +611,6 @@ GX_UBYTE *pAlpha; /* */ /* _gx_image_reader_pixel_write_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_1555xrgb_pixel_write(GX_IMAGE_READER *image_reader, GX_PIXEL *pixel) { @@ -750,14 +672,6 @@ GX_UBYTE *pAlpha; /* */ /* _gx_image_reader_pixel_write_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_4444argb_pixel_write(GX_IMAGE_READER *image_reader, GX_PIXEL *pixel) { @@ -815,14 +729,6 @@ USHORT *pLine; /* */ /* _gx_image_reader_pixel_write_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_4444argb_transparent_write(GX_IMAGE_READER *image_reader, GX_PIXEL *pixel) { @@ -880,14 +786,6 @@ USHORT *pLine; /* */ /* _gx_image_reader_pixel_write_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_4bit_grayscale_pixel_write(GX_IMAGE_READER *image_reader, GX_PIXEL *pixel) { @@ -960,14 +858,6 @@ GX_UBYTE color; /* */ /* _gx_image_reader_pixel_write_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_4bit_grayscale_transparent_write(GX_IMAGE_READER *image_reader, GX_PIXEL *pixel) { @@ -1086,14 +976,6 @@ GX_UBYTE color; /* */ /* _gx_image_reader_pixel_write_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_monochrome_pixel_write(GX_IMAGE_READER *image_reader, GX_PIXEL *pixel) { @@ -1184,14 +1066,6 @@ GX_UBYTE color; /* */ /* _gx_image_reader_pixel_write_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_monochrome_transparent_write(GX_IMAGE_READER *image_reader, GX_PIXEL *pixel) { @@ -1309,15 +1183,6 @@ GX_UBYTE color; /* */ /* _gx_image_reader_pixel_write_callback_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 02-02-2021 Kenneth Maxwell Modified comment(s), */ -/* added 24xrgb format support,*/ -/* resulting in version 6.1.4 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_pixel_rotated_write_callback_set(GX_IMAGE_READER *image_reader, GX_PIXELMAP *outmap) { @@ -1453,17 +1318,6 @@ static UINT _gx_image_reader_pixel_rotated_write_callback_set(GX_IMAGE_READER *i /* */ /* _gx_image_reader_colorspace_convert */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* supported rotation mode, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ UINT _gx_image_reader_pixel_write_callback_set(GX_IMAGE_READER *image_reader, GX_PIXELMAP *outmap) { diff --git a/common/src/gx_image_reader_png_decode.c b/common/src/gx_image_reader_png_decode.c index 70cea29b..f328de89 100644 --- a/common/src/gx_image_reader_png_decode.c +++ b/common/src/gx_image_reader_png_decode.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ static UINT _bit_count; /* */ /* _gx_image_reader_png_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_image_reader_png_crc_table_make(GX_PNG *png) { @@ -130,14 +123,6 @@ UINT k; /* _gx_image_reader_png_decode */ /* _gx_image_reader_png_bits_get */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_image_reader_png_crc_get(GX_PNG *png, UINT *crc, UINT len) { @@ -187,14 +172,6 @@ UINT crc_cal = (*crc); /* _gx_image_reader_png_IHDR_chunk_read */ /* _gx_image_reader_png_gAMA_chunk_read */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_image_reader_png_4bytes_read(GX_PNG *png, INT *value) { @@ -247,14 +224,6 @@ INT get_value; /* _gx_image_reader_png_bits_get */ /* _gx_image_reader_png_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_image_reader_png_chunk_type_read(GX_PNG *png, CHAR *chunk_type) { @@ -304,14 +273,6 @@ static VOID _gx_image_reader_png_chunk_type_read(GX_PNG *png, CHAR *chunk_type) /* _gx_image_reader_png_huffcode_decode */ /* _gx_image_reader_png_IDAT_chunk_read */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_png_bits_get(GX_PNG *png, UINT num_of_bits, UINT *return_value) { @@ -396,14 +357,6 @@ INT index = png -> gx_png_trunk_end_index; /* _gx_image_reader_png_fixed_ll_huffman_code_find */ /* _gx_image_reader_png_huffcode_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static void _gx_image_reader_png_bits_revert(UINT *bits, UINT bits_len) { @@ -452,14 +405,6 @@ UINT i; /* _gx_image_reader_png_tRNS_chunk_read */ /* _gx_image_reader_png_IDAT_chunk_read */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_image_reader_png_bits_skip(UINT num_of_skip_bits) { @@ -499,18 +444,6 @@ static VOID _gx_image_reader_png_bits_skip(UINT num_of_skip_bits) /* */ /* _gx_image_reader_png_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added data boundary check, */ -/* resulting in version 6.1 */ -/* 10-31-2022 Ting Zhu Modified comment(s), */ -/* added invalid value check, */ -/* resulting in version 6.2.0 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_png_IHDR_chunk_read(GX_PNG *png) { @@ -648,14 +581,6 @@ static UINT _gx_image_reader_png_IHDR_chunk_read(GX_PNG *png) /* _gx_image_reader_png_huffcode_decode */ /* _gx_image_reader_png_ll_huffman_read */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_png_dynamic_huffman_code_find(INT *huffman_table, UINT *huffman_bits_count, @@ -735,14 +660,6 @@ UINT code_index = 0; /* */ /* _gx_image_reader_png_huffcode_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_png_fixed_ll_huffman_code_find(UINT scan_buffer, UINT *bit_len, @@ -828,14 +745,6 @@ UINT code; /* */ /* _gx_image_reader_png_IDAT_chunk_read */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_png_clen_huffman_read(GX_PNG *png, UINT hclen) { @@ -924,20 +833,6 @@ INT pos[16]; /* */ /* _gx_image_reader_png_IDAT_chunk_read */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Ting Zhu Modified comment(s), */ -/* added invalid value check, */ -/* resulting in version 6.1.7 */ -/* 10-31-2022 Ting Zhu Modified comment(s), */ -/* added invalid value check, */ -/* resulting in version 6.2.0 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_png_ll_huffman_read(GX_PNG *png, UINT hlit, UINT hdist) { @@ -1162,16 +1057,6 @@ INT index; /* */ /* _gx_image_reader_png_IDAT_chunk_read */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added data boundary check, */ -/* fixed gcc compile warning, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_png_huffcode_decode(GX_PNG *png, GX_BOOL dynamic, UINT decoded_data_size) { @@ -1359,14 +1244,6 @@ UINT copy_len; /* */ /* _gx_image_reader_png_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_png_tRNS_chunk_read(GX_PNG *png) { @@ -1461,15 +1338,6 @@ INT index; /* */ /* _gx_image_reader_png_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added data boundary check, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_png_IDAT_chunk_read(GX_PNG *png) { @@ -1708,15 +1576,6 @@ INT nlen; /* */ /* _gx_image_reader_png_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added data boundary check, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_png_gAMA_chunk_read(GX_PNG *png) { @@ -1763,14 +1622,6 @@ static UINT _gx_image_reader_png_gAMA_chunk_read(GX_PNG *png) /* */ /* _gx_image_reader_png_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_png_PLTE_chunk_read(GX_PNG *png) { @@ -1831,17 +1682,6 @@ GX_UBYTE blue; /* */ /* _gx_image_reader_png_unfilter */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), */ -/* replaced abs with GX_ABS, */ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ static GX_UBYTE _gx_image_reader_png_paeth_predictor(GX_UBYTE a, GX_UBYTE b, GX_UBYTE c) { @@ -1900,17 +1740,6 @@ INT pa, pb, pc; /* */ /* _gx_image_reader_png_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2022 Kenneth Maxwell Modified comment(s), */ -/* added null pointer check, */ -/* resulting in version 6.2.0 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_png_unfilter(GX_PNG *png) { @@ -2065,22 +1894,6 @@ INT y; /* */ /* _gx_image_reader_image_decode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added data boundary check, */ -/* resulting in version 6.1 */ -/* 06-02-2021 Ting Zhu Modified comment(s), and */ -/* improved png decoding */ -/* performance, */ -/* resulting in version 6.1.7 */ -/* 10-31-2022 Ting Zhu Modified comment(s), and */ -/* added invalid value check, */ -/* resulting in version 6.2.0 */ -/* */ /**************************************************************************/ UINT _gx_image_reader_png_decode(GX_CONST GX_UBYTE *read_data, ULONG data_size, GX_PIXELMAP *outmap) { diff --git a/common/src/gx_image_reader_rle_encode.c b/common/src/gx_image_reader_rle_encode.c index 4e2beaca..b4857189 100644 --- a/common/src/gx_image_reader_rle_encode.c +++ b/common/src/gx_image_reader_rle_encode.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* */ /* _gx_image_reader_rle_one_row_encode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_rle_count_location_get(GX_IMAGE_READER *image_reader, GX_UBYTE **put_count) { @@ -159,14 +152,6 @@ static UINT _gx_image_reader_rle_count_location_get(GX_IMAGE_READER *image_reade /* */ /* _gx_image_reader_rle_one_row_encode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_rle_count_write(GX_IMAGE_READER *image_reader, INT *count, GX_UBYTE *put_count, GX_BOOL repeat) @@ -322,14 +307,6 @@ INT write_count; /* */ /* _gx_image_reader_rle_one_row_encode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_rle_duplicates_count(GX_IMAGE_READER *image_reader, INT index, INT *repeat_counts) { @@ -400,14 +377,6 @@ GX_PIXEL cur_pixel; /* */ /* _gx_image_reader_rle_encode */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_rle_one_row_encode(GX_IMAGE_READER *image_reader) { @@ -518,14 +487,6 @@ GX_PIXEL pixel; /* */ /* _gx_image_reader_rle_colorspace_convert */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_image_reader_rle_encode_size_get(GX_IMAGE_READER *image_reader, UINT *data_size, UINT *aux_size) { @@ -615,14 +576,6 @@ UINT aux_stride; /* */ /* _gx_image_reader_rle_colorspace_convert */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_image_reader_rle_encode(GX_IMAGE_READER *image_reader, GX_PIXELMAP *outmap) { diff --git a/common/src/gx_image_reader_start.c b/common/src/gx_image_reader_start.c index 2bda068a..0488fd8a 100644 --- a/common/src/gx_image_reader_start.c +++ b/common/src/gx_image_reader_start.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_image_reader_rgb2gray(GX_PIXEL *pixel, GX_UBYTE *gray) { @@ -109,14 +102,6 @@ VOID _gx_image_reader_rgb2gray(GX_PIXEL *pixel, GX_UBYTE *gray) /* */ /* _gx_image_reader_start */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_image_reader_gray_threshold_calculate(GX_IMAGE_READER *image_reader) { @@ -196,14 +181,6 @@ GX_UBYTE gray; /* */ /* _gx_image_reader_start */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_image_reader_pixelmap_info_set(GX_IMAGE_READER *image_reader, GX_PIXELMAP *outmap) { @@ -332,17 +309,6 @@ static UINT _gx_image_reader_pixelmap_info_set(GX_IMAGE_READER *image_reader, GX /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ UINT _gx_image_reader_start(GX_IMAGE_READER *image_reader, GX_PIXELMAP *outmap) { diff --git a/common/src/gx_line_chart_axis_draw.c b/common/src/gx_line_chart_axis_draw.c index c5cedbc4..2ddff39d 100644 --- a/common/src/gx_line_chart_axis_draw.c +++ b/common/src/gx_line_chart_axis_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_line_chart_axis_draw(GX_LINE_CHART *chart) { diff --git a/common/src/gx_line_chart_create.c b/common/src/gx_line_chart_create.c index 52805762..657bceaa 100644 --- a/common/src/gx_line_chart_create.c +++ b/common/src/gx_line_chart_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_line_chart_create(GX_LINE_CHART *chart, GX_CONST GX_CHAR *name, diff --git a/common/src/gx_line_chart_data_draw.c b/common/src/gx_line_chart_data_draw.c index 0b9534d5..3ff04cbf 100644 --- a/common/src/gx_line_chart_data_draw.c +++ b/common/src/gx_line_chart_data_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_line_chart_data_draw(GX_LINE_CHART *chart) { diff --git a/common/src/gx_line_chart_draw.c b/common/src/gx_line_chart_draw.c index dc7d744d..1ab41811 100644 --- a/common/src/gx_line_chart_draw.c +++ b/common/src/gx_line_chart_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_line_chart_draw(GX_LINE_CHART *chart) { diff --git a/common/src/gx_line_chart_update.c b/common/src/gx_line_chart_update.c index 73f18f71..e30f041c 100644 --- a/common/src/gx_line_chart_update.c +++ b/common/src/gx_line_chart_update.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_line_chart_update(GX_LINE_CHART *chart, INT *data, INT data_count) { diff --git a/common/src/gx_line_chart_y_scale_calculate.c b/common/src/gx_line_chart_y_scale_calculate.c index 118aad11..473cbd2e 100644 --- a/common/src/gx_line_chart_y_scale_calculate.c +++ b/common/src/gx_line_chart_y_scale_calculate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_line_chart_y_scale_calculate(GX_LINE_CHART *chart, INT *return_value) { diff --git a/common/src/gx_menu_create.c b/common/src/gx_menu_create.c index e6e84c3b..51506582 100644 --- a/common/src/gx_menu_create.c +++ b/common/src/gx_menu_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,17 +71,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* set menu event process, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ UINT _gx_menu_create(GX_MENU *menu, GX_CONST GX_CHAR *name, GX_WIDGET *parent, GX_RESOURCE_ID text_id, GX_RESOURCE_ID fill_id, diff --git a/common/src/gx_menu_draw.c b/common/src/gx_menu_draw.c index 9c74ff22..dc20fee8 100644 --- a/common/src/gx_menu_draw.c +++ b/common/src/gx_menu_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_menu_draw(GX_MENU *menu) { diff --git a/common/src/gx_menu_event_process.c b/common/src/gx_menu_event_process.c index 333fbaea..68bf3f9c 100644 --- a/common/src/gx_menu_event_process.c +++ b/common/src/gx_menu_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,12 +63,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ UINT _gx_menu_event_process(GX_MENU *menu, GX_EVENT *event_ptr) { diff --git a/common/src/gx_menu_insert.c b/common/src/gx_menu_insert.c index 6a22c9af..758963f2 100644 --- a/common/src/gx_menu_insert.c +++ b/common/src/gx_menu_insert.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_menu_insert(GX_MENU *menu, GX_WIDGET *widget) { diff --git a/common/src/gx_menu_position.c b/common/src/gx_menu_position.c index 7fcd9163..51b7be29 100644 --- a/common/src/gx_menu_position.c +++ b/common/src/gx_menu_position.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_menu_one_level_position(GX_MENU *menu, GX_VALUE indentation) { @@ -200,14 +193,6 @@ GX_MENU_LIST *item_list; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_menu_position(GX_MENU *menu, GX_VALUE indentation) { diff --git a/common/src/gx_menu_remove.c b/common/src/gx_menu_remove.c index c91a0e44..9ea13fad 100644 --- a/common/src/gx_menu_remove.c +++ b/common/src/gx_menu_remove.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_menu_remove(GX_MENU *menu, GX_WIDGET *widget) { diff --git a/common/src/gx_menu_text_draw.c b/common/src/gx_menu_text_draw.c index e18d0c9b..ce19236b 100644 --- a/common/src/gx_menu_text_draw.c +++ b/common/src/gx_menu_text_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_menu_text_draw(GX_MENU *menu) { diff --git a/common/src/gx_menu_text_offset_set.c b/common/src/gx_menu_text_offset_set.c index c95bcf70..3364905e 100644 --- a/common/src/gx_menu_text_offset_set.c +++ b/common/src/gx_menu_text_offset_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_menu_text_offset_set(GX_MENU *menu, GX_VALUE x_offset, GX_VALUE y_offset) { diff --git a/common/src/gx_monochrome_driver_disabled_button_line_draw.c b/common/src/gx_monochrome_driver_disabled_button_line_draw.c index e86e0014..05db590b 100644 --- a/common/src/gx_monochrome_driver_disabled_button_line_draw.c +++ b/common/src/gx_monochrome_driver_disabled_button_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ /* _gx_text_button_draw */ /* _gx_multi_line_text_button_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_monochrome_driver_disabled_button_line_draw(GX_BUTTON *button) { diff --git a/common/src/gx_multi_line_text_button_create.c b/common/src/gx_multi_line_text_button_create.c index 6623907d..3423fe29 100644 --- a/common/src/gx_multi_line_text_button_create.c +++ b/common/src/gx_multi_line_text_button_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_button_create(GX_MULTI_LINE_TEXT_BUTTON *button, GX_CONST GX_CHAR *name, GX_WIDGET *parent, GX_RESOURCE_ID text_id, ULONG style, USHORT Id, diff --git a/common/src/gx_multi_line_text_button_draw.c b/common/src/gx_multi_line_text_button_draw.c index 7e7fce48..0a44b8c8 100644 --- a/common/src/gx_multi_line_text_button_draw.c +++ b/common/src/gx_multi_line_text_button_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* */ /* System and Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_multi_line_text_button_draw(GX_MULTI_LINE_TEXT_BUTTON *button) { diff --git a/common/src/gx_multi_line_text_button_event_process.c b/common/src/gx_multi_line_text_button_event_process.c index cfa07a43..73cc9738 100644 --- a/common/src/gx_multi_line_text_button_event_process.c +++ b/common/src/gx_multi_line_text_button_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,17 +65,6 @@ /* */ /* System and Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* updated default call, */ -/* added logic to handle new */ -/* events, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_button_event_process(GX_MULTI_LINE_TEXT_BUTTON *button, GX_EVENT *event_ptr) { diff --git a/common/src/gx_multi_line_text_button_line_pointers_set.c b/common/src/gx_multi_line_text_button_line_pointers_set.c index d0406099..664b4db4 100644 --- a/common/src/gx_multi_line_text_button_line_pointers_set.c +++ b/common/src/gx_multi_line_text_button_line_pointers_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,20 +66,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added line pointers set */ -/* loigc for dynamic bidi text,*/ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* updated with new bidi text */ -/* reorder function call, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ VOID _gx_multi_line_text_button_line_pointers_set(GX_MULTI_LINE_TEXT_BUTTON *button) { diff --git a/common/src/gx_multi_line_text_button_text_draw.c b/common/src/gx_multi_line_text_button_text_draw.c index 057c9799..da7fd124 100644 --- a/common/src/gx_multi_line_text_button_text_draw.c +++ b/common/src/gx_multi_line_text_button_text_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,16 +66,6 @@ /* */ /* System and Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* removed dynamic bidi text */ -/* processing logic, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_multi_line_text_button_text_draw(GX_MULTI_LINE_TEXT_BUTTON *button) { diff --git a/common/src/gx_multi_line_text_button_text_id_set.c b/common/src/gx_multi_line_text_button_text_id_set.c index ed6cfa1e..436745db 100644 --- a/common/src/gx_multi_line_text_button_text_id_set.c +++ b/common/src/gx_multi_line_text_button_text_id_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_button_text_id_set(GX_MULTI_LINE_TEXT_BUTTON *button, GX_RESOURCE_ID string_id) { diff --git a/common/src/gx_multi_line_text_button_text_set.c b/common/src/gx_multi_line_text_button_text_set.c index 1e75743a..2e036a8e 100644 --- a/common/src/gx_multi_line_text_button_text_set.c +++ b/common/src/gx_multi_line_text_button_text_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,17 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added return status check, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_multi_line_text_button_text_set(GX_MULTI_LINE_TEXT_BUTTON *button, GX_CONST GX_CHAR *text) @@ -119,17 +109,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added return status check, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_button_text_set_ext(GX_MULTI_LINE_TEXT_BUTTON *button, GX_CONST GX_STRING *text) { diff --git a/common/src/gx_multi_line_text_input_backspace.c b/common/src/gx_multi_line_text_input_backspace.c index c793d878..dcbd173e 100644 --- a/common/src/gx_multi_line_text_input_backspace.c +++ b/common/src/gx_multi_line_text_input_backspace.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -85,18 +86,6 @@ /* */ /* _gx_multi_line_text_input_keydown_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_backspace(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_multi_line_text_input_buffer_clear.c b/common/src/gx_multi_line_text_input_buffer_clear.c index 7da5a64b..81e46183 100644 --- a/common/src/gx_multi_line_text_input_buffer_clear.c +++ b/common/src/gx_multi_line_text_input_buffer_clear.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_buffer_clear(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_multi_line_text_input_buffer_get.c b/common/src/gx_multi_line_text_input_buffer_get.c index fbb0fe87..df362738 100644 --- a/common/src/gx_multi_line_text_input_buffer_get.c +++ b/common/src/gx_multi_line_text_input_buffer_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_buffer_get(GX_MULTI_LINE_TEXT_INPUT *text_input, GX_CHAR **buffer_address, UINT *content_size, UINT *buffer_size) diff --git a/common/src/gx_multi_line_text_input_char_insert.c b/common/src/gx_multi_line_text_input_char_insert.c index 345788c6..315638e3 100644 --- a/common/src/gx_multi_line_text_input_char_insert.c +++ b/common/src/gx_multi_line_text_input_char_insert.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* */ /* _gx_multi_line_text_input_keydown_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_multi_line_text_input_char_insert(GX_MULTI_LINE_TEXT_INPUT *text_input, GX_UBYTE *str, UINT str_size) @@ -136,14 +129,6 @@ GX_STRING string; /* */ /* _gx_multi_line_text_input_keydown_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_char_insert_ext(GX_MULTI_LINE_TEXT_INPUT *text_input, GX_CONST GX_STRING *str) { diff --git a/common/src/gx_multi_line_text_input_char_remove.c b/common/src/gx_multi_line_text_input_char_remove.c index a26f02ee..76a1dd9c 100644 --- a/common/src/gx_multi_line_text_input_char_remove.c +++ b/common/src/gx_multi_line_text_input_char_remove.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ /* _gx_multi_line_text_input_backspace */ /* _gx_multi_line_text_input_delete */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_char_remove(GX_MULTI_LINE_TEXT_INPUT *text_input, UINT start_pos, UINT del_bytes) { diff --git a/common/src/gx_multi_line_text_input_copy.c b/common/src/gx_multi_line_text_input_copy.c index f32debb4..a356f0c6 100644 --- a/common/src/gx_multi_line_text_input_copy.c +++ b/common/src/gx_multi_line_text_input_copy.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_copy(GX_MULTI_LINE_TEXT_INPUT *input) { diff --git a/common/src/gx_multi_line_text_input_create.c b/common/src/gx_multi_line_text_input_create.c index 183b264b..044d133b 100644 --- a/common/src/gx_multi_line_text_input_create.c +++ b/common/src/gx_multi_line_text_input_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -74,17 +75,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* supported dynamic buffer, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_create(GX_MULTI_LINE_TEXT_INPUT *text_input, GX_CONST GX_CHAR *name, diff --git a/common/src/gx_multi_line_text_input_cursor_pos_calculate.c b/common/src/gx_multi_line_text_input_cursor_pos_calculate.c index 67ac282a..dca61bbb 100644 --- a/common/src/gx_multi_line_text_input_cursor_pos_calculate.c +++ b/common/src/gx_multi_line_text_input_cursor_pos_calculate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -78,14 +79,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_cursor_pos_calculate(GX_MULTI_LINE_TEXT_INPUT *text_input, GX_POINT click_pos) diff --git a/common/src/gx_multi_line_text_input_cursor_pos_get.c b/common/src/gx_multi_line_text_input_cursor_pos_get.c index 2ec25dda..906c34b1 100644 --- a/common/src/gx_multi_line_text_input_cursor_pos_get.c +++ b/common/src/gx_multi_line_text_input_cursor_pos_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_cursor_pos_get(GX_MULTI_LINE_TEXT_INPUT *input, GX_POINT *cursor_pos) { diff --git a/common/src/gx_multi_line_text_input_cursor_pos_update.c b/common/src/gx_multi_line_text_input_cursor_pos_update.c index 01a52014..66394c99 100644 --- a/common/src/gx_multi_line_text_input_cursor_pos_update.c +++ b/common/src/gx_multi_line_text_input_cursor_pos_update.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ /* */ /* GUIX Intercal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_cursor_pos_update(GX_MULTI_LINE_TEXT_INPUT *text_input, GX_BOOL make_cursor_visible) diff --git a/common/src/gx_multi_line_text_input_cursor_visible.c b/common/src/gx_multi_line_text_input_cursor_visible.c index 2a02318f..472435a8 100644 --- a/common/src/gx_multi_line_text_input_cursor_visible.c +++ b/common/src/gx_multi_line_text_input_cursor_visible.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,14 +71,6 @@ /* */ /* GUIX Intercal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_cursor_visible(GX_MULTI_LINE_TEXT_INPUT *text_input) diff --git a/common/src/gx_multi_line_text_input_cut.c b/common/src/gx_multi_line_text_input_cut.c index f864186e..b497aef7 100644 --- a/common/src/gx_multi_line_text_input_cut.c +++ b/common/src/gx_multi_line_text_input_cut.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_cut(GX_MULTI_LINE_TEXT_INPUT *input) { diff --git a/common/src/gx_multi_line_text_input_delete.c b/common/src/gx_multi_line_text_input_delete.c index 0894e40d..f65ad022 100644 --- a/common/src/gx_multi_line_text_input_delete.c +++ b/common/src/gx_multi_line_text_input_delete.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -85,14 +86,6 @@ /* */ /* _gx_multi_line_text_input_keydown_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_delete(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_multi_line_text_input_down_arrow.c b/common/src/gx_multi_line_text_input_down_arrow.c index c15c18d7..e3325cd9 100644 --- a/common/src/gx_multi_line_text_input_down_arrow.c +++ b/common/src/gx_multi_line_text_input_down_arrow.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ /* */ /* _gx_multi_line_text_input_keydown_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_down_arrow(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_multi_line_text_input_draw.c b/common/src/gx_multi_line_text_input_draw.c index 88d18b8d..46197740 100644 --- a/common/src/gx_multi_line_text_input_draw.c +++ b/common/src/gx_multi_line_text_input_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,14 +71,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_multi_line_text_input_draw(GX_MULTI_LINE_TEXT_INPUT *input) { diff --git a/common/src/gx_multi_line_text_input_end.c b/common/src/gx_multi_line_text_input_end.c index c6c44fd7..de42ef09 100644 --- a/common/src/gx_multi_line_text_input_end.c +++ b/common/src/gx_multi_line_text_input_end.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ /* */ /* _gx_multi_line_text_input_keydown_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_end(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_multi_line_text_input_event_process.c b/common/src/gx_multi_line_text_input_event_process.c index 445d5e8e..ddbe4726 100644 --- a/common/src/gx_multi_line_text_input_event_process.c +++ b/common/src/gx_multi_line_text_input_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -76,14 +77,6 @@ /* */ /* _gx_multi_line_text_input_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_multi_line_text_input_pen_down_process(GX_MULTI_LINE_TEXT_INPUT *text_input, GX_EVENT *event_ptr) { @@ -184,14 +177,6 @@ UINT end_mark = text_input -> gx_multi_line_text_input_end_mark /* */ /* _gx_multi_line_text_input_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_multi_line_text_input_pen_drag_process(GX_MULTI_LINE_TEXT_INPUT *text_input, GX_EVENT *event_ptr) { @@ -349,18 +334,6 @@ GX_VALUE click_y; /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to release */ -/* dynamic input buffer, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_event_process(GX_MULTI_LINE_TEXT_INPUT *text_input, GX_EVENT *event_ptr) { diff --git a/common/src/gx_multi_line_text_input_fill_color_set.c b/common/src/gx_multi_line_text_input_fill_color_set.c index 0a2a46fe..a6392d08 100644 --- a/common/src/gx_multi_line_text_input_fill_color_set.c +++ b/common/src/gx_multi_line_text_input_fill_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_fill_color_set(GX_MULTI_LINE_TEXT_INPUT *input, GX_RESOURCE_ID normal_fill_color_id, diff --git a/common/src/gx_multi_line_text_input_highlight_rectangle_get.c b/common/src/gx_multi_line_text_input_highlight_rectangle_get.c index 1a36bf1e..83f621fb 100644 --- a/common/src/gx_multi_line_text_input_highlight_rectangle_get.c +++ b/common/src/gx_multi_line_text_input_highlight_rectangle_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* _gx_system_dirty_mark Mark widget as drity */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_highlight_rectangle_get(GX_MULTI_LINE_TEXT_INPUT *input, GX_RECTANGLE *rect) { diff --git a/common/src/gx_multi_line_text_input_home.c b/common/src/gx_multi_line_text_input_home.c index 804f60dc..78a849bb 100644 --- a/common/src/gx_multi_line_text_input_home.c +++ b/common/src/gx_multi_line_text_input_home.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ /* */ /* _gx_multi_line_text_input_keydown_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_home(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_multi_line_text_input_keydown_process.c b/common/src/gx_multi_line_text_input_keydown_process.c index 2e092a38..d09cd973 100644 --- a/common/src/gx_multi_line_text_input_keydown_process.c +++ b/common/src/gx_multi_line_text_input_keydown_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -73,14 +74,6 @@ /* */ /* _gx_multi_line_text_input_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_keydown_process(GX_MULTI_LINE_TEXT_INPUT *input, GX_EVENT *event_ptr) { diff --git a/common/src/gx_multi_line_text_input_left_arrow.c b/common/src/gx_multi_line_text_input_left_arrow.c index 80f6e60c..cd5d04a3 100644 --- a/common/src/gx_multi_line_text_input_left_arrow.c +++ b/common/src/gx_multi_line_text_input_left_arrow.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -77,14 +78,6 @@ /* */ /* _gx_multi_line_text_input_keydown_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_left_arrow(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_multi_line_text_input_mark_down.c b/common/src/gx_multi_line_text_input_mark_down.c index 6869bc95..8c52d12f 100644 --- a/common/src/gx_multi_line_text_input_mark_down.c +++ b/common/src/gx_multi_line_text_input_mark_down.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ /* */ /* _gx_multi_line_text_input_keydown_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_mark_down(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_multi_line_text_input_mark_end.c b/common/src/gx_multi_line_text_input_mark_end.c index cddfb8e9..d7dcc5eb 100644 --- a/common/src/gx_multi_line_text_input_mark_end.c +++ b/common/src/gx_multi_line_text_input_mark_end.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,14 +71,6 @@ /* */ /* _gx_multi_line_text_input_keydown_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_mark_end(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_multi_line_text_input_mark_home.c b/common/src/gx_multi_line_text_input_mark_home.c index c6d14f20..bdb47a3b 100644 --- a/common/src/gx_multi_line_text_input_mark_home.c +++ b/common/src/gx_multi_line_text_input_mark_home.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,14 +71,6 @@ /* */ /* _gx_multi_line_text_input_keydown_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_mark_home(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_multi_line_text_input_mark_next.c b/common/src/gx_multi_line_text_input_mark_next.c index b396fd77..70e32cf2 100644 --- a/common/src/gx_multi_line_text_input_mark_next.c +++ b/common/src/gx_multi_line_text_input_mark_next.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -73,14 +74,6 @@ /* */ /* _gx_multi_line_text_input_keydown_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_mark_next(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_multi_line_text_input_mark_previous.c b/common/src/gx_multi_line_text_input_mark_previous.c index 9d892226..511160ef 100644 --- a/common/src/gx_multi_line_text_input_mark_previous.c +++ b/common/src/gx_multi_line_text_input_mark_previous.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -74,18 +75,6 @@ /* */ /* _gx_multi_line_text_input_keydown_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_mark_previous(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_multi_line_text_input_mark_up.c b/common/src/gx_multi_line_text_input_mark_up.c index a770c092..53f17aed 100644 --- a/common/src/gx_multi_line_text_input_mark_up.c +++ b/common/src/gx_multi_line_text_input_mark_up.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,14 +72,6 @@ /* */ /* _gx_multi_line_text_input_keydown_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_mark_up(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_multi_line_text_input_paste.c b/common/src/gx_multi_line_text_input_paste.c index b107c189..891aaafe 100644 --- a/common/src/gx_multi_line_text_input_paste.c +++ b/common/src/gx_multi_line_text_input_paste.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_paste(GX_MULTI_LINE_TEXT_INPUT *input) { diff --git a/common/src/gx_multi_line_text_input_right_arrow.c b/common/src/gx_multi_line_text_input_right_arrow.c index bed64a8b..531da193 100644 --- a/common/src/gx_multi_line_text_input_right_arrow.c +++ b/common/src/gx_multi_line_text_input_right_arrow.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -73,14 +74,6 @@ /* */ /* _gx_multi_line_text_input_keydown_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_right_arrow(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_multi_line_text_input_style_add.c b/common/src/gx_multi_line_text_input_style_add.c index 91e4e466..3d54336d 100644 --- a/common/src/gx_multi_line_text_input_style_add.c +++ b/common/src/gx_multi_line_text_input_style_add.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_style_add(GX_MULTI_LINE_TEXT_INPUT *text_input, ULONG style) { diff --git a/common/src/gx_multi_line_text_input_style_remove.c b/common/src/gx_multi_line_text_input_style_remove.c index 1bbb183a..219eaa28 100644 --- a/common/src/gx_multi_line_text_input_style_remove.c +++ b/common/src/gx_multi_line_text_input_style_remove.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_style_remove(GX_MULTI_LINE_TEXT_INPUT *text_input, ULONG style) { diff --git a/common/src/gx_multi_line_text_input_style_set.c b/common/src/gx_multi_line_text_input_style_set.c index 6804c824..39c25eeb 100644 --- a/common/src/gx_multi_line_text_input_style_set.c +++ b/common/src/gx_multi_line_text_input_style_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_style_set(GX_MULTI_LINE_TEXT_INPUT *text_input, ULONG style) { diff --git a/common/src/gx_multi_line_text_input_text_color_set.c b/common/src/gx_multi_line_text_input_text_color_set.c index afddea85..83a4ba90 100644 --- a/common/src/gx_multi_line_text_input_text_color_set.c +++ b/common/src/gx_multi_line_text_input_text_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_text_color_set(GX_MULTI_LINE_TEXT_INPUT *input, GX_RESOURCE_ID normal_text_color_id, diff --git a/common/src/gx_multi_line_text_input_text_rectangle_get.c b/common/src/gx_multi_line_text_input_text_rectangle_get.c index a2d4a18d..5346dd8c 100644 --- a/common/src/gx_multi_line_text_input_text_rectangle_get.c +++ b/common/src/gx_multi_line_text_input_text_rectangle_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* _gx_system_dirty_mark Mark widget as drity */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_text_rectangle_get(GX_MULTI_LINE_TEXT_INPUT *input, GX_POINT start_cursor_pos, GX_POINT end_cursor_pos, GX_RECTANGLE *rect) { diff --git a/common/src/gx_multi_line_text_input_text_select.c b/common/src/gx_multi_line_text_input_text_select.c index a434af6a..8d4244f7 100644 --- a/common/src/gx_multi_line_text_input_text_select.c +++ b/common/src/gx_multi_line_text_input_text_select.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_text_select(GX_MULTI_LINE_TEXT_INPUT *input, UINT start_index, UINT end_index) { diff --git a/common/src/gx_multi_line_text_input_text_set.c b/common/src/gx_multi_line_text_input_text_set.c index 245ec989..3f68bfbb 100644 --- a/common/src/gx_multi_line_text_input_text_set.c +++ b/common/src/gx_multi_line_text_input_text_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* */ /* _gx_multi_line_text_input_text_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_multi_line_text_input_new_line_character_get(GX_MULTI_LINE_TEXT_INPUT *text_input) { @@ -156,14 +149,6 @@ UINT glyph_len; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_multi_line_text_input_text_set(GX_MULTI_LINE_TEXT_INPUT *text_input, GX_CONST GX_CHAR *text) @@ -226,14 +211,6 @@ GX_STRING new_string; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_text_set_ext(GX_MULTI_LINE_TEXT_INPUT *text_input, GX_CONST GX_STRING *text) { diff --git a/common/src/gx_multi_line_text_input_up_arrow.c b/common/src/gx_multi_line_text_input_up_arrow.c index 555ebd9f..6a61d33f 100644 --- a/common/src/gx_multi_line_text_input_up_arrow.c +++ b/common/src/gx_multi_line_text_input_up_arrow.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,14 +72,6 @@ /* */ /* _gx_multi_line_text_input_keydown_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_input_up_arrow(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_multi_line_text_view_create.c b/common/src/gx_multi_line_text_view_create.c index c197f505..e05d6a0a 100644 --- a/common/src/gx_multi_line_text_view_create.c +++ b/common/src/gx_multi_line_text_view_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,18 +68,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to init new */ -/* structure member for */ -/* dynamic bidi text support, */ -/* fixed compiler warnings, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_view_create(GX_MULTI_LINE_TEXT_VIEW *text_view, GX_CONST GX_CHAR *name, diff --git a/common/src/gx_multi_line_text_view_display_info_get.c b/common/src/gx_multi_line_text_view_display_info_get.c index 2d81e8b8..d1d0539c 100644 --- a/common/src/gx_multi_line_text_view_display_info_get.c +++ b/common/src/gx_multi_line_text_view_display_info_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -75,15 +76,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* support line break status, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_multi_line_text_view_display_info_get(GX_MULTI_LINE_TEXT_VIEW *text_view, UINT start_index, UINT end_index, GX_MULTI_LINE_TEXT_INFO *text_info, GX_VALUE available_width) diff --git a/common/src/gx_multi_line_text_view_draw.c b/common/src/gx_multi_line_text_view_draw.c index 0c867a47..1bbc85f2 100644 --- a/common/src/gx_multi_line_text_view_draw.c +++ b/common/src/gx_multi_line_text_view_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_multi_line_text_view_draw(GX_MULTI_LINE_TEXT_VIEW *text_view) { diff --git a/common/src/gx_multi_line_text_view_event_process.c b/common/src/gx_multi_line_text_view_event_process.c index dd85b335..9ba72576 100644 --- a/common/src/gx_multi_line_text_view_event_process.c +++ b/common/src/gx_multi_line_text_view_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,17 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added delete event handle, */ -/* added logic to handle new */ -/* events, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_view_event_process(GX_MULTI_LINE_TEXT_VIEW *text_view, GX_EVENT *event_ptr) diff --git a/common/src/gx_multi_line_text_view_font_set.c b/common/src/gx_multi_line_text_view_font_set.c index d69474ff..1891184c 100644 --- a/common/src/gx_multi_line_text_view_font_set.c +++ b/common/src/gx_multi_line_text_view_font_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_view_font_set(GX_MULTI_LINE_TEXT_VIEW *text_view, GX_RESOURCE_ID font_id) { diff --git a/common/src/gx_multi_line_text_view_line_cache_update.c b/common/src/gx_multi_line_text_view_line_cache_update.c index ac249af6..8a0abcab 100644 --- a/common/src/gx_multi_line_text_view_line_cache_update.c +++ b/common/src/gx_multi_line_text_view_line_cache_update.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ /* */ /* _gx_multi_line_text_view_line_start_cache_update */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_multi_line_text_view_line_index_find(GX_MULTI_LINE_TEXT_VIEW *view, UINT start_line, UINT start_index, UINT search_line, UINT *return_index) { @@ -142,14 +135,6 @@ GX_MULTI_LINE_TEXT_INFO text_info; /* */ /* _gx_multi_line_text_view_line_start_cache_update */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_multi_line_text_view_line_start_cache_create(GX_MULTI_LINE_TEXT_VIEW *view, UINT first_line, UINT updated_size) { @@ -228,14 +213,6 @@ UINT loop; /* */ /* _gx_multi_line_text_view_line_tail_cache_update */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_multi_line_text_view_line_tail_cache_create(GX_MULTI_LINE_TEXT_VIEW *view, UINT start_index, UINT start_line, UINT first_line, UINT updated_size) { @@ -302,14 +279,6 @@ UINT loop; /* */ /* _gx_multi_line_text_view_line_cache_update */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_multi_line_text_view_line_start_cache_update(GX_MULTI_LINE_TEXT_VIEW *view, UINT new_first_cache_line) { @@ -382,14 +351,6 @@ UINT updated_size; /* */ /* _gx_multi_line_text_view_line_cache_update */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_multi_line_text_view_line_tail_cache_update(GX_MULTI_LINE_TEXT_VIEW *view, UINT new_first_cache_line) { @@ -463,20 +424,6 @@ UINT last_cache_line; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to disable line */ -/* cache process while dynamic */ -/* bidi text is enabled, */ -/* resulting in version 6.1 */ -/* 03-02-2021 Ting Zhu Modified comment(s), fixed */ -/* line height calculation, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_view_line_cache_update(GX_MULTI_LINE_TEXT_VIEW *view) { diff --git a/common/src/gx_multi_line_text_view_line_space_set.c b/common/src/gx_multi_line_text_view_line_space_set.c index 0f2adc13..1c9a1ade 100644 --- a/common/src/gx_multi_line_text_view_line_space_set.c +++ b/common/src/gx_multi_line_text_view_line_space_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_view_line_space_set(GX_MULTI_LINE_TEXT_VIEW *view, GX_BYTE line_space) { diff --git a/common/src/gx_multi_line_text_view_scroll.c b/common/src/gx_multi_line_text_view_scroll.c index edf81e7b..d309adbf 100644 --- a/common/src/gx_multi_line_text_view_scroll.c +++ b/common/src/gx_multi_line_text_view_scroll.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,14 +73,6 @@ /* Multi line text view */ /* event process routine */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_view_scroll(GX_MULTI_LINE_TEXT_VIEW *view, GX_VALUE amount_to_scroll) { @@ -117,7 +110,7 @@ GX_SCROLLBAR *scroll; block.gx_rectangle_left = (GX_VALUE)(block.gx_rectangle_left + 1); - /* If the text view has a thin (rounded) border with no + /* If the text view has a thin (rounded) border with no whitespace between border and text, we cannot use block move to scroll because we will capture pixels from the rounded corner. In that case just use dirty_mark, otherwise diff --git a/common/src/gx_multi_line_text_view_scroll_info_get.c b/common/src/gx_multi_line_text_view_scroll_info_get.c index 88b691b7..58802597 100644 --- a/common/src/gx_multi_line_text_view_scroll_info_get.c +++ b/common/src/gx_multi_line_text_view_scroll_info_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_view_scroll_info_get(GX_MULTI_LINE_TEXT_VIEW *text_view, ULONG style, GX_SCROLL_INFO *info) { diff --git a/common/src/gx_multi_line_text_view_string_total_rows_compute.c b/common/src/gx_multi_line_text_view_string_total_rows_compute.c index e4a2a09a..18d9417a 100644 --- a/common/src/gx_multi_line_text_view_string_total_rows_compute.c +++ b/common/src/gx_multi_line_text_view_string_total_rows_compute.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,21 +72,6 @@ /* _gx_multi_line_text_view_text_id_set */ /* _gx_multi_line_text_view_text_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to calculate */ -/* total lines for dynamic */ -/* bidi text, */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* updated with new bidi text */ -/* reorder function call, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_view_string_total_rows_compute(GX_MULTI_LINE_TEXT_VIEW *text_view) { diff --git a/common/src/gx_multi_line_text_view_text_color_set.c b/common/src/gx_multi_line_text_view_text_color_set.c index 005df7c4..d5c2f6c2 100644 --- a/common/src/gx_multi_line_text_view_text_color_set.c +++ b/common/src/gx_multi_line_text_view_text_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_view_text_color_set(GX_MULTI_LINE_TEXT_VIEW *text_view, GX_RESOURCE_ID normal_text_color_id, diff --git a/common/src/gx_multi_line_text_view_text_draw.c b/common/src/gx_multi_line_text_view_text_draw.c index 38e5f8d7..9579120f 100644 --- a/common/src/gx_multi_line_text_view_text_draw.c +++ b/common/src/gx_multi_line_text_view_text_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -90,18 +91,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* support runtime Arabic */ -/* line breaking, */ -/* modified logic of dynamic */ -/* bidi text draw, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_multi_line_text_view_text_draw(GX_MULTI_LINE_TEXT_VIEW *text_view, GX_RESOURCE_ID text_color) { diff --git a/common/src/gx_multi_line_text_view_text_id_set.c b/common/src/gx_multi_line_text_view_text_id_set.c index dfd814a0..13df8ed2 100644 --- a/common/src/gx_multi_line_text_view_text_id_set.c +++ b/common/src/gx_multi_line_text_view_text_id_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -77,16 +78,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to delete */ -/* dynamic bidi text, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_view_text_id_set(GX_MULTI_LINE_TEXT_VIEW *text_view, GX_RESOURCE_ID text_id) diff --git a/common/src/gx_multi_line_text_view_text_set.c b/common/src/gx_multi_line_text_view_text_set.c index e7758daa..6e1d68d3 100644 --- a/common/src/gx_multi_line_text_view_text_set.c +++ b/common/src/gx_multi_line_text_view_text_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_multi_line_text_view_text_set(GX_MULTI_LINE_TEXT_VIEW *text_view, @@ -134,16 +127,6 @@ GX_STRING string; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to delete */ -/* dynamic bidi text, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_view_text_set_ext(GX_MULTI_LINE_TEXT_VIEW *text_view, GX_CONST GX_STRING *text) { diff --git a/common/src/gx_multi_line_text_view_visible_rows_compute.c b/common/src/gx_multi_line_text_view_visible_rows_compute.c index 4f98cb77..f7f2eaea 100644 --- a/common/src/gx_multi_line_text_view_visible_rows_compute.c +++ b/common/src/gx_multi_line_text_view_visible_rows_compute.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* _gx_multi_line_text_view_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_view_visible_rows_compute(GX_MULTI_LINE_TEXT_VIEW *view) { diff --git a/common/src/gx_multi_line_text_view_whitespace_set.c b/common/src/gx_multi_line_text_view_whitespace_set.c index 92881fa7..6070693b 100644 --- a/common/src/gx_multi_line_text_view_whitespace_set.c +++ b/common/src/gx_multi_line_text_view_whitespace_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_multi_line_text_view_whitespace_set(GX_MULTI_LINE_TEXT_VIEW *text_view, GX_UBYTE whitespace) { diff --git a/common/src/gx_numeric_pixelmap_prompt_create.c b/common/src/gx_numeric_pixelmap_prompt_create.c index 1f7d62c8..88685d62 100644 --- a/common/src/gx_numeric_pixelmap_prompt_create.c +++ b/common/src/gx_numeric_pixelmap_prompt_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,14 +72,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_numeric_pixelmap_prompt_create(GX_NUMERIC_PIXELMAP_PROMPT *prompt, GX_CONST GX_CHAR *name, GX_WIDGET *parent, diff --git a/common/src/gx_numeric_pixelmap_prompt_format.c b/common/src/gx_numeric_pixelmap_prompt_format.c index 14e94057..0587c283 100644 --- a/common/src/gx_numeric_pixelmap_prompt_format.c +++ b/common/src/gx_numeric_pixelmap_prompt_format.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_numeric_pixelmap_prompt_format(GX_NUMERIC_PIXELMAP_PROMPT *prompt, INT value) { diff --git a/common/src/gx_numeric_pixelmap_prompt_format_function_set.c b/common/src/gx_numeric_pixelmap_prompt_format_function_set.c index eebaea75..43fca6e0 100644 --- a/common/src/gx_numeric_pixelmap_prompt_format_function_set.c +++ b/common/src/gx_numeric_pixelmap_prompt_format_function_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_numeric_pixelmap_prompt_format_function_set(GX_NUMERIC_PIXELMAP_PROMPT *prompt, VOID (*format_func)(GX_NUMERIC_PIXELMAP_PROMPT *, INT)) { diff --git a/common/src/gx_numeric_pixelmap_prompt_value_set.c b/common/src/gx_numeric_pixelmap_prompt_value_set.c index 355e33d1..b08a31bc 100644 --- a/common/src/gx_numeric_pixelmap_prompt_value_set.c +++ b/common/src/gx_numeric_pixelmap_prompt_value_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,16 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to delete */ -/* dynamic bidi text, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_numeric_pixelmap_prompt_value_set(GX_NUMERIC_PIXELMAP_PROMPT *prompt, INT value) { diff --git a/common/src/gx_numeric_prompt_create.c b/common/src/gx_numeric_prompt_create.c index 3883d4c7..95f10e42 100644 --- a/common/src/gx_numeric_prompt_create.c +++ b/common/src/gx_numeric_prompt_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_numeric_prompt_create(GX_NUMERIC_PROMPT *prompt, GX_CONST GX_CHAR *name, GX_WIDGET *parent, GX_RESOURCE_ID text_id, ULONG style, USHORT prompt_id, GX_CONST GX_RECTANGLE *size) diff --git a/common/src/gx_numeric_prompt_format.c b/common/src/gx_numeric_prompt_format.c index fa98b1f4..5ce8ff8f 100644 --- a/common/src/gx_numeric_prompt_format.c +++ b/common/src/gx_numeric_prompt_format.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_numeric_prompt_format(GX_NUMERIC_PROMPT *prompt, INT value) { diff --git a/common/src/gx_numeric_prompt_format_function_set.c b/common/src/gx_numeric_prompt_format_function_set.c index c5cd8a3a..35637cab 100644 --- a/common/src/gx_numeric_prompt_format_function_set.c +++ b/common/src/gx_numeric_prompt_format_function_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_numeric_prompt_format_function_set(GX_NUMERIC_PROMPT *prompt, VOID (*format_func)(GX_NUMERIC_PROMPT *, INT)) { diff --git a/common/src/gx_numeric_prompt_value_set.c b/common/src/gx_numeric_prompt_value_set.c index 3f3018e4..d3947289 100644 --- a/common/src/gx_numeric_prompt_value_set.c +++ b/common/src/gx_numeric_prompt_value_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,20 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to delete */ -/* dynamic bidi text, */ -/* resulting in version 6.1 */ -/* 10-31-2022 Kenneth Maxwell Modified comment(s), */ -/* added line to insure */ -/* TEXT_COPY style is not set, */ -/* resulting in version 6.2.0 */ -/* */ /**************************************************************************/ UINT _gx_numeric_prompt_value_set(GX_NUMERIC_PROMPT *prompt, INT value) { diff --git a/common/src/gx_numeric_scroll_wheel_create.c b/common/src/gx_numeric_scroll_wheel_create.c index 7952f7ef..2732d69e 100644 --- a/common/src/gx_numeric_scroll_wheel_create.c +++ b/common/src/gx_numeric_scroll_wheel_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,17 +67,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* replace usage of abs(), */ -/* resulting in version 6.1.6 */ -/* */ /**************************************************************************/ UINT _gx_numeric_scroll_wheel_create(GX_NUMERIC_SCROLL_WHEEL *wheel, GX_CONST GX_CHAR *name, diff --git a/common/src/gx_numeric_scroll_wheel_range_set.c b/common/src/gx_numeric_scroll_wheel_range_set.c index 9ad46eba..85da23ba 100644 --- a/common/src/gx_numeric_scroll_wheel_range_set.c +++ b/common/src/gx_numeric_scroll_wheel_range_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,16 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to delete */ -/* dynamic bidi text, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_numeric_scroll_wheel_range_set(GX_NUMERIC_SCROLL_WHEEL *wheel, INT start_val, INT end_val) { diff --git a/common/src/gx_numeric_scroll_wheel_text_get.c b/common/src/gx_numeric_scroll_wheel_text_get.c index 6a3971b4..cd2c0045 100644 --- a/common/src/gx_numeric_scroll_wheel_text_get.c +++ b/common/src/gx_numeric_scroll_wheel_text_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* _gx_text_scroll_wheel_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_numeric_scroll_wheel_text_get(GX_NUMERIC_SCROLL_WHEEL *wheel, INT row, GX_STRING *string) { diff --git a/common/src/gx_pixelmap_button_create.c b/common/src/gx_pixelmap_button_create.c index 69e17107..730a728e 100644 --- a/common/src/gx_pixelmap_button_create.c +++ b/common/src/gx_pixelmap_button_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -74,14 +75,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_pixelmap_button_create(GX_PIXELMAP_BUTTON *button, GX_CONST GX_CHAR *name, diff --git a/common/src/gx_pixelmap_button_draw.c b/common/src/gx_pixelmap_button_draw.c index 5634059a..d63320e7 100644 --- a/common/src/gx_pixelmap_button_draw.c +++ b/common/src/gx_pixelmap_button_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_pixelmap_button_draw(GX_PIXELMAP_BUTTON *button) { diff --git a/common/src/gx_pixelmap_button_event_process.c b/common/src/gx_pixelmap_button_event_process.c index b021c271..3aff4f08 100644 --- a/common/src/gx_pixelmap_button_event_process.c +++ b/common/src/gx_pixelmap_button_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_pixelmap_button_event_process(GX_PIXELMAP_BUTTON *button, GX_EVENT *event_ptr) { diff --git a/common/src/gx_pixelmap_button_pixelmap_set.c b/common/src/gx_pixelmap_button_pixelmap_set.c index d8ee3594..c239cb78 100644 --- a/common/src/gx_pixelmap_button_pixelmap_set.c +++ b/common/src/gx_pixelmap_button_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_pixelmap_button_pixelmap_set(GX_PIXELMAP_BUTTON *button, GX_RESOURCE_ID normal_id, diff --git a/common/src/gx_pixelmap_button_transparent_detect.c b/common/src/gx_pixelmap_button_transparent_detect.c index 12aa392b..20a2277a 100644 --- a/common/src/gx_pixelmap_button_transparent_detect.c +++ b/common/src/gx_pixelmap_button_transparent_detect.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* _gx_pixelmap_event_process */ /* _gx_pixelmap_button_pixelmap_set Assigns pixelmap to button */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_pixelmap_button_transparent_detect(GX_PIXELMAP_BUTTON *button) { diff --git a/common/src/gx_pixelmap_prompt_background_draw.c b/common/src/gx_pixelmap_prompt_background_draw.c index d2629e71..3a8f8cf8 100644 --- a/common/src/gx_pixelmap_prompt_background_draw.c +++ b/common/src/gx_pixelmap_prompt_background_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_pixelmap_prompt_background_draw(GX_PIXELMAP_PROMPT *prompt) { diff --git a/common/src/gx_pixelmap_prompt_create.c b/common/src/gx_pixelmap_prompt_create.c index d395770a..799c8b95 100644 --- a/common/src/gx_pixelmap_prompt_create.c +++ b/common/src/gx_pixelmap_prompt_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_pixelmap_prompt_create(GX_PIXELMAP_PROMPT *prompt, GX_CONST GX_CHAR *name, GX_WIDGET *parent, diff --git a/common/src/gx_pixelmap_prompt_draw.c b/common/src/gx_pixelmap_prompt_draw.c index 6b099590..3429fdd0 100644 --- a/common/src/gx_pixelmap_prompt_draw.c +++ b/common/src/gx_pixelmap_prompt_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_pixelmap_prompt_draw(GX_PIXELMAP_PROMPT *prompt) { diff --git a/common/src/gx_pixelmap_prompt_pixelmap_set.c b/common/src/gx_pixelmap_prompt_pixelmap_set.c index 04829b39..0968426e 100644 --- a/common/src/gx_pixelmap_prompt_pixelmap_set.c +++ b/common/src/gx_pixelmap_prompt_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_pixelmap_prompt_pixelmap_set(GX_PIXELMAP_PROMPT *prompt, GX_RESOURCE_ID normal_left_id, diff --git a/common/src/gx_pixelmap_slider_create.c b/common/src/gx_pixelmap_slider_create.c index c2f90c50..d47767f5 100644 --- a/common/src/gx_pixelmap_slider_create.c +++ b/common/src/gx_pixelmap_slider_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_pixelmap_slider_create(GX_PIXELMAP_SLIDER *slider, diff --git a/common/src/gx_pixelmap_slider_draw.c b/common/src/gx_pixelmap_slider_draw.c index e11791ee..cf0af5ad 100644 --- a/common/src/gx_pixelmap_slider_draw.c +++ b/common/src/gx_pixelmap_slider_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_pixelmap_slider_draw(GX_PIXELMAP_SLIDER *slider) { diff --git a/common/src/gx_pixelmap_slider_event_process.c b/common/src/gx_pixelmap_slider_event_process.c index ac11e13b..e04c0943 100644 --- a/common/src/gx_pixelmap_slider_event_process.c +++ b/common/src/gx_pixelmap_slider_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_pixelmap_slider_event_process(GX_PIXELMAP_SLIDER *slider, GX_EVENT *event_ptr) { diff --git a/common/src/gx_pixelmap_slider_pixelmap_set.c b/common/src/gx_pixelmap_slider_pixelmap_set.c index 3a5cfc5f..76848e9f 100644 --- a/common/src/gx_pixelmap_slider_pixelmap_set.c +++ b/common/src/gx_pixelmap_slider_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_pixelmap_slider_pixelmap_set(GX_PIXELMAP_SLIDER *slider, GX_PIXELMAP_SLIDER_INFO *pixinfo) diff --git a/common/src/gx_pixelmap_slider_pixelmap_update.c b/common/src/gx_pixelmap_slider_pixelmap_update.c index 3aea9264..e201db1c 100644 --- a/common/src/gx_pixelmap_slider_pixelmap_update.c +++ b/common/src/gx_pixelmap_slider_pixelmap_update.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* _gx_pixelmap_slider_pixelmap_set Assign pixelmap to the */ /* pixelmap slider widget */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_pixelmap_slider_pixelmap_update(GX_PIXELMAP_SLIDER *slider) { diff --git a/common/src/gx_popup_list_event_process.c b/common/src/gx_popup_list_event_process.c index 34cb2fcd..f434d437 100644 --- a/common/src/gx_popup_list_event_process.c +++ b/common/src/gx_popup_list_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_popup_list_event_process(GX_POPUP_LIST *popup_list, GX_EVENT *event_ptr) diff --git a/common/src/gx_progress_bar_background_draw.c b/common/src/gx_progress_bar_background_draw.c index 37485dee..d5d00fd5 100644 --- a/common/src/gx_progress_bar_background_draw.c +++ b/common/src/gx_progress_bar_background_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_progress_bar_background_draw(GX_PROGRESS_BAR *progress_bar) { diff --git a/common/src/gx_progress_bar_create.c b/common/src/gx_progress_bar_create.c index 87c9e6d1..1c558ee1 100644 --- a/common/src/gx_progress_bar_create.c +++ b/common/src/gx_progress_bar_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_progress_bar_create(GX_PROGRESS_BAR *progress_bar, GX_CONST GX_CHAR *name, GX_WIDGET *parent, diff --git a/common/src/gx_progress_bar_draw.c b/common/src/gx_progress_bar_draw.c index cf0f5453..41016006 100644 --- a/common/src/gx_progress_bar_draw.c +++ b/common/src/gx_progress_bar_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_progress_bar_draw(GX_PROGRESS_BAR *progress_bar) { diff --git a/common/src/gx_progress_bar_event_process.c b/common/src/gx_progress_bar_event_process.c index 242f9171..c3e1a4f4 100644 --- a/common/src/gx_progress_bar_event_process.c +++ b/common/src/gx_progress_bar_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_progress_bar_event_process(GX_PROGRESS_BAR *progress_bar, GX_EVENT *event_ptr) { diff --git a/common/src/gx_progress_bar_font_set.c b/common/src/gx_progress_bar_font_set.c index fdf16225..89d80950 100644 --- a/common/src/gx_progress_bar_font_set.c +++ b/common/src/gx_progress_bar_font_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_progress_bar_font_set(GX_PROGRESS_BAR *progress_bar, GX_RESOURCE_ID font_id) { diff --git a/common/src/gx_progress_bar_info_set.c b/common/src/gx_progress_bar_info_set.c index dcefae9f..5021e0e7 100644 --- a/common/src/gx_progress_bar_info_set.c +++ b/common/src/gx_progress_bar_info_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_progress_bar_info_set(GX_PROGRESS_BAR *bar, GX_PROGRESS_BAR_INFO *info) { diff --git a/common/src/gx_progress_bar_pixelmap_set.c b/common/src/gx_progress_bar_pixelmap_set.c index 7d92a2c3..84a6e218 100644 --- a/common/src/gx_progress_bar_pixelmap_set.c +++ b/common/src/gx_progress_bar_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_progress_bar_pixelmap_set(GX_PROGRESS_BAR *progress_bar, GX_RESOURCE_ID pixelmap) { diff --git a/common/src/gx_progress_bar_range_set.c b/common/src/gx_progress_bar_range_set.c index 71b1d962..69fd95fc 100644 --- a/common/src/gx_progress_bar_range_set.c +++ b/common/src/gx_progress_bar_range_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_progress_bar_range_set(GX_PROGRESS_BAR *progress_bar, INT min_value, INT max_value) { diff --git a/common/src/gx_progress_bar_text_color_set.c b/common/src/gx_progress_bar_text_color_set.c index 7854971e..fbf27ecf 100644 --- a/common/src/gx_progress_bar_text_color_set.c +++ b/common/src/gx_progress_bar_text_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_progress_bar_text_color_set(GX_PROGRESS_BAR *progress_bar, GX_RESOURCE_ID normal_text_color_id, diff --git a/common/src/gx_progress_bar_text_draw.c b/common/src/gx_progress_bar_text_draw.c index f9935da7..ec7b332b 100644 --- a/common/src/gx_progress_bar_text_draw.c +++ b/common/src/gx_progress_bar_text_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_progress_bar_text_draw(GX_PROGRESS_BAR *progress_bar) { diff --git a/common/src/gx_progress_bar_value_set.c b/common/src/gx_progress_bar_value_set.c index 1c29a4fa..165b2328 100644 --- a/common/src/gx_progress_bar_value_set.c +++ b/common/src/gx_progress_bar_value_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_progress_bar_value_set(GX_PROGRESS_BAR *progress_bar, INT new_value) { diff --git a/common/src/gx_prompt_create.c b/common/src/gx_prompt_create.c index 1db25fc4..68f02bce 100644 --- a/common/src/gx_prompt_create.c +++ b/common/src/gx_prompt_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,19 +69,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* set new event process, */ -/* added logic to init new */ -/* structure member for */ -/* dynamic bidi text support, */ -/* fixed compiler warnings, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_prompt_create(GX_PROMPT *prompt, GX_CONST GX_CHAR *name, GX_WIDGET *parent, GX_RESOURCE_ID text_id, ULONG style, USHORT prompt_id, diff --git a/common/src/gx_prompt_draw.c b/common/src/gx_prompt_draw.c index e37bbcfc..22787110 100644 --- a/common/src/gx_prompt_draw.c +++ b/common/src/gx_prompt_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_prompt_draw(GX_PROMPT *prompt) { diff --git a/common/src/gx_prompt_event_process.c b/common/src/gx_prompt_event_process.c index 137c7d3e..17f48068 100644 --- a/common/src/gx_prompt_event_process.c +++ b/common/src/gx_prompt_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,12 +66,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_prompt_event_process(GX_PROMPT *prompt, GX_EVENT *event_ptr) { diff --git a/common/src/gx_prompt_font_set.c b/common/src/gx_prompt_font_set.c index 53e3ce2d..91ab7455 100644 --- a/common/src/gx_prompt_font_set.c +++ b/common/src/gx_prompt_font_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_prompt_font_set(GX_PROMPT *prompt, GX_RESOURCE_ID font_id) { diff --git a/common/src/gx_prompt_text_color_set.c b/common/src/gx_prompt_text_color_set.c index 98fb246e..9ab90712 100644 --- a/common/src/gx_prompt_text_color_set.c +++ b/common/src/gx_prompt_text_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_prompt_text_color_set(GX_PROMPT *prompt, GX_RESOURCE_ID normal_text_color_id, diff --git a/common/src/gx_prompt_text_draw.c b/common/src/gx_prompt_text_draw.c index 5903e557..5e3c05d1 100644 --- a/common/src/gx_prompt_text_draw.c +++ b/common/src/gx_prompt_text_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_prompt_text_draw(GX_PROMPT *prompt) { diff --git a/common/src/gx_prompt_text_get.c b/common/src/gx_prompt_text_get.c index 500c5038..d0b6a411 100644 --- a/common/src/gx_prompt_text_get.c +++ b/common/src/gx_prompt_text_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_prompt_text_get(GX_PROMPT *prompt, GX_CONST GX_CHAR **return_text) @@ -127,20 +120,6 @@ GX_STRING string; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to retrieve */ -/* dynamic bidi text, */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* updated with new bidi text */ -/* reorder function call, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT _gx_prompt_text_get_ext(GX_PROMPT *prompt, GX_STRING *return_string) { diff --git a/common/src/gx_prompt_text_id_set.c b/common/src/gx_prompt_text_id_set.c index c3e8cda5..07fa620d 100644 --- a/common/src/gx_prompt_text_id_set.c +++ b/common/src/gx_prompt_text_id_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,16 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to delete */ -/* dynamic bidi text, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_prompt_text_id_set(GX_PROMPT *prompt, GX_RESOURCE_ID string_id) { diff --git a/common/src/gx_prompt_text_set.c b/common/src/gx_prompt_text_set.c index f34d8523..ee3d97ac 100644 --- a/common/src/gx_prompt_text_set.c +++ b/common/src/gx_prompt_text_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_prompt_text_set(GX_PROMPT *prompt, GX_CONST GX_CHAR *text) @@ -128,16 +121,6 @@ GX_STRING string; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to delete */ -/* dynamic bidi text, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_prompt_text_set_ext(GX_PROMPT *prompt, GX_CONST GX_STRING *string) { diff --git a/common/src/gx_radial_progress_bar_anchor_set.c b/common/src/gx_radial_progress_bar_anchor_set.c index 001229e9..80732911 100644 --- a/common/src/gx_radial_progress_bar_anchor_set.c +++ b/common/src/gx_radial_progress_bar_anchor_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_radial_progress_bar_anchor_set(GX_RADIAL_PROGRESS_BAR *progress_bar, GX_VALUE angle) { diff --git a/common/src/gx_radial_progress_bar_background_draw.c b/common/src/gx_radial_progress_bar_background_draw.c index b3299fba..09986997 100644 --- a/common/src/gx_radial_progress_bar_background_draw.c +++ b/common/src/gx_radial_progress_bar_background_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,18 +68,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 08-02-2021 Ting Zhu Modified comment(s), */ -/* supported no background */ -/* radial track mode, */ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ VOID _gx_radial_progress_bar_background_draw(GX_RADIAL_PROGRESS_BAR *progress_bar) { diff --git a/common/src/gx_radial_progress_bar_create.c b/common/src/gx_radial_progress_bar_create.c index 0cfd38ac..3f1ca269 100644 --- a/common/src/gx_radial_progress_bar_create.c +++ b/common/src/gx_radial_progress_bar_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_radial_progress_bar_create(GX_RADIAL_PROGRESS_BAR *progress_bar, GX_CONST GX_CHAR *name, diff --git a/common/src/gx_radial_progress_bar_draw.c b/common/src/gx_radial_progress_bar_draw.c index e123e72f..ec4bf320 100644 --- a/common/src/gx_radial_progress_bar_draw.c +++ b/common/src/gx_radial_progress_bar_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_radial_progress_bar_draw(GX_RADIAL_PROGRESS_BAR *progress_bar) { diff --git a/common/src/gx_radial_progress_bar_event_process.c b/common/src/gx_radial_progress_bar_event_process.c index b4819134..6e5d7cb2 100644 --- a/common/src/gx_radial_progress_bar_event_process.c +++ b/common/src/gx_radial_progress_bar_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,18 +68,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 08-02-2021 Ting Zhu Modified comment(s), */ -/* removed size update logic */ -/* from GX_EVENT_SHOW entry, */ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ UINT _gx_radial_progress_bar_event_process(GX_RADIAL_PROGRESS_BAR *progress_bar, GX_EVENT *event_ptr) { diff --git a/common/src/gx_radial_progress_bar_font_set.c b/common/src/gx_radial_progress_bar_font_set.c index e57eaa7c..3923bf96 100644 --- a/common/src/gx_radial_progress_bar_font_set.c +++ b/common/src/gx_radial_progress_bar_font_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_radial_progress_bar_font_set(GX_RADIAL_PROGRESS_BAR *progress_bar, GX_RESOURCE_ID font_id) { diff --git a/common/src/gx_radial_progress_bar_info_set.c b/common/src/gx_radial_progress_bar_info_set.c index 7e6ceb6a..b019862e 100644 --- a/common/src/gx_radial_progress_bar_info_set.c +++ b/common/src/gx_radial_progress_bar_info_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_radial_progress_bar_info_set(GX_RADIAL_PROGRESS_BAR *bar, GX_RADIAL_PROGRESS_BAR_INFO *info) { diff --git a/common/src/gx_radial_progress_bar_resize.c b/common/src/gx_radial_progress_bar_resize.c index 82936da4..5bd6de10 100644 --- a/common/src/gx_radial_progress_bar_resize.c +++ b/common/src/gx_radial_progress_bar_resize.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,19 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Ting Zhu Modified comment(s), */ -/* fixed compile error when */ -/* GX_BRUSH_ALPHA_SUPPORT is */ -/* not defined, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gx_radial_progress_bar_resize(GX_RADIAL_PROGRESS_BAR *radial_progress) diff --git a/common/src/gx_radial_progress_bar_size_update.c b/common/src/gx_radial_progress_bar_size_update.c index 0e53d3c4..9a323869 100644 --- a/common/src/gx_radial_progress_bar_size_update.c +++ b/common/src/gx_radial_progress_bar_size_update.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_radial_progress_bar_size_update(GX_RADIAL_PROGRESS_BAR *radial_progress) diff --git a/common/src/gx_radial_progress_bar_text_color_set.c b/common/src/gx_radial_progress_bar_text_color_set.c index 89294638..e2ed7167 100644 --- a/common/src/gx_radial_progress_bar_text_color_set.c +++ b/common/src/gx_radial_progress_bar_text_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_radial_progress_bar_text_color_set(GX_RADIAL_PROGRESS_BAR *progress_bar, GX_RESOURCE_ID normal_text_color_id, diff --git a/common/src/gx_radial_progress_bar_text_draw.c b/common/src/gx_radial_progress_bar_text_draw.c index fdedf9e6..b41229f8 100644 --- a/common/src/gx_radial_progress_bar_text_draw.c +++ b/common/src/gx_radial_progress_bar_text_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_radial_progress_bar_text_draw(GX_RADIAL_PROGRESS_BAR *progress_bar) { diff --git a/common/src/gx_radial_progress_bar_value_calculate.c b/common/src/gx_radial_progress_bar_value_calculate.c index db8262a9..b13fcd03 100644 --- a/common/src/gx_radial_progress_bar_value_calculate.c +++ b/common/src/gx_radial_progress_bar_value_calculate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_radial_progress_bar_value_calculate(GX_RADIAL_PROGRESS_BAR *progress_bar, GX_POINT new_position) { diff --git a/common/src/gx_radial_progress_bar_value_set.c b/common/src/gx_radial_progress_bar_value_set.c index 5d901c74..995f1c61 100644 --- a/common/src/gx_radial_progress_bar_value_set.c +++ b/common/src/gx_radial_progress_bar_value_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_radial_progress_bar_value_set(GX_RADIAL_PROGRESS_BAR *progress_bar, GX_VALUE new_value) { diff --git a/common/src/gx_radial_slider_anchor_angle_calculate.c b/common/src/gx_radial_slider_anchor_angle_calculate.c index aa5e97c4..6dca1e40 100644 --- a/common/src/gx_radial_slider_anchor_angle_calculate.c +++ b/common/src/gx_radial_slider_anchor_angle_calculate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_radial_slider_anchor_angle_calculate(GX_RADIAL_SLIDER *slider, GX_VALUE *angle_value) { diff --git a/common/src/gx_radial_slider_anchor_angles_set.c b/common/src/gx_radial_slider_anchor_angles_set.c index bc877d3f..5327adee 100644 --- a/common/src/gx_radial_slider_anchor_angles_set.c +++ b/common/src/gx_radial_slider_anchor_angles_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_radial_slider_anchor_angles_set(GX_RADIAL_SLIDER *slider, GX_VALUE *anchor_angles, USHORT anchor_count) { diff --git a/common/src/gx_radial_slider_angle_calculate.c b/common/src/gx_radial_slider_angle_calculate.c index 92e5e5c8..aae0a216 100644 --- a/common/src/gx_radial_slider_angle_calculate.c +++ b/common/src/gx_radial_slider_angle_calculate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_radial_slider_angle_calculate(GX_RADIAL_SLIDER *slider, GX_POINT point, GX_VALUE *return_value) { diff --git a/common/src/gx_radial_slider_angle_set.c b/common/src/gx_radial_slider_angle_set.c index fc4e94bf..a4eb944a 100644 --- a/common/src/gx_radial_slider_angle_set.c +++ b/common/src/gx_radial_slider_angle_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* GUIX Internal Code */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_radial_slider_angle_set(GX_RADIAL_SLIDER *slider, GX_VALUE new_angle) { diff --git a/common/src/gx_radial_slider_animation_set.c b/common/src/gx_radial_slider_animation_set.c index 43ef41af..247c85f6 100644 --- a/common/src/gx_radial_slider_animation_set.c +++ b/common/src/gx_radial_slider_animation_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_radial_slider_animation_set(GX_RADIAL_SLIDER *slider, USHORT steps, USHORT delay, USHORT animation_style, VOID (*animation_update_callback)(GX_RADIAL_SLIDER *slider)) diff --git a/common/src/gx_radial_slider_animation_start.c b/common/src/gx_radial_slider_animation_start.c index 78d87df1..1c1f01e9 100644 --- a/common/src/gx_radial_slider_animation_start.c +++ b/common/src/gx_radial_slider_animation_start.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_radial_slider_animation_start(GX_RADIAL_SLIDER *slider, GX_VALUE target_angle) { diff --git a/common/src/gx_radial_slider_animation_update.c b/common/src/gx_radial_slider_animation_update.c index 4c2ad138..ab239b87 100644 --- a/common/src/gx_radial_slider_animation_update.c +++ b/common/src/gx_radial_slider_animation_update.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,17 +66,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 04-25-2022 Ting Zhu Modified comment(s), */ -/* added animation step test, */ -/* resulting in version 6.1.11 */ -/* */ /**************************************************************************/ UINT _gx_radial_slider_animation_update(GX_RADIAL_SLIDER *slider) { diff --git a/common/src/gx_radial_slider_create.c b/common/src/gx_radial_slider_create.c index fc18fb83..2219cb91 100644 --- a/common/src/gx_radial_slider_create.c +++ b/common/src/gx_radial_slider_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_radial_slider_create(GX_RADIAL_SLIDER *slider, GX_CONST GX_CHAR *name, GX_WIDGET *parent, GX_RADIAL_SLIDER_INFO *info, ULONG style, USHORT slider_id, GX_CONST GX_RECTANGLE *size) diff --git a/common/src/gx_radial_slider_draw.c b/common/src/gx_radial_slider_draw.c index 76786d48..2aa7da8c 100644 --- a/common/src/gx_radial_slider_draw.c +++ b/common/src/gx_radial_slider_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ /* GUIX Internal Code */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_radial_slider_draw(GX_RADIAL_SLIDER *slider) { diff --git a/common/src/gx_radial_slider_event_process.c b/common/src/gx_radial_slider_event_process.c index 9aee5941..21fffbf5 100644 --- a/common/src/gx_radial_slider_event_process.c +++ b/common/src/gx_radial_slider_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,19 +68,6 @@ /* */ /* _gx_radial_slider_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 02-02-2021 Kenneth Maxwell Modified comment(s), */ -/* renamed */ -/* GX_STATUS_TRACKING_START to */ -/* GX_STATUS_TRACKING_PEN, */ -/* resulting in version 6.1.4 */ -/* */ /**************************************************************************/ static UINT _gx_radial_slider_pen_down_event_process(GX_RADIAL_SLIDER *slider, GX_EVENT *event_ptr) { @@ -168,19 +156,6 @@ GX_RECTANGLE rectangle; /* */ /* _gx_radial_slider_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 02-02-2021 Kenneth Maxwell Modified comment(s), */ -/* renamed */ -/* GX_STATUS_TRACKING_START to */ -/* GX_STATUS_TRACKING_PEN, */ -/* resulting in version 6.1.4 */ -/* */ /**************************************************************************/ static UINT _gx_radial_slider_pen_drag_event_process(GX_RADIAL_SLIDER *slider, GX_EVENT *event_ptr) { @@ -273,19 +248,6 @@ GX_BOOL update = GX_FALSE; /* */ /* _gx_radial_slider_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 02-02-2021 Kenneth Maxwell Modified comment(s), */ -/* renamed */ -/* GX_STATUS_TRACKING_START to */ -/* GX_STATUS_TRACKING_PEN, */ -/* resulting in version 6.1.4 */ -/* */ /**************************************************************************/ static UINT _gx_radial_slider_pen_up_event_process(GX_RADIAL_SLIDER *slider, GX_EVENT *event_ptr) { @@ -367,14 +329,6 @@ GX_POINT *point; /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_radial_slider_event_process(GX_RADIAL_SLIDER *slider, GX_EVENT *event_ptr) { diff --git a/common/src/gx_radial_slider_info_get.c b/common/src/gx_radial_slider_info_get.c index ef671fff..5f8252a4 100644 --- a/common/src/gx_radial_slider_info_get.c +++ b/common/src/gx_radial_slider_info_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_radial_slider_info_get(GX_RADIAL_SLIDER *slider, GX_RADIAL_SLIDER_INFO **info) { diff --git a/common/src/gx_radial_slider_info_set.c b/common/src/gx_radial_slider_info_set.c index 55a4a317..62f7745a 100644 --- a/common/src/gx_radial_slider_info_set.c +++ b/common/src/gx_radial_slider_info_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_radial_slider_info_set(GX_RADIAL_SLIDER *slider, GX_RADIAL_SLIDER_INFO *info) { diff --git a/common/src/gx_radial_slider_needle_rectangle_calculate.c b/common/src/gx_radial_slider_needle_rectangle_calculate.c index a7633b89..81776bc3 100644 --- a/common/src/gx_radial_slider_needle_rectangle_calculate.c +++ b/common/src/gx_radial_slider_needle_rectangle_calculate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,17 +63,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* supported needle offset, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT _gx_radial_slider_needle_rectangle_calculate(GX_RADIAL_SLIDER *slider, GX_RECTANGLE *rectangle) { diff --git a/common/src/gx_radial_slider_pixelmap_set.c b/common/src/gx_radial_slider_pixelmap_set.c index d0cdad5d..87b6829a 100644 --- a/common/src/gx_radial_slider_pixelmap_set.c +++ b/common/src/gx_radial_slider_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_radial_slider_pixelmap_set(GX_RADIAL_SLIDER *slider, GX_RESOURCE_ID background_pixelmap, GX_RESOURCE_ID needle_pixelmap) { diff --git a/common/src/gx_radio_button_create.c b/common/src/gx_radio_button_create.c index 9a83f2ca..44b83196 100644 --- a/common/src/gx_radio_button_create.c +++ b/common/src/gx_radio_button_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_radio_button_create(GX_RADIO_BUTTON *button, GX_CONST GX_CHAR *name, GX_WIDGET *parent, GX_RESOURCE_ID text_id, ULONG style, USHORT radio_btton_id, diff --git a/common/src/gx_radio_button_draw.c b/common/src/gx_radio_button_draw.c index 0c4f91ca..2d9d8c64 100644 --- a/common/src/gx_radio_button_draw.c +++ b/common/src/gx_radio_button_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,15 +67,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_radio_button_draw(GX_RADIO_BUTTON *button) { diff --git a/common/src/gx_radio_button_pixelmap_set.c b/common/src/gx_radio_button_pixelmap_set.c index 026d0bd0..d18281ca 100644 --- a/common/src/gx_radio_button_pixelmap_set.c +++ b/common/src/gx_radio_button_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,14 +72,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_radio_button_pixelmap_set(GX_RADIO_BUTTON *button, GX_RESOURCE_ID off_id, diff --git a/common/src/gx_rich_text_view_context_peek.c b/common/src/gx_rich_text_view_context_peek.c index ca1323a7..6ba662f3 100644 --- a/common/src/gx_rich_text_view_context_peek.c +++ b/common/src/gx_rich_text_view_context_peek.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,12 +59,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_rich_text_view_context_peek(GX_RICH_TEXT_CONTEXT *context) { diff --git a/common/src/gx_rich_text_view_context_pop.c b/common/src/gx_rich_text_view_context_pop.c index e6300029..4eef3317 100644 --- a/common/src/gx_rich_text_view_context_pop.c +++ b/common/src/gx_rich_text_view_context_pop.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,12 +59,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_rich_text_view_context_pop() { diff --git a/common/src/gx_rich_text_view_context_push.c b/common/src/gx_rich_text_view_context_push.c index e3bb5c2d..cdd6ecd5 100644 --- a/common/src/gx_rich_text_view_context_push.c +++ b/common/src/gx_rich_text_view_context_push.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,12 +58,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_rich_text_view_context_push(GX_RICH_TEXT_CONTEXT *context) { diff --git a/common/src/gx_rich_text_view_context_reset.c b/common/src/gx_rich_text_view_context_reset.c index 06872505..06b4810d 100644 --- a/common/src/gx_rich_text_view_context_reset.c +++ b/common/src/gx_rich_text_view_context_reset.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,12 +58,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_rich_text_view_context_reset() { diff --git a/common/src/gx_rich_text_view_context_restore.c b/common/src/gx_rich_text_view_context_restore.c index f5faa6bf..da6df1ee 100644 --- a/common/src/gx_rich_text_view_context_restore.c +++ b/common/src/gx_rich_text_view_context_restore.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,12 +58,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_rich_text_view_context_restore() { diff --git a/common/src/gx_rich_text_view_context_save.c b/common/src/gx_rich_text_view_context_save.c index 0a38036d..db99056d 100644 --- a/common/src/gx_rich_text_view_context_save.c +++ b/common/src/gx_rich_text_view_context_save.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,12 +58,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_rich_text_view_context_save() { diff --git a/common/src/gx_rich_text_view_create.c b/common/src/gx_rich_text_view_create.c index 3dc2557e..61f632d7 100644 --- a/common/src/gx_rich_text_view_create.c +++ b/common/src/gx_rich_text_view_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,12 +69,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_rich_text_view_create(GX_RICH_TEXT_VIEW *text_view, GX_CONST GX_CHAR *name, diff --git a/common/src/gx_rich_text_view_draw.c b/common/src/gx_rich_text_view_draw.c index 7210cf2b..6d5416b1 100644 --- a/common/src/gx_rich_text_view_draw.c +++ b/common/src/gx_rich_text_view_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,12 +62,6 @@ /* GUIX Internal Code */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_rich_text_view_draw(GX_RICH_TEXT_VIEW *text_view) { diff --git a/common/src/gx_rich_text_view_fonts_set.c b/common/src/gx_rich_text_view_fonts_set.c index 5e48aeca..18db62c6 100644 --- a/common/src/gx_rich_text_view_fonts_set.c +++ b/common/src/gx_rich_text_view_fonts_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,12 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_rich_text_view_fonts_set(GX_RICH_TEXT_VIEW *text_view, GX_RICH_TEXT_FONTS *fonts) { diff --git a/common/src/gx_rich_text_view_line_info_get.c b/common/src/gx_rich_text_view_line_info_get.c index 8422bb15..944e1435 100644 --- a/common/src/gx_rich_text_view_line_info_get.c +++ b/common/src/gx_rich_text_view_line_info_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,15 +70,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 03-02-2021 Ting Zhu Modified comment(s), */ -/* removed unreachable code, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ UINT _gx_rich_text_view_line_info_get(GX_RICH_TEXT_VIEW *text_view, GX_STRING text, GX_RICH_TEXT_LINE_INFO *line_info, GX_VALUE availlable_width) { diff --git a/common/src/gx_rich_text_view_scroll_info_get.c b/common/src/gx_rich_text_view_scroll_info_get.c index 83cc90b1..8c5f81f2 100644 --- a/common/src/gx_rich_text_view_scroll_info_get.c +++ b/common/src/gx_rich_text_view_scroll_info_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,12 +68,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_rich_text_view_scroll_info_get(GX_RICH_TEXT_VIEW *text_view, ULONG style, GX_SCROLL_INFO *info) { diff --git a/common/src/gx_rich_text_view_tag_enter.c b/common/src/gx_rich_text_view_tag_enter.c index e9636b7f..ad081ad9 100644 --- a/common/src/gx_rich_text_view_tag_enter.c +++ b/common/src/gx_rich_text_view_tag_enter.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -95,12 +96,6 @@ enum gx_rich_text_tag_index /* */ /* _gx_rich_text_view_tag_open */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_rich_text_resource_id_read(GX_STRING *text, UINT *resource_id) { @@ -185,12 +180,6 @@ CHAR ch; /* */ /* _gx_rich_text_view_tag_enter */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_rich_text_view_tag_open(GX_RICH_TEXT_VIEW *view, GX_CONST GX_STRING *text, GX_RICH_TEXT_FORMAT *format, GX_UBYTE *handled_bytes) { @@ -436,12 +425,6 @@ UINT tag_index = 0; /* */ /* _gx_rich_text_view_tag_enter */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_rich_text_view_tag_close(GX_CONST GX_STRING *text, GX_RICH_TEXT_FORMAT *format, GX_UBYTE *handled_bytes) { @@ -509,12 +492,6 @@ GX_CONST GX_STRING *tag; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_rich_text_view_tag_enter(GX_RICH_TEXT_VIEW *view, GX_CONST GX_STRING *text, GX_RICH_TEXT_FORMAT *format, GX_UBYTE *handled_bytes) { diff --git a/common/src/gx_rich_text_view_text_draw.c b/common/src/gx_rich_text_view_text_draw.c index 6a73d8a7..77c111fa 100644 --- a/common/src/gx_rich_text_view_text_draw.c +++ b/common/src/gx_rich_text_view_text_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,15 +72,6 @@ /* */ /* _gx_rich_text_view_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 03-02-2021 Ting Zhu Modified comment(s), */ -/* removed unreachable code, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ static VOID _gx_rich_text_view_single_line_draw(GX_RICH_TEXT_VIEW *text_view, GX_VALUE ypos, GX_RICH_TEXT_LINE_INFO *line_info) { @@ -300,12 +292,6 @@ GX_BOOL escape = GX_FALSE; /* GUIX Internal Code */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_rich_text_view_text_draw(GX_RICH_TEXT_VIEW *text_view) { diff --git a/common/src/gx_rich_text_view_text_total_height_calculate.c b/common/src/gx_rich_text_view_text_total_height_calculate.c index 29db90c0..223740f3 100644 --- a/common/src/gx_rich_text_view_text_total_height_calculate.c +++ b/common/src/gx_rich_text_view_text_total_height_calculate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,12 +66,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_rich_text_view_text_total_height_calculate(GX_RICH_TEXT_VIEW *text_view) { diff --git a/common/src/gx_screen_stack_create.c b/common/src/gx_screen_stack_create.c index 0503ff78..7d5ede15 100644 --- a/common/src/gx_screen_stack_create.c +++ b/common/src/gx_screen_stack_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_screen_stack_create(GX_SCREEN_STACK_CONTROL *control, GX_WIDGET **memory, INT size) { diff --git a/common/src/gx_screen_stack_pop.c b/common/src/gx_screen_stack_pop.c index 3f9767ca..7f87c23d 100644 --- a/common/src/gx_screen_stack_pop.c +++ b/common/src/gx_screen_stack_pop.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_screen_stack_pop(GX_SCREEN_STACK_CONTROL *control) { diff --git a/common/src/gx_screen_stack_push.c b/common/src/gx_screen_stack_push.c index a248b255..d38a5cb3 100644 --- a/common/src/gx_screen_stack_push.c +++ b/common/src/gx_screen_stack_push.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_screen_stack_push(GX_SCREEN_STACK_CONTROL *control, GX_WIDGET *screen, GX_WIDGET *new_screen) { diff --git a/common/src/gx_screen_stack_reset.c b/common/src/gx_screen_stack_reset.c index 4b4832b3..c3c4666f 100644 --- a/common/src/gx_screen_stack_reset.c +++ b/common/src/gx_screen_stack_reset.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_screen_stack_reset(GX_SCREEN_STACK_CONTROL *control) { diff --git a/common/src/gx_scroll_thumb_create.c b/common/src/gx_scroll_thumb_create.c index bbd388fd..14dddb17 100644 --- a/common/src/gx_scroll_thumb_create.c +++ b/common/src/gx_scroll_thumb_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_scroll_thumb_create(GX_SCROLL_THUMB *scroll_thumb, GX_SCROLLBAR *parent, ULONG style) diff --git a/common/src/gx_scroll_thumb_draw.c b/common/src/gx_scroll_thumb_draw.c index f7861696..e6a64d72 100644 --- a/common/src/gx_scroll_thumb_draw.c +++ b/common/src/gx_scroll_thumb_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_scroll_thumb_draw(GX_SCROLL_THUMB *thumb) { diff --git a/common/src/gx_scroll_thumb_event_process.c b/common/src/gx_scroll_thumb_event_process.c index 65003c8c..3220fb7b 100644 --- a/common/src/gx_scroll_thumb_event_process.c +++ b/common/src/gx_scroll_thumb_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,14 +72,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_scroll_thumb_event_process(GX_SCROLL_THUMB *thumb, GX_EVENT *event_ptr) { diff --git a/common/src/gx_scroll_thumb_shift_limit.c b/common/src/gx_scroll_thumb_shift_limit.c index c4681ca0..7617ce1e 100644 --- a/common/src/gx_scroll_thumb_shift_limit.c +++ b/common/src/gx_scroll_thumb_shift_limit.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ INT _gx_scroll_thumb_shift_limit(GX_SCROLL_THUMB *thumb, INT shift) { diff --git a/common/src/gx_scroll_wheel_create.c b/common/src/gx_scroll_wheel_create.c index f7dfe071..4cf7f955 100644 --- a/common/src/gx_scroll_wheel_create.c +++ b/common/src/gx_scroll_wheel_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,18 +66,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Ting Zhu Modified comment(s), */ -/* updated with scroll wheel */ -/* control block change, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gx_scroll_wheel_create(GX_SCROLL_WHEEL *wheel, GX_CONST GX_CHAR *name, diff --git a/common/src/gx_scroll_wheel_event_process.c b/common/src/gx_scroll_wheel_event_process.c index c77d7fec..5b69e665 100644 --- a/common/src/gx_scroll_wheel_event_process.c +++ b/common/src/gx_scroll_wheel_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,18 +68,6 @@ /* */ /* _gx_scroll_wheel_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Ting Zhu Modified comment(s), */ -/* updated with scroll wheel */ -/* control block members, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static UINT _gx_scroll_wheel_timer_event_handler(GX_SCROLL_WHEEL *wheel, UINT timer_id) { @@ -228,14 +217,6 @@ GX_BOOL generate_event = GX_FALSE; /* */ /* _gx_scroll_wheel_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_scroll_wheel_flick_event_handler(GX_SCROLL_WHEEL *wheel, INT flick_speed) { @@ -368,19 +349,6 @@ INT speed; /* */ /* _gx_scroll_wheel_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 02-02-2021 Kenneth Maxwell Modified comment(s), */ -/* renamed */ -/* GX_STYLE_SCROLL_WHEEL_DRAG */ -/* to GX_STATUS_TRACKING_PEN, */ -/* resulting in version 6.1.4 */ -/* */ /**************************************************************************/ static UINT _gx_scroll_wheel_pen_up_event_handler(GX_SCROLL_WHEEL *wheel) { @@ -455,23 +423,6 @@ GX_RECTANGLE dirty; /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 02-02-2021 Kenneth Maxwell Modified comment(s), */ -/* renamed */ -/* GX_STYLE_SCROLL_WHEEL_DRAG */ -/* to GX_STATUS_TRACKING_PEN, */ -/* resulting in version 6.1.4 */ -/* 06-02-2021 Ting Zhu Modified comment(s), */ -/* updated with scroll wheel */ -/* control block change, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gx_scroll_wheel_event_process(GX_SCROLL_WHEEL *wheel, GX_EVENT *event_ptr) { diff --git a/common/src/gx_scroll_wheel_gradient_alpha_set.c b/common/src/gx_scroll_wheel_gradient_alpha_set.c index 73f22f6d..e445041e 100644 --- a/common/src/gx_scroll_wheel_gradient_alpha_set.c +++ b/common/src/gx_scroll_wheel_gradient_alpha_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_scroll_wheel_gradient_alpha_set(GX_SCROLL_WHEEL *wheel, GX_UBYTE start_alpha, GX_UBYTE end_alpha) { diff --git a/common/src/gx_scroll_wheel_gradient_create.c b/common/src/gx_scroll_wheel_gradient_create.c index e57bc2c1..82d7d243 100644 --- a/common/src/gx_scroll_wheel_gradient_create.c +++ b/common/src/gx_scroll_wheel_gradient_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,20 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), added */ -/* display rotation support, */ -/* resulting in version 6.1.3 */ -/* 03-02-2021 Kenneth Maxwell Modified comment(s), added */ -/* flip rotation support, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ VOID _gx_scroll_wheel_gradient_create(GX_SCROLL_WHEEL *wheel) { diff --git a/common/src/gx_scroll_wheel_row_height_set.c b/common/src/gx_scroll_wheel_row_height_set.c index e2e98d01..5991e73d 100644 --- a/common/src/gx_scroll_wheel_row_height_set.c +++ b/common/src/gx_scroll_wheel_row_height_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_scroll_wheel_row_height_set(GX_SCROLL_WHEEL *wheel, GX_VALUE row_height) { diff --git a/common/src/gx_scroll_wheel_scroll.c b/common/src/gx_scroll_wheel_scroll.c index 21cd6b62..a051e81b 100644 --- a/common/src/gx_scroll_wheel_scroll.c +++ b/common/src/gx_scroll_wheel_scroll.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,18 +61,6 @@ /* */ /* _gx_scroll_wheel_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Ting Zhu Modified comment(s), */ -/* modified wrap style test */ -/* logic, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gx_scroll_wheel_scroll(GX_SCROLL_WHEEL *wheel, GX_VALUE shift) { diff --git a/common/src/gx_scroll_wheel_selected_background_set.c b/common/src/gx_scroll_wheel_selected_background_set.c index 14af411e..ca329d69 100644 --- a/common/src/gx_scroll_wheel_selected_background_set.c +++ b/common/src/gx_scroll_wheel_selected_background_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_scroll_wheel_selected_background_set(GX_SCROLL_WHEEL *wheel, GX_RESOURCE_ID selected_bg) { diff --git a/common/src/gx_scroll_wheel_selected_get.c b/common/src/gx_scroll_wheel_selected_get.c index d628b19a..0b5da553 100644 --- a/common/src/gx_scroll_wheel_selected_get.c +++ b/common/src/gx_scroll_wheel_selected_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_scroll_wheel_selected_get(GX_SCROLL_WHEEL *wheel, INT *row) { diff --git a/common/src/gx_scroll_wheel_selected_row_calculate.c b/common/src/gx_scroll_wheel_selected_row_calculate.c index 7d0220d2..204cb477 100644 --- a/common/src/gx_scroll_wheel_selected_row_calculate.c +++ b/common/src/gx_scroll_wheel_selected_row_calculate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,18 +58,6 @@ /* */ /* _gx_text_scroll_wheel_scroll */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Ting Zhu Modified comment(s), */ -/* modified wrap style test */ -/* logic, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gx_scroll_wheel_selected_row_calculate(GX_SCROLL_WHEEL *wheel) { diff --git a/common/src/gx_scroll_wheel_selected_set.c b/common/src/gx_scroll_wheel_selected_set.c index d1449329..a72344cf 100644 --- a/common/src/gx_scroll_wheel_selected_set.c +++ b/common/src/gx_scroll_wheel_selected_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,17 +61,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gx_scroll_wheel_selected_set(GX_SCROLL_WHEEL *wheel, INT row) { diff --git a/common/src/gx_scroll_wheel_speed_set.c b/common/src/gx_scroll_wheel_speed_set.c index 82704271..554c1520 100644 --- a/common/src/gx_scroll_wheel_speed_set.c +++ b/common/src/gx_scroll_wheel_speed_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_scroll_wheel_speed_set(GX_SCROLL_WHEEL *wheel, GX_FIXED_VAL start_speed_rate, GX_FIXED_VAL end_speed_rate, GX_VALUE max_steps, GX_VALUE delay) diff --git a/common/src/gx_scroll_wheel_total_rows_set.c b/common/src/gx_scroll_wheel_total_rows_set.c index 47d96947..d2b7cf22 100644 --- a/common/src/gx_scroll_wheel_total_rows_set.c +++ b/common/src/gx_scroll_wheel_total_rows_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_scroll_wheel_total_rows_set(GX_SCROLL_WHEEL *wheel, INT total_rows) { diff --git a/common/src/gx_scroll_wheel_wrap_style_check.c b/common/src/gx_scroll_wheel_wrap_style_check.c index bbbd5c65..234cd40d 100644 --- a/common/src/gx_scroll_wheel_wrap_style_check.c +++ b/common/src/gx_scroll_wheel_wrap_style_check.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -56,12 +57,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ -/* */ /**************************************************************************/ GX_BOOL _gx_scroll_wheel_wrap_style_check(GX_SCROLL_WHEEL *wheel) { diff --git a/common/src/gx_scrollbar_draw.c b/common/src/gx_scrollbar_draw.c index 9ac14c63..a97625d1 100644 --- a/common/src/gx_scrollbar_draw.c +++ b/common/src/gx_scrollbar_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -75,17 +76,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ VOID _gx_scrollbar_draw(GX_SCROLLBAR *scrollbar) { diff --git a/common/src/gx_scrollbar_event_process.c b/common/src/gx_scrollbar_event_process.c index 911d50c9..0c66dbb5 100644 --- a/common/src/gx_scrollbar_event_process.c +++ b/common/src/gx_scrollbar_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -81,14 +82,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_scrollbar_event_process(GX_SCROLLBAR *scrollbar, GX_EVENT *event_ptr) { diff --git a/common/src/gx_scrollbar_limit_check.c b/common/src/gx_scrollbar_limit_check.c index 3f582ff7..cb9e5ae7 100644 --- a/common/src/gx_scrollbar_limit_check.c +++ b/common/src/gx_scrollbar_limit_check.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_scrollbar_limit_check(GX_SCROLLBAR *scrollbar) { diff --git a/common/src/gx_scrollbar_reset.c b/common/src/gx_scrollbar_reset.c index 902da8f8..a9a48861 100644 --- a/common/src/gx_scrollbar_reset.c +++ b/common/src/gx_scrollbar_reset.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_scrollbar_reset(GX_SCROLLBAR *scrollbar, GX_SCROLL_INFO *info) { diff --git a/common/src/gx_scrollbar_size_update.c b/common/src/gx_scrollbar_size_update.c index 69f1c768..7205b698 100644 --- a/common/src/gx_scrollbar_size_update.c +++ b/common/src/gx_scrollbar_size_update.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_scrollbar_size_update(GX_SCROLLBAR *scroll) { diff --git a/common/src/gx_scrollbar_thumb_position_calculate.c b/common/src/gx_scrollbar_thumb_position_calculate.c index 68e7a1e1..7e00301a 100644 --- a/common/src/gx_scrollbar_thumb_position_calculate.c +++ b/common/src/gx_scrollbar_thumb_position_calculate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_scrollbar_thumb_position_calculate(GX_SCROLLBAR *scroll) { diff --git a/common/src/gx_scrollbar_value_calculate.c b/common/src/gx_scrollbar_value_calculate.c index 3cd28357..7d599305 100644 --- a/common/src/gx_scrollbar_value_calculate.c +++ b/common/src/gx_scrollbar_value_calculate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_scrollbar_value_calculate(GX_SCROLLBAR *scroll, INT offset, INT size) { diff --git a/common/src/gx_scrollbar_value_set.c b/common/src/gx_scrollbar_value_set.c index 380fcf26..d2a688a4 100644 --- a/common/src/gx_scrollbar_value_set.c +++ b/common/src/gx_scrollbar_value_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_scrollbar_value_set(GX_SCROLLBAR *scrollbar, INT value) { diff --git a/common/src/gx_single_line_text_input_backspace.c b/common/src/gx_single_line_text_input_backspace.c index 0fc42615..0c7e8b6d 100644 --- a/common/src/gx_single_line_text_input_backspace.c +++ b/common/src/gx_single_line_text_input_backspace.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -74,14 +75,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_backspace(GX_SINGLE_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_single_line_text_input_buffer_clear.c b/common/src/gx_single_line_text_input_buffer_clear.c index 32ba3169..19d8605d 100644 --- a/common/src/gx_single_line_text_input_buffer_clear.c +++ b/common/src/gx_single_line_text_input_buffer_clear.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_buffer_clear(GX_SINGLE_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_single_line_text_input_buffer_get.c b/common/src/gx_single_line_text_input_buffer_get.c index 32b25c7a..8a0fe23a 100644 --- a/common/src/gx_single_line_text_input_buffer_get.c +++ b/common/src/gx_single_line_text_input_buffer_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_buffer_get(GX_SINGLE_LINE_TEXT_INPUT *text_input_ptr, GX_CHAR **buffer_address, UINT *content_size, UINT *buffer_size) diff --git a/common/src/gx_single_line_text_input_character_delete.c b/common/src/gx_single_line_text_input_character_delete.c index 960a814b..ddf65457 100644 --- a/common/src/gx_single_line_text_input_character_delete.c +++ b/common/src/gx_single_line_text_input_character_delete.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -73,14 +74,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_character_delete(GX_SINGLE_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_single_line_text_input_character_insert.c b/common/src/gx_single_line_text_input_character_insert.c index af1a0054..889c0885 100644 --- a/common/src/gx_single_line_text_input_character_insert.c +++ b/common/src/gx_single_line_text_input_character_insert.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -76,14 +77,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_character_insert(GX_SINGLE_LINE_TEXT_INPUT *text_input, GX_UBYTE *insert_str, UINT insert_size) { diff --git a/common/src/gx_single_line_text_input_copy.c b/common/src/gx_single_line_text_input_copy.c index a1d7a7fc..dea0db34 100644 --- a/common/src/gx_single_line_text_input_copy.c +++ b/common/src/gx_single_line_text_input_copy.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_copy(GX_SINGLE_LINE_TEXT_INPUT *input) { diff --git a/common/src/gx_single_line_text_input_create.c b/common/src/gx_single_line_text_input_create.c index d1fdd79f..7e96d7fc 100644 --- a/common/src/gx_single_line_text_input_create.c +++ b/common/src/gx_single_line_text_input_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -73,17 +74,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* supported dynamic buffer, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_create(GX_SINGLE_LINE_TEXT_INPUT *text_input, GX_CONST GX_CHAR *name, diff --git a/common/src/gx_single_line_text_input_cut.c b/common/src/gx_single_line_text_input_cut.c index a125d494..6309a094 100644 --- a/common/src/gx_single_line_text_input_cut.c +++ b/common/src/gx_single_line_text_input_cut.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_cut(GX_SINGLE_LINE_TEXT_INPUT *input) { diff --git a/common/src/gx_single_line_text_input_draw.c b/common/src/gx_single_line_text_input_draw.c index 4ef184ca..73670dff 100644 --- a/common/src/gx_single_line_text_input_draw.c +++ b/common/src/gx_single_line_text_input_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -84,14 +85,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_single_line_text_input_draw(GX_SINGLE_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_single_line_text_input_draw_position_get.c b/common/src/gx_single_line_text_input_draw_position_get.c index a94d5519..76699bf1 100644 --- a/common/src/gx_single_line_text_input_draw_position_get.c +++ b/common/src/gx_single_line_text_input_draw_position_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ /* */ /* _gx_single_line_text_input_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_draw_position_get(GX_SINGLE_LINE_TEXT_INPUT *text_input, GX_VALUE *xpos, GX_VALUE *ypos) { diff --git a/common/src/gx_single_line_text_input_end.c b/common/src/gx_single_line_text_input_end.c index e8d46bf9..137666cf 100644 --- a/common/src/gx_single_line_text_input_end.c +++ b/common/src/gx_single_line_text_input_end.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,14 +72,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_end(GX_SINGLE_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_single_line_text_input_event_process.c b/common/src/gx_single_line_text_input_event_process.c index 0bd1446b..3a9ae5c5 100644 --- a/common/src/gx_single_line_text_input_event_process.c +++ b/common/src/gx_single_line_text_input_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,14 +71,6 @@ /* */ /* _gx_single_line_text_input_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_single_line_text_input_pen_down_process(GX_SINGLE_LINE_TEXT_INPUT *text_input, GX_EVENT *event_ptr) { @@ -149,14 +142,6 @@ UINT end_mark = text_input -> gx_single_line_text_input_end_mark; /* */ /* _gx_single_line_text_input_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_single_line_text_input_pen_drag_process(GX_SINGLE_LINE_TEXT_INPUT *text_input, GX_EVENT *event_ptr) { @@ -282,23 +267,6 @@ GX_VALUE click_x; /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to release */ -/* dynamic input buffer, */ -/* resulting in version 6.1.3 */ -/* 12-31-2023 Ting Zhu Modified comment(s), */ -/* modified to always call */ -/* default widget event */ -/* process on a pen up event, */ -/* resulting in version 6.4.0 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_event_process(GX_SINGLE_LINE_TEXT_INPUT *text_input, GX_EVENT *event_ptr) { diff --git a/common/src/gx_single_line_text_input_fill_color_set.c b/common/src/gx_single_line_text_input_fill_color_set.c index b9ea5661..c1ca2946 100644 --- a/common/src/gx_single_line_text_input_fill_color_set.c +++ b/common/src/gx_single_line_text_input_fill_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_fill_color_set(GX_SINGLE_LINE_TEXT_INPUT *input, GX_RESOURCE_ID normal_fill_color_id, diff --git a/common/src/gx_single_line_text_input_home.c b/common/src/gx_single_line_text_input_home.c index e682e587..46cc2521 100644 --- a/common/src/gx_single_line_text_input_home.c +++ b/common/src/gx_single_line_text_input_home.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,14 +73,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_home(GX_SINGLE_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_single_line_text_input_keydown_process.c b/common/src/gx_single_line_text_input_keydown_process.c index 889c879e..01ce2810 100644 --- a/common/src/gx_single_line_text_input_keydown_process.c +++ b/common/src/gx_single_line_text_input_keydown_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -77,14 +78,6 @@ /* Single line text input widget */ /* event process routine */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_single_line_text_input_keydown_process(GX_SINGLE_LINE_TEXT_INPUT *text_input, GX_EVENT *event_ptr) { diff --git a/common/src/gx_single_line_text_input_left_arrow.c b/common/src/gx_single_line_text_input_left_arrow.c index c2af5714..a25a1681 100644 --- a/common/src/gx_single_line_text_input_left_arrow.c +++ b/common/src/gx_single_line_text_input_left_arrow.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -75,14 +76,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_left_arrow(GX_SINGLE_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_single_line_text_input_mark_end.c b/common/src/gx_single_line_text_input_mark_end.c index dcb90f46..bbc98d5d 100644 --- a/common/src/gx_single_line_text_input_mark_end.c +++ b/common/src/gx_single_line_text_input_mark_end.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,14 +72,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_mark_end(GX_SINGLE_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_single_line_text_input_mark_home.c b/common/src/gx_single_line_text_input_mark_home.c index df246833..79462c38 100644 --- a/common/src/gx_single_line_text_input_mark_home.c +++ b/common/src/gx_single_line_text_input_mark_home.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -73,14 +74,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_mark_home(GX_SINGLE_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_single_line_text_input_mark_next.c b/common/src/gx_single_line_text_input_mark_next.c index 83436226..76d391e9 100644 --- a/common/src/gx_single_line_text_input_mark_next.c +++ b/common/src/gx_single_line_text_input_mark_next.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,14 +72,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_mark_next(GX_SINGLE_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_single_line_text_input_mark_previous.c b/common/src/gx_single_line_text_input_mark_previous.c index 898368be..f9433aaf 100644 --- a/common/src/gx_single_line_text_input_mark_previous.c +++ b/common/src/gx_single_line_text_input_mark_previous.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,14 +72,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_mark_previous(GX_SINGLE_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_single_line_text_input_paste.c b/common/src/gx_single_line_text_input_paste.c index b52d14e3..ec3c9029 100644 --- a/common/src/gx_single_line_text_input_paste.c +++ b/common/src/gx_single_line_text_input_paste.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_paste(GX_SINGLE_LINE_TEXT_INPUT *input) { diff --git a/common/src/gx_single_line_text_input_position_get.c b/common/src/gx_single_line_text_input_position_get.c index aa3e02fb..fc058bd9 100644 --- a/common/src/gx_single_line_text_input_position_get.c +++ b/common/src/gx_single_line_text_input_position_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -73,14 +74,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_position_get(GX_SINGLE_LINE_TEXT_INPUT *text_input, INT pixel_position) { diff --git a/common/src/gx_single_line_text_input_position_update.c b/common/src/gx_single_line_text_input_position_update.c index 9e65551d..81261400 100644 --- a/common/src/gx_single_line_text_input_position_update.c +++ b/common/src/gx_single_line_text_input_position_update.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_position_update(GX_SINGLE_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_single_line_text_input_right_arrow.c b/common/src/gx_single_line_text_input_right_arrow.c index e7ed662c..53cd7d90 100644 --- a/common/src/gx_single_line_text_input_right_arrow.c +++ b/common/src/gx_single_line_text_input_right_arrow.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -74,14 +75,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_right_arrow(GX_SINGLE_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gx_single_line_text_input_style_add.c b/common/src/gx_single_line_text_input_style_add.c index 3b668245..38b53623 100644 --- a/common/src/gx_single_line_text_input_style_add.c +++ b/common/src/gx_single_line_text_input_style_add.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_style_add(GX_SINGLE_LINE_TEXT_INPUT *text_input, ULONG style) { diff --git a/common/src/gx_single_line_text_input_style_remove.c b/common/src/gx_single_line_text_input_style_remove.c index aaf91018..92820b23 100644 --- a/common/src/gx_single_line_text_input_style_remove.c +++ b/common/src/gx_single_line_text_input_style_remove.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_style_remove(GX_SINGLE_LINE_TEXT_INPUT *text_input, ULONG style) { diff --git a/common/src/gx_single_line_text_input_style_set.c b/common/src/gx_single_line_text_input_style_set.c index 396cb481..1e90590b 100644 --- a/common/src/gx_single_line_text_input_style_set.c +++ b/common/src/gx_single_line_text_input_style_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_style_set(GX_SINGLE_LINE_TEXT_INPUT *text_input, ULONG style) { diff --git a/common/src/gx_single_line_text_input_text_color_set.c b/common/src/gx_single_line_text_input_text_color_set.c index 51f77aca..1c8eb5f3 100644 --- a/common/src/gx_single_line_text_input_text_color_set.c +++ b/common/src/gx_single_line_text_input_text_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_text_color_set(GX_SINGLE_LINE_TEXT_INPUT *input, GX_RESOURCE_ID normal_text_color_id, diff --git a/common/src/gx_single_line_text_input_text_rectangle_get.c b/common/src/gx_single_line_text_input_text_rectangle_get.c index 88a14a17..67cbaa31 100644 --- a/common/src/gx_single_line_text_input_text_rectangle_get.c +++ b/common/src/gx_single_line_text_input_text_rectangle_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* _gx_system_dirty_mark Mark widget as drity */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_text_rectangle_get(GX_SINGLE_LINE_TEXT_INPUT *input, INT offset_index, GX_RECTANGLE *rect) { diff --git a/common/src/gx_single_line_text_input_text_select.c b/common/src/gx_single_line_text_input_text_select.c index 6375db29..61bced4e 100644 --- a/common/src/gx_single_line_text_input_text_select.c +++ b/common/src/gx_single_line_text_input_text_select.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_text_select(GX_SINGLE_LINE_TEXT_INPUT *input, UINT start_index, UINT end_index) { diff --git a/common/src/gx_single_line_text_input_text_set.c b/common/src/gx_single_line_text_input_text_set.c index b5f8e0c5..7706e743 100644 --- a/common/src/gx_single_line_text_input_text_set.c +++ b/common/src/gx_single_line_text_input_text_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_single_line_text_input_text_set(GX_SINGLE_LINE_TEXT_INPUT *text_input, GX_CONST GX_CHAR *text) @@ -136,14 +129,6 @@ GX_STRING string; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_single_line_text_input_text_set_ext(GX_SINGLE_LINE_TEXT_INPUT *text_input, GX_CONST GX_STRING *text) { diff --git a/common/src/gx_slider_create.c b/common/src/gx_slider_create.c index 8b309934..84c15a13 100644 --- a/common/src/gx_slider_create.c +++ b/common/src/gx_slider_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,14 +73,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_slider_create(GX_SLIDER *slider, GX_CONST GX_CHAR *name, GX_WIDGET *parent, INT tick_count, diff --git a/common/src/gx_slider_draw.c b/common/src/gx_slider_draw.c index 821e7002..e6c7ad96 100644 --- a/common/src/gx_slider_draw.c +++ b/common/src/gx_slider_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_slider_draw(GX_SLIDER *slider) { diff --git a/common/src/gx_slider_event_process.c b/common/src/gx_slider_event_process.c index d3c8a55f..bf47ac35 100644 --- a/common/src/gx_slider_event_process.c +++ b/common/src/gx_slider_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_slider_event_process(GX_SLIDER *slider, GX_EVENT *event_ptr) { diff --git a/common/src/gx_slider_info_set.c b/common/src/gx_slider_info_set.c index fc56e4db..d0da2c87 100644 --- a/common/src/gx_slider_info_set.c +++ b/common/src/gx_slider_info_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_slider_info_set(GX_SLIDER *slider, GX_SLIDER_INFO *info) { diff --git a/common/src/gx_slider_needle_draw.c b/common/src/gx_slider_needle_draw.c index c113e0d4..f09ddca2 100644 --- a/common/src/gx_slider_needle_draw.c +++ b/common/src/gx_slider_needle_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,14 +73,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_slider_needle_draw(GX_SLIDER *slider) { diff --git a/common/src/gx_slider_needle_position_get.c b/common/src/gx_slider_needle_position_get.c index 83d0daf2..bcf56baf 100644 --- a/common/src/gx_slider_needle_position_get.c +++ b/common/src/gx_slider_needle_position_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,14 +72,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_slider_needle_position_get(GX_SLIDER *slider, GX_SLIDER_INFO *slider_info, GX_RECTANGLE *return_position) { diff --git a/common/src/gx_slider_tickmarks_draw.c b/common/src/gx_slider_tickmarks_draw.c index c3c99fc3..a1cf3154 100644 --- a/common/src/gx_slider_tickmarks_draw.c +++ b/common/src/gx_slider_tickmarks_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_slider_tickmarks_draw(GX_SLIDER *slider) { diff --git a/common/src/gx_slider_travel_get.c b/common/src/gx_slider_travel_get.c index 9cb3dc8e..36106f21 100644 --- a/common/src/gx_slider_travel_get.c +++ b/common/src/gx_slider_travel_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,14 +71,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_slider_travel_get(GX_SLIDER *slider, GX_SLIDER_INFO *info, INT *return_min_travel, INT *return_max_travel) { diff --git a/common/src/gx_slider_value_calculate.c b/common/src/gx_slider_value_calculate.c index cb64ab82..268d2d71 100644 --- a/common/src/gx_slider_value_calculate.c +++ b/common/src/gx_slider_value_calculate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_slider_value_calculate(GX_SLIDER *slider, GX_SLIDER_INFO *info, INT new_position) { diff --git a/common/src/gx_slider_value_set.c b/common/src/gx_slider_value_set.c index 947fd87e..3a5444c3 100644 --- a/common/src/gx_slider_value_set.c +++ b/common/src/gx_slider_value_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -74,14 +75,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_slider_value_set(GX_SLIDER *slider, GX_SLIDER_INFO *info, INT new_value) { diff --git a/common/src/gx_sprite_create.c b/common/src/gx_sprite_create.c index e0f8edd2..f3ed5d6d 100644 --- a/common/src/gx_sprite_create.c +++ b/common/src/gx_sprite_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,14 +71,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_sprite_create(GX_SPRITE *sprite, GX_CONST GX_CHAR *name, GX_WIDGET *parent, GX_SPRITE_FRAME *frame_list, USHORT frame_count, diff --git a/common/src/gx_sprite_current_frame_set.c b/common/src/gx_sprite_current_frame_set.c index 5ab7e023..745e7a69 100644 --- a/common/src/gx_sprite_current_frame_set.c +++ b/common/src/gx_sprite_current_frame_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_sprite_current_frame_set(GX_SPRITE *sprite, USHORT frame_index) { diff --git a/common/src/gx_sprite_draw.c b/common/src/gx_sprite_draw.c index 9654c5fe..8c33370f 100644 --- a/common/src/gx_sprite_draw.c +++ b/common/src/gx_sprite_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,17 +70,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-15-2021 Ting Zhu Modified comment(s), */ -/* supported alphamap draw, */ -/* resulting in version 6.1.9 */ -/* */ /**************************************************************************/ VOID _gx_sprite_draw(GX_SPRITE *sprite) { diff --git a/common/src/gx_sprite_event_process.c b/common/src/gx_sprite_event_process.c index 01887039..b28d35e9 100644 --- a/common/src/gx_sprite_event_process.c +++ b/common/src/gx_sprite_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_sprite_event_process(GX_SPRITE *sprite, GX_EVENT *event_ptr) { diff --git a/common/src/gx_sprite_frame_list_set.c b/common/src/gx_sprite_frame_list_set.c index bbb4d4e7..fa7f1a17 100644 --- a/common/src/gx_sprite_frame_list_set.c +++ b/common/src/gx_sprite_frame_list_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_sprite_frame_list_set(GX_SPRITE *sprite, GX_SPRITE_FRAME *frame_list, USHORT frame_count) { diff --git a/common/src/gx_sprite_start.c b/common/src/gx_sprite_start.c index 681d52ac..09ceb01c 100644 --- a/common/src/gx_sprite_start.c +++ b/common/src/gx_sprite_start.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_sprite_start(GX_SPRITE *sprite, USHORT frame_number) { diff --git a/common/src/gx_sprite_stop.c b/common/src/gx_sprite_stop.c index ac5411ab..c3acc924 100644 --- a/common/src/gx_sprite_stop.c +++ b/common/src/gx_sprite_stop.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_sprite_stop(GX_SPRITE *sprite) { diff --git a/common/src/gx_sprite_update.c b/common/src/gx_sprite_update.c index dd6f0719..9f1aa77e 100644 --- a/common/src/gx_sprite_update.c +++ b/common/src/gx_sprite_update.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,18 +68,6 @@ /* _gx_sprite_event_process Event process routine for */ /* the sprite widget */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Kenneth Maxwell Modified comment(s), */ -/* fix logic for restarting */ -/* sprite timer, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ VOID _gx_sprite_update(GX_SPRITE *sprite) { diff --git a/common/src/gx_string_scroll_wheel_create.c b/common/src/gx_string_scroll_wheel_create.c index 127c6c7e..28579d6c 100644 --- a/common/src/gx_string_scroll_wheel_create.c +++ b/common/src/gx_string_scroll_wheel_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_string_scroll_wheel_create(GX_STRING_SCROLL_WHEEL *wheel, @@ -137,15 +130,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* set new event process, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_string_scroll_wheel_create_ext(GX_STRING_SCROLL_WHEEL *wheel, GX_CONST GX_CHAR *name, diff --git a/common/src/gx_string_scroll_wheel_event_process.c b/common/src/gx_string_scroll_wheel_event_process.c index 7785183b..e7d7cf42 100644 --- a/common/src/gx_string_scroll_wheel_event_process.c +++ b/common/src/gx_string_scroll_wheel_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,12 +62,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_string_scroll_wheel_event_process(GX_STRING_SCROLL_WHEEL *wheel, GX_EVENT *event_ptr) { diff --git a/common/src/gx_string_scroll_wheel_string_id_list_set.c b/common/src/gx_string_scroll_wheel_string_id_list_set.c index f4ff6e02..ca1ad060 100644 --- a/common/src/gx_string_scroll_wheel_string_id_list_set.c +++ b/common/src/gx_string_scroll_wheel_string_id_list_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,16 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to delete */ -/* dynamic bidi text, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_string_scroll_wheel_string_id_list_set(GX_STRING_SCROLL_WHEEL *wheel, GX_CONST GX_RESOURCE_ID *string_id_list, diff --git a/common/src/gx_string_scroll_wheel_string_list_set.c b/common/src/gx_string_scroll_wheel_string_list_set.c index 453760ff..bb89afa7 100644 --- a/common/src/gx_string_scroll_wheel_string_list_set.c +++ b/common/src/gx_string_scroll_wheel_string_list_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_string_scroll_wheel_string_list_set(GX_STRING_SCROLL_WHEEL *wheel, @@ -151,16 +144,6 @@ UINT status = GX_SUCCESS; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to delete */ -/* dynamic bidi text, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_string_scroll_wheel_string_list_set_ext(GX_STRING_SCROLL_WHEEL *wheel, GX_CONST GX_STRING *string_list, diff --git a/common/src/gx_string_scroll_wheel_text_get.c b/common/src/gx_string_scroll_wheel_text_get.c index d38b958c..7eafe85f 100644 --- a/common/src/gx_string_scroll_wheel_text_get.c +++ b/common/src/gx_string_scroll_wheel_text_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* _gx_text_scroll_wheel_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_string_scroll_wheel_text_get(GX_STRING_SCROLL_WHEEL *wheel, INT row, GX_STRING *string) { diff --git a/common/src/gx_system_active_language_set.c b/common/src/gx_system_active_language_set.c index 345ffadd..dfff5722 100644 --- a/common/src/gx_system_active_language_set.c +++ b/common/src/gx_system_active_language_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_active_language_set(GX_UBYTE language) { diff --git a/common/src/gx_system_all_canvas_dirty.c b/common/src/gx_system_all_canvas_dirty.c index d16fad94..a16d1eac 100644 --- a/common/src/gx_system_all_canvas_dirty.c +++ b/common/src/gx_system_all_canvas_dirty.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_system_all_canvas_dirty(VOID) { diff --git a/common/src/gx_system_all_views_free.c b/common/src/gx_system_all_views_free.c index 9e9cce15..d1b51fed 100644 --- a/common/src/gx_system_all_views_free.c +++ b/common/src/gx_system_all_views_free.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_system_all_views_free(GX_WINDOW_ROOT *root) { diff --git a/common/src/gx_system_animation_free.c b/common/src/gx_system_animation_free.c index cdbacf76..58fb3bf3 100644 --- a/common/src/gx_system_animation_free.c +++ b/common/src/gx_system_animation_free.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* GUIX Application */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if (GX_ANIMATION_POOL_SIZE > 0) UINT _gx_system_animation_free(GX_ANIMATION *animation) diff --git a/common/src/gx_system_animation_get.c b/common/src/gx_system_animation_get.c index 0c793cea..43378c99 100644 --- a/common/src/gx_system_animation_get.c +++ b/common/src/gx_system_animation_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,17 +61,6 @@ /* GUIX Application */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), init */ -/* animation canvas to null, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ #if (GX_ANIMATION_POOL_SIZE > 0) diff --git a/common/src/gx_system_bidi_text_disable.c b/common/src/gx_system_bidi_text_disable.c index 25853883..a67d78bf 100644 --- a/common/src/gx_system_bidi_text_disable.c +++ b/common/src/gx_system_bidi_text_disable.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,16 +58,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to send dynamic */ -/* bidi text disable event, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_DYNAMIC_BIDI_TEXT_SUPPORT) UINT _gx_system_bidi_text_disable(VOID) diff --git a/common/src/gx_system_bidi_text_enable.c b/common/src/gx_system_bidi_text_enable.c index 391c24e4..57370b0a 100644 --- a/common/src/gx_system_bidi_text_enable.c +++ b/common/src/gx_system_bidi_text_enable.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,16 +58,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to send dynamic */ -/* bidi text enable event, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_DYNAMIC_BIDI_TEXT_SUPPORT) UINT _gx_system_bidi_text_enable(VOID) diff --git a/common/src/gx_system_canvas_refresh.c b/common/src/gx_system_canvas_refresh.c index 1076e855..3e88e824 100644 --- a/common/src/gx_system_canvas_refresh.c +++ b/common/src/gx_system_canvas_refresh.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,12 +68,6 @@ /* */ /* _gx_system_canvas_refresh */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ -/* */ /**************************************************************************/ #ifdef GX_ENABLE_CANVAS_PARTIAL_FRAME_BUFFER static UINT _gx_system_canvas_draw_partial_canvas(GX_WINDOW_ROOT *root) @@ -273,18 +268,6 @@ return GX_SUCCESS; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added partial canvas buffer */ -/* support, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ UINT _gx_system_canvas_refresh(VOID) { diff --git a/common/src/gx_system_clipboard_get.c b/common/src/gx_system_clipboard_get.c index 2feb5555..283af31d 100644 --- a/common/src/gx_system_clipboard_get.c +++ b/common/src/gx_system_clipboard_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_clipboard_get(VOID **data, UINT *data_size) { diff --git a/common/src/gx_system_clipboard_put.c b/common/src/gx_system_clipboard_put.c index 1b5a0afd..ed82d22a 100644 --- a/common/src/gx_system_clipboard_put.c +++ b/common/src/gx_system_clipboard_put.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_clipboard_put(VOID *data, UINT data_size) { diff --git a/common/src/gx_system_dirty_list_remove.c b/common/src/gx_system_dirty_list_remove.c index 7303ce49..be009242 100644 --- a/common/src/gx_system_dirty_list_remove.c +++ b/common/src/gx_system_dirty_list_remove.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* _gx_system_dirty_list_remove Remove widget from dirty list */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_system_dirty_list_remove(GX_WIDGET *remove) { diff --git a/common/src/gx_system_dirty_list_trim.c b/common/src/gx_system_dirty_list_trim.c index c543cfc3..d46e0222 100644 --- a/common/src/gx_system_dirty_list_trim.c +++ b/common/src/gx_system_dirty_list_trim.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* _gx_system_dirty_list_trim Calculate and trim dirty list */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_system_dirty_overlap_check(GX_DIRTY_AREA *dirty) { @@ -144,14 +137,6 @@ GX_WIDGET *parent; /* */ /* _gx_system_canvas_refresh Refresh the canvas */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_dirty_list_trim(GX_RECTANGLE *dirty_area, GX_WINDOW_ROOT *root) { @@ -173,7 +158,7 @@ GX_WIDGET *parent; /* Setup pointer to start of dirty area list. */ dirty = canvas -> gx_canvas_dirty_list; - /* This loop looks for invalid entries (invisible) and + /* This loop looks for invalid entries (invisible) and entries that have overlappers in the z order, in which case we need to back up the drawing layer */ diff --git a/common/src/gx_system_dirty_mark.c b/common/src/gx_system_dirty_mark.c index 3389631b..3177fe10 100644 --- a/common/src/gx_system_dirty_mark.c +++ b/common/src/gx_system_dirty_mark.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* GUIX Application */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_dirty_mark(GX_WIDGET *widget) { diff --git a/common/src/gx_system_dirty_partial_add.c b/common/src/gx_system_dirty_partial_add.c index fc66aa89..bac327e3 100644 --- a/common/src/gx_system_dirty_partial_add.c +++ b/common/src/gx_system_dirty_partial_add.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_system_dirty_entry_shift(GX_WIDGET *widget, INT xShift, INT yShift) { diff --git a/common/src/gx_system_draw_context_get.c b/common/src/gx_system_draw_context_get.c index 33da261f..01d9a76c 100644 --- a/common/src/gx_system_draw_context_get.c +++ b/common/src/gx_system_draw_context_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* Application Code */ /* GUIX default draw funtions */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_draw_context_get(GX_DRAW_CONTEXT **current_context) { diff --git a/common/src/gx_system_error_process.c b/common/src/gx_system_error_process.c index 9fcfaa4b..cafdd790 100644 --- a/common/src/gx_system_error_process.c +++ b/common/src/gx_system_error_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_system_error_process(UINT error_code) { diff --git a/common/src/gx_system_event_dispatch.c b/common/src/gx_system_event_dispatch.c index 55cb6a17..ad58dd78 100644 --- a/common/src/gx_system_event_dispatch.c +++ b/common/src/gx_system_event_dispatch.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,20 +63,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 04-25-2022 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.11 */ -/* 03-08-2023 Ting Zhu Modified comment(s), fixed */ -/* a gcc warning, */ -/* resulting in version 6.2.1 */ -/* */ /**************************************************************************/ UINT _gx_system_event_dispatch(GX_EVENT *in_event) { diff --git a/common/src/gx_system_event_fold.c b/common/src/gx_system_event_fold.c index eb049d0d..24daf285 100644 --- a/common/src/gx_system_event_fold.c +++ b/common/src/gx_system_event_fold.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_event_fold(GX_EVENT *in_event) { diff --git a/common/src/gx_system_event_remove.c b/common/src/gx_system_event_remove.c index 3e252d14..e5b5b9c2 100644 --- a/common/src/gx_system_event_remove.c +++ b/common/src/gx_system_event_remove.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* _gx_widget_delete Delete a widget */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_system_event_remove(GX_WIDGET *widget) { diff --git a/common/src/gx_system_event_send.c b/common/src/gx_system_event_send.c index 97c73a5a..962d536f 100644 --- a/common/src/gx_system_event_send.c +++ b/common/src/gx_system_event_send.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,17 +63,6 @@ /* GUIX Application */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 04-25-2022 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.11 */ -/* */ /**************************************************************************/ UINT _gx_system_event_send(GX_EVENT *in_event) { diff --git a/common/src/gx_system_focus_claim.c b/common/src/gx_system_focus_claim.c index b9716c2e..7196c186 100644 --- a/common/src/gx_system_focus_claim.c +++ b/common/src/gx_system_focus_claim.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* GUIX Application */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_focus_claim(GX_WIDGET *widget) { diff --git a/common/src/gx_system_free_view_get.c b/common/src/gx_system_free_view_get.c index d834da30..505709f2 100644 --- a/common/src/gx_system_free_view_get.c +++ b/common/src/gx_system_free_view_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* _gx_system_view_add Link a view to window's */ /* view list */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_VIEW *_gx_system_free_view_get(VOID) diff --git a/common/src/gx_system_initialize.c b/common/src/gx_system_initialize.c index d9d23d34..10020044 100644 --- a/common/src/gx_system_initialize.c +++ b/common/src/gx_system_initialize.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,18 +71,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* added GX_DISABLE_THREADX_ */ -/* TIMER_SOURCE configuration, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ UINT _gx_system_initialize(VOID) { diff --git a/common/src/gx_system_input_capture.c b/common/src/gx_system_input_capture.c index 3b202576..25986243 100644 --- a/common/src/gx_system_input_capture.c +++ b/common/src/gx_system_input_capture.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_input_capture(GX_WIDGET *owner) diff --git a/common/src/gx_system_input_release.c b/common/src/gx_system_input_release.c index 6e98c0db..d1b24fa0 100644 --- a/common/src/gx_system_input_release.c +++ b/common/src/gx_system_input_release.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,22 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 07-29-2022 Kenneth Maxwell Modified comment(s), */ -/* optimized logic and ensured */ -/* released stack entries are */ -/* reset to NULL, */ -/* resulting in version 6.1.12 */ -/* 03-08-2023 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.2.1 */ -/* */ /**************************************************************************/ UINT _gx_system_input_release(GX_WIDGET *owner) diff --git a/common/src/gx_system_language_table_get.c b/common/src/gx_system_language_table_get.c index e7a6ce99..b9754576 100644 --- a/common/src/gx_system_language_table_get.c +++ b/common/src/gx_system_language_table_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_system_language_table_get(GX_CHAR ****language_table, GX_UBYTE *language_count, UINT *string_count) diff --git a/common/src/gx_system_language_table_set.c b/common/src/gx_system_language_table_set.c index 284cf1e8..8685c019 100644 --- a/common/src/gx_system_language_table_set.c +++ b/common/src/gx_system_language_table_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_system_language_table_set(GX_CHAR ***language_table, GX_UBYTE num_languages, UINT number_of_strings) diff --git a/common/src/gx_system_lock.c b/common/src/gx_system_lock.c index 8a623e1a..0c07eeee 100644 --- a/common/src/gx_system_lock.c +++ b/common/src/gx_system_lock.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_system_lock(VOID) { diff --git a/common/src/gx_system_memory_allocator_set.c b/common/src/gx_system_memory_allocator_set.c index 96b1ebfb..9047d6ca 100644 --- a/common/src/gx_system_memory_allocator_set.c +++ b/common/src/gx_system_memory_allocator_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_memory_allocator_set(VOID *(*allocate)(ULONG size), VOID (*release)(VOID *)) { diff --git a/common/src/gx_system_pen_configure.c b/common/src/gx_system_pen_configure.c index eea4a821..a553612b 100644 --- a/common/src/gx_system_pen_configure.c +++ b/common/src/gx_system_pen_configure.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_pen_configure(GX_PEN_CONFIGURATION *pen_configuration) { diff --git a/common/src/gx_system_pen_flick_test.c b/common/src/gx_system_pen_flick_test.c index 37129924..cc4495fa 100644 --- a/common/src/gx_system_pen_flick_test.c +++ b/common/src/gx_system_pen_flick_test.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,17 +60,6 @@ /* */ /* _gx_system_event_send Send GUIX event */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 04-25-2022 Ting Zhu Modified comment(s), */ -/* added a new parameter, */ -/* resulting in version 6.1.11 */ -/* */ /**************************************************************************/ VOID _gx_system_pen_flick_test(GX_WIDGET *target) { diff --git a/common/src/gx_system_pen_speed_init.c b/common/src/gx_system_pen_speed_init.c index 0630cd0d..04ec0e22 100644 --- a/common/src/gx_system_pen_speed_init.c +++ b/common/src/gx_system_pen_speed_init.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -56,14 +57,6 @@ /* */ /* _gx_system_event_send Send GUIX system event */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_system_pen_speed_init(GX_POINT *current) { diff --git a/common/src/gx_system_pen_speed_update.c b/common/src/gx_system_pen_speed_update.c index ad99abd8..119111c4 100644 --- a/common/src/gx_system_pen_speed_update.c +++ b/common/src/gx_system_pen_speed_update.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* _gx_system_event_fold Fold GUIX system events */ /* _gx_system_event_send Send GUIX system event */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_system_pen_speed_update(GX_POINT *current) { diff --git a/common/src/gx_system_private_string.c b/common/src/gx_system_private_string.c index 7862d432..03bfacb9 100644 --- a/common/src/gx_system_private_string.c +++ b/common/src/gx_system_private_string.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_private_string_copy(GX_STRING *string, GX_CONST GX_STRING *text) { @@ -211,14 +204,6 @@ USHORT needed_buffer_size; /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_system_private_string_list_copy(GX_CONST GX_CHAR ***ptr_address, GX_CONST GX_CHAR **string_list, INT string_count) @@ -386,14 +371,6 @@ UINT length; /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_private_string_list_copy_ext(GX_STRING **ptr_address, USHORT *buffer_size, GX_CONST GX_STRING *string_list, INT string_count) { @@ -528,14 +505,6 @@ UINT length; /* */ /* _gx_checkbox_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_system_private_string_get(GX_CONST GX_STRING *input, GX_STRING *output, ULONG style) { @@ -600,14 +569,6 @@ GX_UBYTE *temp; /* */ /* _gx_checkbox_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) VOID _gx_system_private_string_list_get(GX_CONST GX_CHAR **input, GX_CONST GX_CHAR ***output, ULONG style) diff --git a/common/src/gx_system_root_view_add.c b/common/src/gx_system_root_view_add.c index 1c5b276a..9995267e 100644 --- a/common/src/gx_system_root_view_add.c +++ b/common/src/gx_system_root_view_add.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_system_root_view_add(GX_WINDOW_ROOT *root, GX_RECTANGLE *inrect) { diff --git a/common/src/gx_system_rtos_bind.c b/common/src/gx_system_rtos_bind.c index ddaba083..a9964eda 100644 --- a/common/src/gx_system_rtos_bind.c +++ b/common/src/gx_system_rtos_bind.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* GUIX system serives */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef GX_THREADX_BINDING diff --git a/common/src/gx_system_screen_stack_create.c b/common/src/gx_system_screen_stack_create.c index 6bc33a2c..f5e49163 100644 --- a/common/src/gx_system_screen_stack_create.c +++ b/common/src/gx_system_screen_stack_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_screen_stack_create(GX_WIDGET **memory, INT size) { diff --git a/common/src/gx_system_screen_stack_get.c b/common/src/gx_system_screen_stack_get.c index b8c84fba..8fec50d5 100644 --- a/common/src/gx_system_screen_stack_get.c +++ b/common/src/gx_system_screen_stack_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_screen_stack_get(GX_WIDGET **popped_parent, GX_WIDGET **popped_screen) { diff --git a/common/src/gx_system_screen_stack_pop.c b/common/src/gx_system_screen_stack_pop.c index 266280e9..311c11cc 100644 --- a/common/src/gx_system_screen_stack_pop.c +++ b/common/src/gx_system_screen_stack_pop.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_screen_stack_pop(VOID) { diff --git a/common/src/gx_system_screen_stack_push.c b/common/src/gx_system_screen_stack_push.c index 4bf6e8a6..49e76357 100644 --- a/common/src/gx_system_screen_stack_push.c +++ b/common/src/gx_system_screen_stack_push.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_screen_stack_push(GX_WIDGET *screen) { diff --git a/common/src/gx_system_screen_stack_reset.c b/common/src/gx_system_screen_stack_reset.c index 3595036c..9f025751 100644 --- a/common/src/gx_system_screen_stack_reset.c +++ b/common/src/gx_system_screen_stack_reset.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_screen_stack_reset(VOID) { diff --git a/common/src/gx_system_scroll_appearance_get.c b/common/src/gx_system_scroll_appearance_get.c index 80be0783..e55fa171 100644 --- a/common/src/gx_system_scroll_appearance_get.c +++ b/common/src/gx_system_scroll_appearance_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* _gx_vertical_scrollbar_create Create the vertical */ /* scrollbar widget */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_scroll_appearance_get(ULONG style, GX_SCROLLBAR_APPEARANCE *return_appearance) { diff --git a/common/src/gx_system_scroll_appearance_set.c b/common/src/gx_system_scroll_appearance_set.c index 19bf6515..384f9b80 100644 --- a/common/src/gx_system_scroll_appearance_set.c +++ b/common/src/gx_system_scroll_appearance_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_scroll_appearance_set(ULONG style, GX_SCROLLBAR_APPEARANCE *appearance) { diff --git a/common/src/gx_system_start.c b/common/src/gx_system_start.c index 37f1138c..ca5c27d3 100644 --- a/common/src/gx_system_start.c +++ b/common/src/gx_system_start.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_start(VOID) { diff --git a/common/src/gx_system_string_get.c b/common/src/gx_system_string_get.c index 84a78c48..a3740820 100644 --- a/common/src/gx_system_string_get.c +++ b/common/src/gx_system_string_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,14 +71,6 @@ /* button widget */ /* _gx_widget_text_id_draw Drew the text onto the wdiget */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_system_string_get(GX_RESOURCE_ID string_id, GX_CONST GX_CHAR **return_string) diff --git a/common/src/gx_system_string_table_get.c b/common/src/gx_system_string_table_get.c index dccde102..fe49a593 100644 --- a/common/src/gx_system_string_table_get.c +++ b/common/src/gx_system_string_table_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_system_string_table_get(GX_UBYTE language, GX_CHAR ***put_table, UINT *put_size) diff --git a/common/src/gx_system_string_width_get.c b/common/src/gx_system_string_width_get.c index c39a06e4..f19385dc 100644 --- a/common/src/gx_system_string_width_get.c +++ b/common/src/gx_system_string_width_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_system_string_width_compressed_font_get(GX_CONST GX_FONT *font, GX_STRING *string, @@ -164,14 +157,6 @@ UINT ret; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_FONT_KERNING_SUPPORT) static UINT _gx_system_string_width_kerning_font_get(GX_CONST GX_FONT *font, @@ -298,14 +283,6 @@ UINT ret; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_system_string_width_get(GX_CONST GX_FONT *font, GX_CONST GX_CHAR *text, INT string_length, GX_VALUE *return_width) @@ -370,14 +347,6 @@ GX_STRING string; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_string_width_get_ext(GX_CONST GX_FONT *font, GX_CONST GX_STRING *string, GX_VALUE *return_width) { diff --git a/common/src/gx_system_text_render_style_set.c b/common/src/gx_system_text_render_style_set.c index f15b9ab0..724a8e3b 100644 --- a/common/src/gx_system_text_render_style_set.c +++ b/common/src/gx_system_text_render_style_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_THAI_GLYPH_SHAPING_SUPPORT) UINT _gx_system_text_render_style_set(GX_UBYTE style) diff --git a/common/src/gx_system_thread_entry.c b/common/src/gx_system_thread_entry.c index 48d0e244..00bec266 100644 --- a/common/src/gx_system_thread_entry.c +++ b/common/src/gx_system_thread_entry.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,14 +73,6 @@ /* */ /* ThreadX */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_system_thread_entry(ULONG id) { diff --git a/common/src/gx_system_timer_expiration.c b/common/src/gx_system_timer_expiration.c index b9bdc03f..5bf07af1 100644 --- a/common/src/gx_system_timer_expiration.c +++ b/common/src/gx_system_timer_expiration.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,18 +62,6 @@ /* */ /* tx_timer */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* added GX_DISABLE_THREADX_ */ -/* TIMER_SOURCE configuration, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_system_timer_expiration(ULONG val) { diff --git a/common/src/gx_system_timer_start.c b/common/src/gx_system_timer_start.c index 2419b5ed..5c0cdb19 100644 --- a/common/src/gx_system_timer_start.c +++ b/common/src/gx_system_timer_start.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,22 +65,6 @@ /* GUIX Application */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* added GX_DISABLE_THREADX_ */ -/* TIMER_SOURCE configuration, */ -/* resulting in version 6.1.3 */ -/* 06-02-2021 Ting Zhu Modified comment(s), */ -/* fixed compile warning when */ -/* ThreadX timer is disabled, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gx_system_timer_start(GX_WIDGET *owner, UINT timer_id, UINT initial_ticks, UINT reschedule_ticks) { diff --git a/common/src/gx_system_timer_stop.c b/common/src/gx_system_timer_stop.c index 94b8f894..c85f7901 100644 --- a/common/src/gx_system_timer_stop.c +++ b/common/src/gx_system_timer_stop.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,18 +63,6 @@ /* GUIX Application */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* added GX_DISABLE_THREADX_ */ -/* TIMER_SOURCE configuration, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ UINT _gx_system_timer_stop(GX_WIDGET *owner, UINT timer_id) { diff --git a/common/src/gx_system_timer_update.c b/common/src/gx_system_timer_update.c index c75574d3..d85c2588 100644 --- a/common/src/gx_system_timer_update.c +++ b/common/src/gx_system_timer_update.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* tx_timer */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_system_timer_update(ULONG ticks) { diff --git a/common/src/gx_system_top_root_find.c b/common/src/gx_system_top_root_find.c index 98663f43..1a792d55 100644 --- a/common/src/gx_system_top_root_find.c +++ b/common/src/gx_system_top_root_find.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* _gx_system_event_dispatch Dispatch GUIX event */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_WINDOW_ROOT *_gx_system_top_root_find(GX_EVENT *in_event) { diff --git a/common/src/gx_system_top_widget_find.c b/common/src/gx_system_top_widget_find.c index 04582d9f..33574775 100644 --- a/common/src/gx_system_top_widget_find.c +++ b/common/src/gx_system_top_widget_find.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* _gx_system_event_dispatch Dispatch GUIX events */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_WIDGET *_gx_system_top_widget_find(GX_WIDGET *root, GX_POINT test_point, ULONG status) { diff --git a/common/src/gx_system_unlock.c b/common/src/gx_system_unlock.c index 88ec3fa3..236dfff3 100644 --- a/common/src/gx_system_unlock.c +++ b/common/src/gx_system_unlock.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_system_unlock(VOID) { diff --git a/common/src/gx_system_version_string_get.c b/common/src/gx_system_version_string_get.c index 931496c8..f8aea98c 100644 --- a/common/src/gx_system_version_string_get.c +++ b/common/src/gx_system_version_string_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_system_version_string_get(GX_CHAR **return_string) @@ -106,14 +99,6 @@ UINT _gx_system_version_string_get(GX_CHAR **return_string) /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_version_string_get_ext(GX_STRING *return_string) { diff --git a/common/src/gx_system_view_add.c b/common/src/gx_system_view_add.c index c7b2c8a0..5526f6a6 100644 --- a/common/src/gx_system_view_add.c +++ b/common/src/gx_system_view_add.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* _gx_system_root_view_add Add a view to the root */ /* window */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_system_view_add(GX_WINDOW *win, GX_RECTANGLE *view) { diff --git a/common/src/gx_system_view_fold.c b/common/src/gx_system_view_fold.c index a88f4582..6fd6a340 100644 --- a/common/src/gx_system_view_fold.c +++ b/common/src/gx_system_view_fold.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* _gx_system_view_add Link a view to window's view */ /* list */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_BOOL _gx_system_view_fold(GX_WINDOW *win, GX_RECTANGLE *view) { diff --git a/common/src/gx_system_view_split.c b/common/src/gx_system_view_split.c index d22e4897..2159f87d 100644 --- a/common/src/gx_system_view_split.c +++ b/common/src/gx_system_view_split.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* _gx_system_root_view_add Add view to a root window */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_system_view_split(GX_WINDOW *over, GX_WINDOW_ROOT *root, GX_RECTANGLE *original) diff --git a/common/src/gx_system_views_free.c b/common/src/gx_system_views_free.c index 2b9e4b40..f594a873 100644 --- a/common/src/gx_system_views_free.c +++ b/common/src/gx_system_views_free.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* _gx_all_views_free Release all views */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_system_views_free(GX_VIEW *head) diff --git a/common/src/gx_system_views_update.c b/common/src/gx_system_views_update.c index 3b8d6300..1a0a8a1f 100644 --- a/common/src/gx_system_views_update.c +++ b/common/src/gx_system_views_update.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* _gx_system_canvas_refresh Refresh the canvas */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_system_views_update(GX_WINDOW_ROOT *root) diff --git a/common/src/gx_system_widget_find.c b/common/src/gx_system_widget_find.c index 26e3160a..1e5027a4 100644 --- a/common/src/gx_system_widget_find.c +++ b/common/src/gx_system_widget_find.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* GUIX Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_system_widget_find(USHORT widget_id, INT search_level, GX_WIDGET **return_search_result) { diff --git a/common/src/gx_text_button_create.c b/common/src/gx_text_button_create.c index 9d51e7b7..eb767a14 100644 --- a/common/src/gx_text_button_create.c +++ b/common/src/gx_text_button_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,18 +67,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* set new event process, */ -/* added logic to init new */ -/* structure member for */ -/* dynamic bidi text support, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_text_button_create(GX_TEXT_BUTTON *button, GX_CONST GX_CHAR *name, GX_WIDGET *parent, GX_RESOURCE_ID text_id, ULONG style, USHORT Id, diff --git a/common/src/gx_text_button_draw.c b/common/src/gx_text_button_draw.c index 2ee90758..bdb12233 100644 --- a/common/src/gx_text_button_draw.c +++ b/common/src/gx_text_button_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_text_button_draw(GX_TEXT_BUTTON *button) { diff --git a/common/src/gx_text_button_event_process.c b/common/src/gx_text_button_event_process.c index 5d232291..fad2166d 100644 --- a/common/src/gx_text_button_event_process.c +++ b/common/src/gx_text_button_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,15 +64,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* eliminate fall-through, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gx_text_button_event_process(GX_TEXT_BUTTON *button, GX_EVENT *event_ptr) { diff --git a/common/src/gx_text_button_font_set.c b/common/src/gx_text_button_font_set.c index 93410e25..ffa44bb2 100644 --- a/common/src/gx_text_button_font_set.c +++ b/common/src/gx_text_button_font_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_text_button_font_set(GX_TEXT_BUTTON *button, GX_RESOURCE_ID font_id) { diff --git a/common/src/gx_text_button_text_color_set.c b/common/src/gx_text_button_text_color_set.c index 155c616f..3a46b8a7 100644 --- a/common/src/gx_text_button_text_color_set.c +++ b/common/src/gx_text_button_text_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_text_button_text_color_set(GX_TEXT_BUTTON *text_button, GX_RESOURCE_ID normal_text_color_id, diff --git a/common/src/gx_text_button_text_draw.c b/common/src/gx_text_button_text_draw.c index c937d3d6..0abc83e4 100644 --- a/common/src/gx_text_button_text_draw.c +++ b/common/src/gx_text_button_text_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,16 +62,6 @@ /* */ /* Application Code */ /* GUIX Internal Code */ -/* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1 */ - /* */ /**************************************************************************/ VOID _gx_text_button_text_draw(GX_TEXT_BUTTON *button) diff --git a/common/src/gx_text_button_text_get.c b/common/src/gx_text_button_text_get.c index 911063c4..87257ef5 100644 --- a/common/src/gx_text_button_text_get.c +++ b/common/src/gx_text_button_text_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_text_button_text_get(GX_TEXT_BUTTON *button, GX_CONST GX_CHAR **return_text) @@ -119,20 +112,6 @@ GX_STRING string; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to retrieve */ -/* dynamic bidi text, */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* updated with new bidi text */ -/* reorder function call, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT _gx_text_button_text_get_ext(GX_TEXT_BUTTON *button, GX_STRING *return_text) { diff --git a/common/src/gx_text_button_text_id_set.c b/common/src/gx_text_button_text_id_set.c index e02e3598..0f0dfe02 100644 --- a/common/src/gx_text_button_text_id_set.c +++ b/common/src/gx_text_button_text_id_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,16 +61,6 @@ /* */ /* Application Cdoe */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to delete */ -/* dynamic bidi text, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_text_button_text_id_set(GX_TEXT_BUTTON *button, GX_RESOURCE_ID text_id) { diff --git a/common/src/gx_text_button_text_set.c b/common/src/gx_text_button_text_set.c index d60d56c4..d77ff1ba 100644 --- a/common/src/gx_text_button_text_set.c +++ b/common/src/gx_text_button_text_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_text_button_text_set(GX_TEXT_BUTTON *button, GX_CONST GX_CHAR *text) @@ -124,16 +117,6 @@ GX_STRING string; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to delete */ -/* dynamic bidi text, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_text_button_text_set_ext(GX_TEXT_BUTTON *button, GX_CONST GX_STRING *string) { diff --git a/common/src/gx_text_input_cursor_blink_interval_set.c b/common/src/gx_text_input_cursor_blink_interval_set.c index e66abebf..03fcb5ce 100644 --- a/common/src/gx_text_input_cursor_blink_interval_set.c +++ b/common/src/gx_text_input_cursor_blink_interval_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_text_input_cursor_blink_interval_set(GX_TEXT_INPUT_CURSOR *cursor_input, GX_UBYTE blink_interval) { diff --git a/common/src/gx_text_input_cursor_dirty_rectangle_get.c b/common/src/gx_text_input_cursor_dirty_rectangle_get.c index e61b6f03..0c23cdbf 100644 --- a/common/src/gx_text_input_cursor_dirty_rectangle_get.c +++ b/common/src/gx_text_input_cursor_dirty_rectangle_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_text_input_cursor_dirty_rectangle_get(GX_TEXT_INPUT_CURSOR *cursor_ptr, GX_RECTANGLE *dirty_rect) { diff --git a/common/src/gx_text_input_cursor_draw.c b/common/src/gx_text_input_cursor_draw.c index 7904e1b2..fcf21667 100644 --- a/common/src/gx_text_input_cursor_draw.c +++ b/common/src/gx_text_input_cursor_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_text_input_cursor_draw(GX_TEXT_INPUT_CURSOR *cursor_ptr) { diff --git a/common/src/gx_text_input_cursor_height_set.c b/common/src/gx_text_input_cursor_height_set.c index d87ab74e..5dc2998e 100644 --- a/common/src/gx_text_input_cursor_height_set.c +++ b/common/src/gx_text_input_cursor_height_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_text_input_cursor_height_set(GX_TEXT_INPUT_CURSOR *cursor_input, GX_UBYTE height) { diff --git a/common/src/gx_text_input_cursor_width_set.c b/common/src/gx_text_input_cursor_width_set.c index 286352bd..185e54b0 100644 --- a/common/src/gx_text_input_cursor_width_set.c +++ b/common/src/gx_text_input_cursor_width_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_text_input_cursor_width_set(GX_TEXT_INPUT_CURSOR *cursor_input, GX_UBYTE width) { diff --git a/common/src/gx_text_scroll_wheel_callback_set.c b/common/src/gx_text_scroll_wheel_callback_set.c index 0d265ae7..18c62a01 100644 --- a/common/src/gx_text_scroll_wheel_callback_set.c +++ b/common/src/gx_text_scroll_wheel_callback_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,16 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to delete */ -/* dynamic bidi text, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_text_scroll_wheel_callback_set(GX_TEXT_SCROLL_WHEEL *wheel, GX_CONST GX_CHAR *(*callback)(GX_TEXT_SCROLL_WHEEL *, INT)) @@ -120,16 +111,6 @@ UINT _gx_text_scroll_wheel_callback_set(GX_TEXT_SCROLL_WHEEL *wheel, GX_CONST GX /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to delete */ -/* dynamic bidi text, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_text_scroll_wheel_callback_set_ext(GX_TEXT_SCROLL_WHEEL *wheel, UINT (*callback)(GX_TEXT_SCROLL_WHEEL *, INT, GX_STRING *)) { diff --git a/common/src/gx_text_scroll_wheel_create.c b/common/src/gx_text_scroll_wheel_create.c index 6ee95828..02341b98 100644 --- a/common/src/gx_text_scroll_wheel_create.c +++ b/common/src/gx_text_scroll_wheel_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,17 +65,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added logic to init new */ -/* structure member for */ -/* dynamic bidi text support, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_text_scroll_wheel_create(GX_TEXT_SCROLL_WHEEL *wheel, GX_CONST GX_CHAR *name, GX_WIDGET *parent, INT total_rows, diff --git a/common/src/gx_text_scroll_wheel_draw.c b/common/src/gx_text_scroll_wheel_draw.c index 0bdc8baf..0a406f40 100644 --- a/common/src/gx_text_scroll_wheel_draw.c +++ b/common/src/gx_text_scroll_wheel_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -79,21 +80,6 @@ /* */ /* _gx_text_scroll_wheel_row_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* rename RENESAS_DAVE2D */ -/* support conditional, */ -/* resulting in version 6.1.7 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* removed alpha set, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ static UINT _gx_text_scroll_wheel_round_text_draw(GX_TEXT_SCROLL_WHEEL *wheel, GX_RESOURCE_ID tColor, GX_RESOURCE_ID font_id, GX_CONST GX_STRING *string, GX_VALUE x_pos, GX_VALUE y_pos, GX_VALUE width, GX_VALUE height) @@ -218,17 +204,6 @@ GX_COLOR old_fill_color; /* */ /* _gx_text_scroll_wheel_row_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* removed alpha set, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ static UINT _gx_text_scroll_wheel_flat_text_draw(GX_TEXT_SCROLL_WHEEL *wheel, GX_RESOURCE_ID tColor, GX_RESOURCE_ID font_id, GX_CONST GX_STRING *string, GX_VALUE x_pos, GX_VALUE y_pos, GX_VALUE width, GX_VALUE height) @@ -310,19 +285,6 @@ GX_BRUSH *brush; /* _gx_text_scroll_wheel_round_draw */ /* _gx_text_scroll_wheel_flat_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 02-02-2021 Kenneth Maxwell Modified comment(s), */ -/* renamed */ -/* GX_STYLE_SCROLL_WHEEL_DRAG */ -/* to GX_STATUS_TRACKING_PEN, */ -/* resulting in version 6.1.4 */ -/* */ /**************************************************************************/ static UINT _gx_text_scroll_wheel_row_draw(GX_TEXT_SCROLL_WHEEL *wheel, GX_RECTANGLE *selected_area, GX_RECTANGLE *draw_area, GX_CONST GX_STRING *string) { @@ -422,16 +384,6 @@ UINT (*text_draw)(GX_TEXT_SCROLL_WHEEL *wheel, GX_RESOURCE_ID tColor, /* _gx_text_scroll_wheel_flat_draw */ /* _gx_text_scroll_wheel_round_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* updated with new bidi text */ -/* reorder function call, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ static UINT _gx_text_scroll_wheel_text_get(GX_TEXT_SCROLL_WHEEL *wheel, INT row, GX_STRING *string) { @@ -547,15 +499,6 @@ UINT status; /* */ /* _gx_text_scroll_wheel_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_text_scroll_wheel_round_draw(GX_TEXT_SCROLL_WHEEL *wheel) { @@ -744,15 +687,6 @@ INT row; /* */ /* _gx_text_scroll_wheel_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_text_scroll_wheel_flat_draw(GX_TEXT_SCROLL_WHEEL *wheel) { @@ -888,14 +822,6 @@ UINT status; /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_text_scroll_wheel_draw(GX_TEXT_SCROLL_WHEEL *wheel) { diff --git a/common/src/gx_text_scroll_wheel_dynamic_bidi_text_delete.c b/common/src/gx_text_scroll_wheel_dynamic_bidi_text_delete.c index 57aec2e8..10418f6f 100644 --- a/common/src/gx_text_scroll_wheel_dynamic_bidi_text_delete.c +++ b/common/src/gx_text_scroll_wheel_dynamic_bidi_text_delete.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,12 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_DYNAMIC_BIDI_TEXT_SUPPORT UINT _gx_text_scroll_wheel_dynamic_bidi_text_delete(GX_TEXT_SCROLL_WHEEL *wheel) diff --git a/common/src/gx_text_scroll_wheel_event_process.c b/common/src/gx_text_scroll_wheel_event_process.c index 41aa21c6..9f32cf7f 100644 --- a/common/src/gx_text_scroll_wheel_event_process.c +++ b/common/src/gx_text_scroll_wheel_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,12 +62,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_text_scroll_wheel_event_process(GX_TEXT_SCROLL_WHEEL *wheel, GX_EVENT *event_ptr) { diff --git a/common/src/gx_text_scroll_wheel_font_set.c b/common/src/gx_text_scroll_wheel_font_set.c index a87cc25e..d34dec40 100644 --- a/common/src/gx_text_scroll_wheel_font_set.c +++ b/common/src/gx_text_scroll_wheel_font_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_text_scroll_wheel_font_set(GX_TEXT_SCROLL_WHEEL *wheel, GX_RESOURCE_ID normal_font, GX_RESOURCE_ID selected_font) { diff --git a/common/src/gx_text_scroll_wheel_text_color_set.c b/common/src/gx_text_scroll_wheel_text_color_set.c index c6368275..d1b33d00 100644 --- a/common/src/gx_text_scroll_wheel_text_color_set.c +++ b/common/src/gx_text_scroll_wheel_text_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_text_scroll_wheel_text_color_set(GX_TEXT_SCROLL_WHEEL *wheel, GX_RESOURCE_ID normal_text_color, diff --git a/common/src/gx_touch_driver_generic_resistive.c b/common/src/gx_touch_driver_generic_resistive.c index 21820b31..873ac339 100644 --- a/common/src/gx_touch_driver_generic_resistive.c +++ b/common/src/gx_touch_driver_generic_resistive.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,14 +72,6 @@ VOID _gx_touch_driver_generic_resistive_calibrate(GX_RESISTIVE_TOUCH *touch); /* */ /* Internal Logic */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_touch_driver_generic_resistive_pen_down_event_send(GX_RESISTIVE_TOUCH *touch) { @@ -126,17 +119,6 @@ static VOID _gx_touch_driver_generic_resistive_pen_down_event_send(GX_RESISTIVE_ /* */ /* Internal Logic */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* replace usage of abs(), */ -/* resulting in version 6.1.6 */ -/* */ /**************************************************************************/ static VOID _gx_touch_driver_generic_resistive_pen_drag_event_send(GX_RESISTIVE_TOUCH *touch) @@ -191,14 +173,6 @@ static VOID _gx_touch_driver_generic_resistive_pen_drag_event_send(GX_RESISTIVE_ /* */ /* Internal Logic */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_touch_driver_generic_resistive_pen_up_event_send(GX_RESISTIVE_TOUCH *touch) { @@ -248,14 +222,6 @@ static VOID _gx_touch_driver_generic_resistive_pen_up_event_send(GX_RESISTIVE_TO /* */ /* Internal Logic */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_touch_driver_generic_resistive_coord_calculate(GX_RESISTIVE_TOUCH *touch, GX_POINT *raw_coord) @@ -318,14 +284,6 @@ static UINT _gx_touch_driver_generic_resistive_coord_calculate(GX_RESISTIVE_TOUC /* */ /* Application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_touch_driver_generic_resistive_setup(GX_RESISTIVE_TOUCH *touch, GX_RESISTIVE_TOUCH_INFO *info) { @@ -367,14 +325,6 @@ VOID _gx_touch_driver_generic_resistive_setup(GX_RESISTIVE_TOUCH *touch, GX_RESI /* */ /* Internal Logic */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_touch_driver_generic_resistive_calibration_matrix_set(GX_RESISTIVE_TOUCH *touch, GX_POINT *display_points, @@ -449,17 +399,6 @@ static UINT _gx_touch_driver_generic_resistive_calibration_matrix_set(GX_RESISTI /* */ /* Internal Logic */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* replace usage of abs(), */ -/* resulting in version 6.1.6 */ -/* */ /**************************************************************************/ static GX_BOOL _gx_touch_driver_generic_resistive_raw_read(GX_RESISTIVE_TOUCH *touch, GX_POINT *ret_val) { @@ -570,14 +509,6 @@ static GX_BOOL _gx_touch_driver_generic_resistive_raw_read(GX_RESISTIVE_TOUCH *t /* */ /* Internal Logic */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static GX_BOOL _gx_touch_driver_generic_resistive_sample_read(GX_RESISTIVE_TOUCH *touch, GX_POINT *ret_val) { @@ -623,14 +554,6 @@ static GX_BOOL _gx_touch_driver_generic_resistive_sample_read(GX_RESISTIVE_TOUCH /* */ /* Internal logic */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static GX_BOOL _gx_touch_driver_generic_resistive_coordinate_update(GX_RESISTIVE_TOUCH *touch) { @@ -688,14 +611,6 @@ static GX_BOOL _gx_touch_driver_generic_resistive_coordinate_update(GX_RESISTIVE /* */ /* Application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_touch_driver_generic_resistive_update(GX_RESISTIVE_TOUCH *touch) { @@ -755,14 +670,6 @@ VOID _gx_touch_driver_generic_resistive_update(GX_RESISTIVE_TOUCH *touch) /* */ /* Internal Logic */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_touch_driver_generic_resistive_wait_for_touch(GX_RESISTIVE_TOUCH *touch) { @@ -805,14 +712,6 @@ static VOID _gx_touch_driver_generic_resistive_wait_for_touch(GX_RESISTIVE_TOUCH /* */ /* Internal Logic */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_touch_driver_generic_resistive_wait_for_no_touch(GX_RESISTIVE_TOUCH *touch) { @@ -862,15 +761,6 @@ static VOID _gx_touch_driver_generic_resistive_wait_for_no_touch(GX_RESISTIVE_TO /* */ /* Application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* fixed compiler warnings, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_touch_driver_generic_resistive_calibrate(GX_RESISTIVE_TOUCH *touch) { diff --git a/common/src/gx_tree_view_create.c b/common/src/gx_tree_view_create.c index 63e8f4db..90aa54bd 100644 --- a/common/src/gx_tree_view_create.c +++ b/common/src/gx_tree_view_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,15 +67,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* fixed compiler warnings, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_tree_view_create(GX_TREE_VIEW *tree, GX_CONST GX_CHAR *name, GX_WIDGET *parent, ULONG style, USHORT tree_menu_id, GX_CONST GX_RECTANGLE *size) diff --git a/common/src/gx_tree_view_draw.c b/common/src/gx_tree_view_draw.c index 3874c0c0..b0b53143 100644 --- a/common/src/gx_tree_view_draw.c +++ b/common/src/gx_tree_view_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,14 +73,6 @@ /* */ /* _gx_tree_view_root_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_tree_view_root_draw_helper(GX_TREE_VIEW *tree, GX_WIDGET *start, GX_WIDGET *owner) { @@ -252,14 +245,6 @@ GX_WIDGET *pre = GX_NULL; /* */ /* _gx_tree_view_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_tree_view_root_draw(GX_TREE_VIEW *tree) { @@ -358,14 +343,6 @@ GX_WIDGET *owner; /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_tree_view_draw(GX_TREE_VIEW *tree) { diff --git a/common/src/gx_tree_view_event_process.c b/common/src/gx_tree_view_event_process.c index aec03c95..1cbaf0e5 100644 --- a/common/src/gx_tree_view_event_process.c +++ b/common/src/gx_tree_view_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* _gx_tree_menu_pen_down_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static GX_BOOL _tree_view_selected_detect(GX_TREE_VIEW *tree, GX_MENU *test_menu) { @@ -144,14 +137,6 @@ GX_BOOL found = GX_FALSE; /* */ /* _gx_tree_menu_pen_down_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_tree_view_item_find(GX_WIDGET *start, GX_VALUE line_y, GX_WIDGET **returned_item) { @@ -272,14 +257,6 @@ GX_BOOL search_child; /* */ /* _gx_tree_menu_pen_down_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_tree_view_root_icon_rect_get(GX_TREE_VIEW *tree, GX_WIDGET *item, GX_RECTANGLE *root_rect) { @@ -352,14 +329,6 @@ GX_PIXELMAP *map; /* */ /* _gx_tree_view_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_tree_menu_pen_down_event_process(GX_TREE_VIEW *tree, GX_EVENT *event_ptr) { @@ -468,14 +437,6 @@ GX_BOOL check_selection = GX_FALSE; /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_tree_view_event_process(GX_TREE_VIEW *tree, GX_EVENT *event_ptr) { diff --git a/common/src/gx_tree_view_indentation_set.c b/common/src/gx_tree_view_indentation_set.c index a1d509ce..92bc922d 100644 --- a/common/src/gx_tree_view_indentation_set.c +++ b/common/src/gx_tree_view_indentation_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_tree_view_indentation_set(GX_TREE_VIEW *tree, GX_VALUE indentation) { diff --git a/common/src/gx_tree_view_position.c b/common/src/gx_tree_view_position.c index b808aea9..437be9e1 100644 --- a/common/src/gx_tree_view_position.c +++ b/common/src/gx_tree_view_position.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,14 +72,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_tree_view_position(GX_TREE_VIEW *tree) { diff --git a/common/src/gx_tree_view_root_line_color_set.c b/common/src/gx_tree_view_root_line_color_set.c index 417646b5..dc1fd254 100644 --- a/common/src/gx_tree_view_root_line_color_set.c +++ b/common/src/gx_tree_view_root_line_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_tree_view_root_line_color_set(GX_TREE_VIEW *tree, GX_RESOURCE_ID color_id) { diff --git a/common/src/gx_tree_view_root_pixelmap_set.c b/common/src/gx_tree_view_root_pixelmap_set.c index 5e44d98b..afd2c9c3 100644 --- a/common/src/gx_tree_view_root_pixelmap_set.c +++ b/common/src/gx_tree_view_root_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_tree_view_root_pixelmap_set(GX_TREE_VIEW *tree, GX_RESOURCE_ID expand_map_id, GX_RESOURCE_ID collapse_map_id) { diff --git a/common/src/gx_tree_view_scroll.c b/common/src/gx_tree_view_scroll.c index 0342d34b..6b501a22 100644 --- a/common/src/gx_tree_view_scroll.c +++ b/common/src/gx_tree_view_scroll.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_tree_view_scroll(GX_TREE_VIEW *tree, GX_VALUE x_scroll, GX_VALUE y_scroll) { diff --git a/common/src/gx_tree_view_scroll_info_get.c b/common/src/gx_tree_view_scroll_info_get.c index 53e222e0..5ec35e9b 100644 --- a/common/src/gx_tree_view_scroll_info_get.c +++ b/common/src/gx_tree_view_scroll_info_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_tree_view_scroll_info_get(GX_TREE_VIEW *tree, ULONG type, GX_SCROLL_INFO *info) { diff --git a/common/src/gx_tree_view_selected_get.c b/common/src/gx_tree_view_selected_get.c index 2ccbf7c8..b21dd158 100644 --- a/common/src/gx_tree_view_selected_get.c +++ b/common/src/gx_tree_view_selected_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_tree_view_selected_get(GX_TREE_VIEW *tree, GX_WIDGET **selected) { diff --git a/common/src/gx_tree_view_selected_set.c b/common/src/gx_tree_view_selected_set.c index d37dff74..14be4b75 100644 --- a/common/src/gx_tree_view_selected_set.c +++ b/common/src/gx_tree_view_selected_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* _gx_tree_view_selected_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_tree_view_selected_visible(GX_TREE_VIEW *tree) { @@ -131,14 +124,6 @@ GX_MENU_LIST *list; /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_tree_view_selected_set(GX_TREE_VIEW *tree, GX_WIDGET *selected) { diff --git a/common/src/gx_utility_1555xrgb_pixelmap_resize.c b/common/src/gx_utility_1555xrgb_pixelmap_resize.c index de9f4af5..87334327 100644 --- a/common/src/gx_utility_1555xrgb_pixelmap_resize.c +++ b/common/src/gx_utility_1555xrgb_pixelmap_resize.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -73,18 +74,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static UINT _gx_utility_1555xrgb_pixelmap_raw_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) { @@ -250,18 +239,6 @@ GX_COLOR blue; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static UINT _gx_utility_1555xrgb_pixelmap_alpha_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) { @@ -479,14 +456,6 @@ GX_COLOR blue; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_1555xrgb_pixelmap_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) { diff --git a/common/src/gx_utility_1555xrgb_pixelmap_rotate.c b/common/src/gx_utility_1555xrgb_pixelmap_rotate.c index ddf1c29b..b9ffdb46 100644 --- a/common/src/gx_utility_1555xrgb_pixelmap_rotate.c +++ b/common/src/gx_utility_1555xrgb_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -78,14 +79,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_1555xrgb_pixelmap_raw_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -365,14 +358,6 @@ INT xdiff, ydiff; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_1555xrgb_pixelmap_alpha_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -687,14 +672,6 @@ INT xdiff, ydiff; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_1555xrgb_pixelmap_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { diff --git a/common/src/gx_utility_16bpp_pixelmap_resize.c b/common/src/gx_utility_16bpp_pixelmap_resize.c index 4a119786..cb3bbc6a 100644 --- a/common/src/gx_utility_16bpp_pixelmap_resize.c +++ b/common/src/gx_utility_16bpp_pixelmap_resize.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -73,18 +74,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static UINT _gx_utility_16bpp_pixelmap_raw_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) { @@ -250,18 +239,6 @@ GX_COLOR blue; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static UINT _gx_utility_16bpp_pixelmap_alpha_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) { @@ -475,14 +452,6 @@ GX_COLOR blue; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_16bpp_pixelmap_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) { diff --git a/common/src/gx_utility_1bpp_pixelmap_resize.c b/common/src/gx_utility_1bpp_pixelmap_resize.c index acc6920d..24d46020 100644 --- a/common/src/gx_utility_1bpp_pixelmap_resize.c +++ b/common/src/gx_utility_1bpp_pixelmap_resize.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,18 +62,6 @@ /* */ /* _gx_utility_1bpp_pixelmap_resize */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static UINT _gx_utility_1bpp_pixelmap_raw_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) { @@ -195,14 +184,6 @@ INT yy; /* */ /* _gx_utility_1bpp_pixelmap_resize */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_1bpp_pixelmap_transparent_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) { @@ -338,14 +319,6 @@ INT yy; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_1bpp_pixelmap_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) { diff --git a/common/src/gx_utility_1bpp_pixelmap_rotate.c b/common/src/gx_utility_1bpp_pixelmap_rotate.c index 07da000f..cfd9f73b 100644 --- a/common/src/gx_utility_1bpp_pixelmap_rotate.c +++ b/common/src/gx_utility_1bpp_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_1bpp_pixelmap_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -271,14 +264,6 @@ GX_BOOL InputAlpha = GX_FALSE; /* */ /* _gx_utility_1bpp_pixelmap_simple_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_1bpp_pixelmap_simple_raw_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -489,14 +474,6 @@ INT getstride; /* */ /* _gx_utility_1bpp_pixelmap_simple_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_1bpp_pixelmap_simple_transparent_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -737,14 +714,6 @@ INT getstride; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_1bpp_pixelmap_simple_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { diff --git a/common/src/gx_utility_32argb_pixelmap_resize.c b/common/src/gx_utility_32argb_pixelmap_resize.c index 23fa39f5..a20b598d 100644 --- a/common/src/gx_utility_32argb_pixelmap_resize.c +++ b/common/src/gx_utility_32argb_pixelmap_resize.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -73,18 +74,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static UINT _gx_utility_32argb_pixelmap_raw_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) { @@ -248,18 +237,6 @@ INT blue; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static UINT _gx_utility_32argb_pixelmap_alpha_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) { @@ -438,14 +415,6 @@ INT alpha; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_32argb_pixelmap_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) { diff --git a/common/src/gx_utility_32argb_pixelmap_rotate.c b/common/src/gx_utility_32argb_pixelmap_rotate.c index d63d4a3f..cd7b908f 100644 --- a/common/src/gx_utility_32argb_pixelmap_rotate.c +++ b/common/src/gx_utility_32argb_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -80,14 +81,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_32argb_pixelmap_raw_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -358,14 +351,6 @@ INT xdiff, ydiff; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_32argb_pixelmap_alpha_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -622,14 +607,6 @@ INT xdiff, ydiff; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_32argb_pixelmap_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -688,14 +665,6 @@ UINT status; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_32argb_pixelmap_simple_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { diff --git a/common/src/gx_utility_332rgb_pixelmap_rotate.c b/common/src/gx_utility_332rgb_pixelmap_rotate.c index 908ed576..c09ed2c7 100644 --- a/common/src/gx_utility_332rgb_pixelmap_rotate.c +++ b/common/src/gx_utility_332rgb_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -76,14 +77,6 @@ /* */ /* _gx_utility_332rgb_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_332rgb_pixelmap_raw_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -359,14 +352,6 @@ INT xdiff, ydiff; /* */ /* _gx_utility_332rgb_pixelmap_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_332rgb_pixelmap_alpha_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -675,14 +660,6 @@ INT xdiff, ydiff; /* */ /* _gx_utility_332rgb_pixelmap_simple_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_332rgb_pixelmap_simple_raw_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -833,14 +810,6 @@ INT x, y; /* */ /* _gx_utility_332rgb_pixelmap_simple_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_332rgb_pixelmap_simple_alpha_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -1021,14 +990,6 @@ INT x, y; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_332rgb_pixelmap_simple_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -1092,14 +1053,6 @@ UINT status; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_332rgb_pixelmap_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { diff --git a/common/src/gx_utility_4444argb_pixelmap_resize.c b/common/src/gx_utility_4444argb_pixelmap_resize.c index 89bc5d14..493194d7 100644 --- a/common/src/gx_utility_4444argb_pixelmap_resize.c +++ b/common/src/gx_utility_4444argb_pixelmap_resize.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -74,18 +75,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gx_utility_4444argb_pixelmap_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) { diff --git a/common/src/gx_utility_4444argb_pixelmap_rotate.c b/common/src/gx_utility_4444argb_pixelmap_rotate.c index e78d75f2..a02f0b6f 100644 --- a/common/src/gx_utility_4444argb_pixelmap_rotate.c +++ b/common/src/gx_utility_4444argb_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -83,14 +84,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_4444argb_pixelmap_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -372,14 +365,6 @@ INT xdiff, ydiff; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_4444argb_pixelmap_simple_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { diff --git a/common/src/gx_utility_4bpp_pixelmap_resize.c b/common/src/gx_utility_4bpp_pixelmap_resize.c index dd7f2370..2dc053ab 100644 --- a/common/src/gx_utility_4bpp_pixelmap_resize.c +++ b/common/src/gx_utility_4bpp_pixelmap_resize.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,18 +62,6 @@ /* */ /* _gx_utility_4bpp_pixelmap_resize */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static UINT _gx_utility_4bpp_pixelmap_raw_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) { @@ -197,14 +186,6 @@ INT yy; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_4bpp_pixelmap_transparent_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) { @@ -376,14 +357,6 @@ INT yy; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_4bpp_pixelmap_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) { diff --git a/common/src/gx_utility_4bpp_pixelmap_rotate.c b/common/src/gx_utility_4bpp_pixelmap_rotate.c index e147a0e3..06b67e9e 100644 --- a/common/src/gx_utility_4bpp_pixelmap_rotate.c +++ b/common/src/gx_utility_4bpp_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_4bpp_pixelmap_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -307,14 +300,6 @@ GX_BOOL draw = GX_TRUE; /* */ /* _gx_utility_4bpp_pixelmap_simple_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_4bpp_pixelmap_simple_raw_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -532,14 +517,6 @@ INT getstride; /* */ /* _gx_utility_4bpp_pixelmap_simple_rotate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_4bpp_pixelmap_simple_transparent_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -859,14 +836,6 @@ INT getauxstride; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_4bpp_pixelmap_simple_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { diff --git a/common/src/gx_utility_565rgb_pixelmap_rotate.c b/common/src/gx_utility_565rgb_pixelmap_rotate.c index 768e096e..131a07c4 100644 --- a/common/src/gx_utility_565rgb_pixelmap_rotate.c +++ b/common/src/gx_utility_565rgb_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -78,14 +79,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_565rgb_pixelmap_raw_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -361,14 +354,6 @@ INT xdiff, ydiff; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_565rgb_pixelmap_alpha_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -679,14 +664,6 @@ INT xdiff, ydiff; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_565rgb_pixelmap_simple_raw_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -836,14 +813,6 @@ INT x, y; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_565rgb_pixelmap_simple_alpha_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -1028,14 +997,6 @@ INT x, y; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_565rgb_pixelmap_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -1099,14 +1060,6 @@ UINT status; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_565rgb_pixelmap_simple_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { diff --git a/common/src/gx_utility_8bpp_pixelmap_resize.c b/common/src/gx_utility_8bpp_pixelmap_resize.c index a278daf5..0edeb5bc 100644 --- a/common/src/gx_utility_8bpp_pixelmap_resize.c +++ b/common/src/gx_utility_8bpp_pixelmap_resize.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,18 +73,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static UINT _gx_utility_8bpp_pixelmap_raw_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) { @@ -182,18 +171,6 @@ INT yy; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ static UINT _gx_utility_8bpp_pixelmap_alpha_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) { @@ -408,14 +385,6 @@ GX_COLOR blue; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_8bpp_pixelmap_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) { @@ -470,18 +439,6 @@ UINT status; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* removed unused variable */ -/* assignment, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gx_utility_8bit_alphamap_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) { diff --git a/common/src/gx_utility_8bpp_pixelmap_rotate.c b/common/src/gx_utility_8bpp_pixelmap_rotate.c index c8df76a0..e7749725 100644 --- a/common/src/gx_utility_8bpp_pixelmap_rotate.c +++ b/common/src/gx_utility_8bpp_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_8bpp_pixelmap_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -234,14 +227,6 @@ INT xx, yy; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_8bpp_pixelmap_simple_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { @@ -389,14 +374,6 @@ INT x, y; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_8bit_alphamap_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { diff --git a/common/src/gx_utility_alphamap_create.c b/common/src/gx_utility_alphamap_create.c index 3d066d6c..aeb40542 100644 --- a/common/src/gx_utility_alphamap_create.c +++ b/common/src/gx_utility_alphamap_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* _gx_utility_string_to_alphamap */ /* application software */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_alphamap_create(INT width, INT height, GX_PIXELMAP *map) { diff --git a/common/src/gx_utility_bidi_arabic_shaping.c b/common/src/gx_utility_bidi_arabic_shaping.c index 376e790f..8c8794ca 100644 --- a/common/src/gx_utility_bidi_arabic_shaping.c +++ b/common/src/gx_utility_bidi_arabic_shaping.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -250,12 +251,6 @@ static ARABIC_LIGATURE arabic_ligature_table[] = /* */ /* _gx_utility_bidi_arabic_shaping */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_arabic_joining_type_get(ULONG code_point) { @@ -309,12 +304,6 @@ ARABIC_SHAPING *shaping = arabic_shaping_table; /* */ /* _gx_utility_bidi_arabic_shaping */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ static ULONG _gx_utility_bidi_arabic_form_get(ULONG code_point, UINT form_type) { @@ -388,12 +377,6 @@ ARABIC_FORM *entry = GX_NULL; /* */ /* _gx_utility_bidi_arabic_shaping */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ static ULONG _gx_utility_bidi_arabic_ligature_get(ULONG alef, ULONG lam) { @@ -441,12 +424,6 @@ ARABIC_LIGATURE *entry = arabic_ligature_table; /* */ /* _gx_utility_bidi_arabic_shaping */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ static GX_BOOL _gx_utility_bidi_right_joining_causing_test(UINT joining_type) { @@ -491,12 +468,6 @@ static GX_BOOL _gx_utility_bidi_right_joining_causing_test(UINT joining_type) /* */ /* _gx_utility_bidi_arabic_shaping */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ static GX_BOOL _gx_utility_bidi_left_joining_causing_test(UINT joining_type) { @@ -541,12 +512,6 @@ static GX_BOOL _gx_utility_bidi_left_joining_causing_test(UINT joining_type) /* */ /* _gx_utility_bidi_arabic_shaping */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ static GX_BOOL _gx_utility_bidi_arabic_test(GX_BIDI_CONTEXT *context) { @@ -596,12 +561,6 @@ INT index; /* */ /* _gx_utility_bidi_paragraph_reorder */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_bidi_arabic_shaping(GX_BIDI_CONTEXT *context) { diff --git a/common/src/gx_utility_bidi_bracket_pair_get.c b/common/src/gx_utility_bidi_bracket_pair_get.c index 7fc7ac15..c6a5d794 100644 --- a/common/src/gx_utility_bidi_bracket_pair_get.c +++ b/common/src/gx_utility_bidi_bracket_pair_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -124,14 +125,6 @@ static GX_CONST GX_BIDI_BRACKET_PAIR _gx_bidi_bracket_pair[] = /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_bidi_bracket_pair_get(ULONG code, GX_BIDI_BRACKET_PAIR *bracket_pair) { diff --git a/common/src/gx_utility_bidi_character_type_get.c b/common/src/gx_utility_bidi_character_type_get.c index cb023235..04844155 100644 --- a/common/src/gx_utility_bidi_character_type_get.c +++ b/common/src/gx_utility_bidi_character_type_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -1511,14 +1512,6 @@ static GX_CONST GX_BIDI_CHARACTER_INFO _gx_bidi_character_types[] = /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_bidi_character_type_get(ULONG code, GX_UBYTE *type) { diff --git a/common/src/gx_utility_bidi_mirroring_get.c b/common/src/gx_utility_bidi_mirroring_get.c index 9bd2badb..686dca97 100644 --- a/common/src/gx_utility_bidi_mirroring_get.c +++ b/common/src/gx_utility_bidi_mirroring_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -433,14 +434,6 @@ static GX_CONST GX_BIDI_MIRROR _gx_bidi_mirroring[] = /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_bidi_mirroring_get(USHORT code, USHORT *mirror) { diff --git a/common/src/gx_utility_bidi_paragraph_reorder.c b/common/src/gx_utility_bidi_paragraph_reorder.c index 1ab553b1..cb708ead 100644 --- a/common/src/gx_utility_bidi_paragraph_reorder.c +++ b/common/src/gx_utility_bidi_paragraph_reorder.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,18 +71,6 @@ /* */ /* _gx_utility_bidi_paragraph_reorder */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* update with bidi context */ -/* structure change, */ -/* moved a pointer check to */ -/* its caller function, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_buffer_allocate(GX_BIDI_CONTEXT *context) { @@ -245,15 +234,6 @@ GX_BIDI_TEXT_INFO *input_info = context -> gx_bidi_context_input_info; /* */ /* _gx_utility_bidi_paragraph_reorder */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* removed line breaking logic,*/ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_initiate(GX_BIDI_CONTEXT *context) { @@ -322,14 +302,6 @@ GX_BIDI_UNIT *unit; /* _gx_utility_bidi_paragraph_reorder */ /* _gx_utility_bidi_explicit_levels_determine */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_block_level_determine(GX_BIDI_CONTEXT *context, UINT start_index, UINT end_index, GX_UBYTE *level) { @@ -415,14 +387,6 @@ GX_BIDI_UNIT *unit; /* */ /* _gx_utility_bidi_paragraph_reorder */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_explicit_levels_determine(GX_BIDI_CONTEXT *context) { @@ -700,14 +664,6 @@ GX_BIDI_UNIT *unit; /* */ /* _gx_utility_bidi_paragraph_reorder */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_level_runs_compute(GX_BIDI_CONTEXT *context, INT start_index, INT end_index) { @@ -819,14 +775,6 @@ GX_BIDI_UNIT *unit; /* */ /* _gx_utility_bidi_one_isolate_run_sequences_get */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utiltiy_isolate_run_sequence_append(GX_BIDI_CONTEXT *context, INT start_index, INT end_index, GX_BIDI_ISOLATE_RUN *isolate_run) @@ -893,14 +841,6 @@ GX_BIDI_UNIT *unit; /* */ /* _gx_utility_bidi_isolate_run_sequence_get */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_one_isolate_run_sequence_get(GX_BIDI_CONTEXT *context, GX_UBYTE pre_level, GX_BIDI_LEVEL_RUN *level_run, GX_BIDI_ISOLATE_RUN *isolate_run) @@ -1031,14 +971,6 @@ ULONG last_character; /* */ /* _gx_utility_bidi_paragraph_reorder */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_isolate_run_sequences_get(GX_BIDI_CONTEXT *context) { @@ -1151,14 +1083,6 @@ GX_BIDI_UNIT *unit; /* */ /* _gx_utility_bidi_paragraph_reorder */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_weak_type_resolve_1(GX_BIDI_CONTEXT *context, GX_BIDI_ISOLATE_RUN *entry) { @@ -1236,14 +1160,6 @@ GX_BIDI_UNIT *unit; /* */ /* _gx_utility_bidi_paragraph_reorder */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_weak_type_resolve_2_3(GX_BIDI_CONTEXT *context, GX_BIDI_ISOLATE_RUN *entry) { @@ -1319,14 +1235,6 @@ GX_BIDI_UNIT *unit; /* */ /* _gx_utility_bidi_paragraph_reorder */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_weak_type_resolve_4(GX_BIDI_CONTEXT *context, GX_BIDI_ISOLATE_RUN *entry) { @@ -1407,14 +1315,6 @@ GX_BIDI_UNIT *unit; /* */ /* _gx_utility_bidi_paragraph_reorder */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_weak_type_resolve_5(GX_BIDI_CONTEXT *context, GX_BIDI_ISOLATE_RUN *entry) { @@ -1497,14 +1397,6 @@ GX_BIDI_UNIT *unit; /* */ /* _gx_utility_bidi_paragraph_reorder */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_weak_type_resolve_6(GX_BIDI_CONTEXT *context, GX_BIDI_ISOLATE_RUN *entry) { @@ -1563,14 +1455,6 @@ GX_BIDI_UNIT *unit; /* */ /* _gx_utility_bidi_paragraph_reorder */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_weak_type_resolve_7(GX_BIDI_CONTEXT *context, GX_BIDI_ISOLATE_RUN *entry) { @@ -1653,14 +1537,6 @@ GX_BIDI_UNIT *unit; /* */ /* _gx_utility_bidi_neutral_type_resolve_0 */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_bracket_pair_search(GX_BIDI_CONTEXT *context, GX_BIDI_ISOLATE_RUN *entry, INT **return_bracket_pair, INT *return_pair_count) { @@ -1798,14 +1674,6 @@ GX_BIDI_UNIT *unit; /* */ /* _gx_utility_bidi_paragraph_reorder */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_neutral_type_resolve_0(GX_BIDI_CONTEXT *context, GX_BIDI_ISOLATE_RUN *entry) { @@ -2032,14 +1900,6 @@ GX_BIDI_UNIT *unit; /* */ /* _gx_utility_bidi_paragraph_reorder */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_neutral_type_resolve_1(GX_BIDI_CONTEXT *context, GX_BIDI_ISOLATE_RUN *entry) { @@ -2137,14 +1997,6 @@ GX_UBYTE type; /* */ /* _gx_utility_bidi_paragraph_reorder */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_neutral_type_resolve_2(GX_BIDI_CONTEXT *context, GX_BIDI_ISOLATE_RUN *entry) { @@ -2216,14 +2068,6 @@ GX_BIDI_UNIT *unit; /* */ /* _gx_utility_bidi_paragraph_reorder */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_implicit_level_resolve(GX_BIDI_CONTEXT *context, GX_BIDI_ISOLATE_RUN *entry) { @@ -2303,14 +2147,6 @@ GX_BIDI_UNIT *unit; /* */ /* _gx_utility_bidi_paragraph_reorder */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_isolate_run_sequences_resolve(GX_BIDI_CONTEXT *context) { @@ -2427,17 +2263,6 @@ GX_BIDI_ISOLATE_RUN *entry = context -> gx_bidi_context_isolate_runs; /* */ /* _gx_utility_bidi_paragraph_reorder */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-15-2021 Kenneth Maxwell Modified comment(s), */ -/* corrected logic, */ -/* resulting in version 6.1.9 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_reordering_resolve_1(GX_BIDI_CONTEXT *context, INT start_index, INT end_index) { @@ -2553,14 +2378,6 @@ USHORT mirror; /* */ /* _gx_utility_bidi_paragraph_reorder */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_reordering_resolve_2(GX_BIDI_CONTEXT *context, INT start_index, INT end_index) { @@ -2686,12 +2503,6 @@ INT count; /* */ /* _gx_utility_bidi_paragraph_reorder */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_line_break(GX_BIDI_CONTEXT *context) { @@ -2809,16 +2620,6 @@ INT line_index = -1; /* */ /* _gx_utility_bidi_paragraph_reorder */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* update with bidi context */ -/* structure change, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_reordering_resolve(GX_BIDI_CONTEXT *context, GX_BIDI_RESOLVED_TEXT_INFO **resolved_info) { @@ -2957,21 +2758,6 @@ GX_BIDI_RESOLVED_TEXT_INFO *bidi_text; /* */ /* _gx_utility_bidi_paragraph_reorder */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), modified */ -/* line breaking logic, */ -/* supported Arabic shaping, */ -/* updated with resolved text */ -/* info structure change, */ -/* resulting in version 6.1 */ -/* 01-31-2022 Kenneth Maxwell Modified comment(s), modified */ -/* base level set logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ static UINT _gx_utility_bidi_one_paragraph_reorder(GX_BIDI_TEXT_INFO *input_info, GX_BIDI_RESOLVED_TEXT_INFO **resolved_info, UINT *processed_size) { @@ -3093,16 +2879,6 @@ GX_BIDI_CONTEXT context; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* made this function a public */ -/* api, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ UINT _gx_utility_bidi_paragraph_reorder(GX_BIDI_TEXT_INFO *input_info, GX_BIDI_RESOLVED_TEXT_INFO **resolved_info_head) { @@ -3142,12 +2918,6 @@ UINT _gx_utility_bidi_paragraph_reorder(GX_BIDI_TEXT_INFO *input_info, GX_BIDI_R /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 01-31-2022 Ting Zhu Initial Version 6.1.10 */ -/* */ /**************************************************************************/ UINT _gx_utility_bidi_paragraph_reorder_ext(GX_BIDI_TEXT_INFO *input_info, GX_BIDI_RESOLVED_TEXT_INFO **resolved_info_head) { diff --git a/common/src/gx_utility_bidi_resolved_text_info_delete.c b/common/src/gx_utility_bidi_resolved_text_info_delete.c index 77c233a5..f28ee948 100644 --- a/common/src/gx_utility_bidi_resolved_text_info_delete.c +++ b/common/src/gx_utility_bidi_resolved_text_info_delete.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,14 +58,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ #if defined(GX_DYNAMIC_BIDI_TEXT_SUPPORT) UINT _gx_utility_bidi_resolved_text_info_delete(GX_BIDI_RESOLVED_TEXT_INFO **resolved_info_head) diff --git a/common/src/gx_utility_canvas_to_bmp.c b/common/src/gx_utility_canvas_to_bmp.c index f9f10ad9..ac1dcd3b 100644 --- a/common/src/gx_utility_canvas_to_bmp.c +++ b/common/src/gx_utility_canvas_to_bmp.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -84,14 +85,6 @@ typedef struct bmp_info_struct /* */ /* _gx_utility_canvas_to_bmp */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_write_bitmap_header(GX_CANVAS *canvas, GX_RECTANGLE *rect, UINT (*write_data)(GX_UBYTE *byte_data, UINT data_count)) { @@ -327,14 +320,6 @@ INT blue; /* */ /* _gx_utility_canvas_to_bmp */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static void _gx_utility_write_bitmap_data_32bpp(GX_CANVAS *canvas, GX_RECTANGLE *rect, UINT (*write_data)(GX_UBYTE *byte_data, UINT data_count)) { @@ -391,14 +376,6 @@ INT y; /* */ /* _gx_utility_canvas_to_bmp */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static void _gx_utility_write_bitmap_data_16bpp(GX_CANVAS *canvas, GX_RECTANGLE *rect, UINT (*write_data)(GX_UBYTE *byte_data, UINT data_count)) { @@ -462,14 +439,6 @@ INT width; /* */ /* _gx_utility_canvas_to_bmp */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static void _gx_utility_write_bitmap_data_8bpp(GX_CANVAS *canvas, GX_RECTANGLE *rect, UINT (*write_data)(GX_UBYTE *byte_data, UINT data_count)) { @@ -540,14 +509,6 @@ INT fixed_count; /* */ /* _gx_utility_canvas_to_bmp */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static void _gx_utility_write_bitmap_data_4bpp(GX_CANVAS *canvas, GX_RECTANGLE *rect, UINT (*write_data)(GX_UBYTE *byte_data, UINT data_count)) { @@ -647,14 +608,6 @@ INT row_count; /* */ /* _gx_utility_canvas_to_bmp */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static void _gx_utility_write_bitmap_data_monochrome(GX_CANVAS *canvas, GX_RECTANGLE *rect, UINT (*write_data)(GX_UBYTE *byte_data, UINT data_count)) { @@ -768,14 +721,6 @@ GX_UBYTE color = 0; /* */ /* _gxe_utility_canvas_to_bmp Error checking function */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_canvas_to_bmp(GX_CANVAS *canvas, GX_RECTANGLE *rect, UINT (*write_data)(GX_UBYTE *byte_data, UINT data_count)) { diff --git a/common/src/gx_utility_circle_point_get.c b/common/src/gx_utility_circle_point_get.c index d236c1a6..9945a7f9 100644 --- a/common/src/gx_utility_circle_point_get.c +++ b/common/src/gx_utility_circle_point_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_circle_point_get(INT xcenter, INT ycenter, UINT r, INT angle, GX_POINT *point) { diff --git a/common/src/gx_utility_easing_function_calculate.c b/common/src/gx_utility_easing_function_calculate.c index aad41795..605919be 100644 --- a/common/src/gx_utility_easing_function_calculate.c +++ b/common/src/gx_utility_easing_function_calculate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -90,14 +91,6 @@ static UINT _gx_utility_pow_0_10_table[501] = { /* */ /* _gx_utility_easing_function_calculate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_EXPO_ELASTIC_EASING_SUPPORT) static INT _gx_utility_pow_0_10(INT b) @@ -142,14 +135,6 @@ static INT _gx_utility_pow_0_10(INT b) /* */ /* _gx_utility_easing_function_calculate */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_utility_bounce_ease_out(INT t, INT d, INT *return_tt, INT *return_dd) { @@ -225,14 +210,6 @@ INT dd; /* */ /* _gx_system_timer_update Update active system timers */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_easing_function_calculate(USHORT easing_function_type, INT start_val, INT end_val, INT t, INT d, INT *current_val) { diff --git a/common/src/gx_utility_gradient_create.c b/common/src/gx_utility_gradient_create.c index 5f998d19..6ae5ef2f 100644 --- a/common/src/gx_utility_gradient_create.c +++ b/common/src/gx_utility_gradient_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* _gx_utility_gradient_create */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static GX_BOOL _gx_utility_gradient_find(GX_GRADIENT *gradient) { @@ -123,14 +116,6 @@ GX_GRADIENT *search = _gx_system_gradient_list; /* */ /* _gx_utility_gradient_create */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_horizontal_alpha_gradient_create(GX_GRADIENT *gradient) { @@ -223,14 +208,6 @@ GX_UBYTE *data_start = (GX_UBYTE *)gradient -> gx_gradient_pixelmap.gx_pixelmap_ /* */ /* _gx_utility_gradient_create */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static UINT _gx_utility_vertical_alpha_gradient_create(GX_GRADIENT *gradient) { @@ -309,17 +286,6 @@ GX_UBYTE *data = (GX_UBYTE *)gradient -> gx_gradient_pixelmap.gx_pixelmap_data; /* */ /* _gx_text_scroll_wheel_gradient_create */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), removed */ -/* errant comment, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ UINT _gx_utility_gradient_create(GX_GRADIENT *gradient, GX_VALUE width, GX_VALUE height, UCHAR type, GX_UBYTE alpha_start, GX_UBYTE alpha_end) diff --git a/common/src/gx_utility_gradient_delete.c b/common/src/gx_utility_gradient_delete.c index 0d23f5a4..97d3275b 100644 --- a/common/src/gx_utility_gradient_delete.c +++ b/common/src/gx_utility_gradient_delete.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -53,14 +54,6 @@ /* */ /* CALLED BY */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_gradient_delete(GX_GRADIENT *gradient) { diff --git a/common/src/gx_utility_ltoa.c b/common/src/gx_utility_ltoa.c index 9bcb596f..8a9b9fc3 100644 --- a/common/src/gx_utility_ltoa.c +++ b/common/src/gx_utility_ltoa.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_ltoa(LONG value, GX_CHAR *return_buffer, UINT return_buffer_size) { diff --git a/common/src/gx_utility_math_acos.c b/common/src/gx_utility_math_acos.c index b88d7d13..96de60d8 100644 --- a/common/src/gx_utility_math_acos.c +++ b/common/src/gx_utility_math_acos.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GUIX_5_4_0_COMPATIBILITY) INT _gx_utility_math_acos_5_4_0(INT x) @@ -114,14 +107,6 @@ INT _gx_utility_math_acos_5_4_0(INT x) /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ INT _gx_utility_math_acos(GX_FIXED_VAL x) { diff --git a/common/src/gx_utility_math_asin.c b/common/src/gx_utility_math_asin.c index 96f14c63..a8d7f94d 100644 --- a/common/src/gx_utility_math_asin.c +++ b/common/src/gx_utility_math_asin.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -80,14 +81,6 @@ static GX_CONST GX_UBYTE asin_angle_value_table[] = { /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GUIX_5_4_0_COMPATIBILITY) INT _gx_utility_math_asin_5_4_0(INT x) @@ -149,14 +142,6 @@ INT angle = 0; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ INT _gx_utility_math_asin(GX_FIXED_VAL x) { diff --git a/common/src/gx_utility_math_cos.c b/common/src/gx_utility_math_cos.c index 46416550..9204b1ad 100644 --- a/common/src/gx_utility_math_cos.c +++ b/common/src/gx_utility_math_cos.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GUIX_5_4_0_COMPATIBILITY) INT _gx_utility_math_cos_5_4_0(INT angle) @@ -116,14 +109,6 @@ INT _gx_utility_math_cos_5_4_0(INT angle) /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_FIXED_VAL _gx_utility_math_cos(GX_FIXED_VAL angle) { diff --git a/common/src/gx_utility_math_sin.c b/common/src/gx_utility_math_sin.c index ef87e5cf..11d31ff4 100644 --- a/common/src/gx_utility_math_sin.c +++ b/common/src/gx_utility_math_sin.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -88,14 +89,6 @@ static GX_CONST GX_UBYTE sin_value_table[360] = { /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GUIX_5_4_0_COMPATIBILITY) INT _gx_utility_math_sin_5_4_0(INT angle) @@ -187,14 +180,6 @@ INT sine; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_FIXED_VAL _gx_utility_math_sin(GX_FIXED_VAL angle) { diff --git a/common/src/gx_utility_math_sqrt.c b/common/src/gx_utility_math_sqrt.c index ed1df3f4..4f76e8dd 100644 --- a/common/src/gx_utility_math_sqrt.c +++ b/common/src/gx_utility_math_sqrt.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -81,14 +82,6 @@ static GX_CONST GX_UBYTE sqrt_table[256] = { /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_math_sqrt(UINT value) diff --git a/common/src/gx_utility_pixelmap_resize.c b/common/src/gx_utility_pixelmap_resize.c index dbce741a..81f7e619 100644 --- a/common/src/gx_utility_pixelmap_resize.c +++ b/common/src/gx_utility_pixelmap_resize.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,18 +69,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added 565bgr format support,*/ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), added */ -/* display rotation support, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ UINT _gx_utility_pixelmap_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) { diff --git a/common/src/gx_utility_pixelmap_rotate.c b/common/src/gx_utility_pixelmap_rotate.c index 1ac9cdcc..2ca4f62a 100644 --- a/common/src/gx_utility_pixelmap_rotate.c +++ b/common/src/gx_utility_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,18 +73,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added 565bgr format support,*/ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), added */ -/* display rotation support, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ UINT _gx_utility_pixelmap_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { diff --git a/common/src/gx_utility_pixelmap_simple_rotate.c b/common/src/gx_utility_pixelmap_simple_rotate.c index 4e7ddb06..d65c791a 100644 --- a/common/src/gx_utility_pixelmap_simple_rotate.c +++ b/common/src/gx_utility_pixelmap_simple_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -86,15 +87,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added 565bgr format support,*/ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_pixelmap_simple_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { diff --git a/common/src/gx_utility_rectangle_center.c b/common/src/gx_utility_rectangle_center.c index 48c54f7a..2864539c 100644 --- a/common/src/gx_utility_rectangle_center.c +++ b/common/src/gx_utility_rectangle_center.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_rectangle_center(GX_RECTANGLE *rectangle, GX_RECTANGLE *within) { diff --git a/common/src/gx_utility_rectangle_center_find.c b/common/src/gx_utility_rectangle_center_find.c index 326e14b3..a9ec5fdf 100644 --- a/common/src/gx_utility_rectangle_center_find.c +++ b/common/src/gx_utility_rectangle_center_find.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_rectangle_center_find(GX_RECTANGLE *rectangle, GX_POINT *return_center) diff --git a/common/src/gx_utility_rectangle_combine.c b/common/src/gx_utility_rectangle_combine.c index d1cb48df..882b05a7 100644 --- a/common/src/gx_utility_rectangle_combine.c +++ b/common/src/gx_utility_rectangle_combine.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_rectangle_combine(GX_RECTANGLE *first_rectangle, GX_RECTANGLE *second_rectangle) { diff --git a/common/src/gx_utility_rectangle_compare.c b/common/src/gx_utility_rectangle_compare.c index 08bea172..9d42269f 100644 --- a/common/src/gx_utility_rectangle_compare.c +++ b/common/src/gx_utility_rectangle_compare.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_BOOL _gx_utility_rectangle_compare(GX_RECTANGLE *first_rectangle, GX_RECTANGLE *second_rectangle) { diff --git a/common/src/gx_utility_rectangle_define.c b/common/src/gx_utility_rectangle_define.c index 6cefde4c..45607088 100644 --- a/common/src/gx_utility_rectangle_define.c +++ b/common/src/gx_utility_rectangle_define.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_rectangle_define(GX_RECTANGLE *rectangle, GX_VALUE left, GX_VALUE top, GX_VALUE right, GX_VALUE bottom) diff --git a/common/src/gx_utility_rectangle_inside_detect.c b/common/src/gx_utility_rectangle_inside_detect.c index 9995bb2d..ceb75eae 100644 --- a/common/src/gx_utility_rectangle_inside_detect.c +++ b/common/src/gx_utility_rectangle_inside_detect.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_BOOL _gx_utility_rectangle_inside_detect(GX_RECTANGLE *outer, GX_RECTANGLE *inner) { diff --git a/common/src/gx_utility_rectangle_overlap_detect.c b/common/src/gx_utility_rectangle_overlap_detect.c index 5d9e69c9..a169e21c 100644 --- a/common/src/gx_utility_rectangle_overlap_detect.c +++ b/common/src/gx_utility_rectangle_overlap_detect.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_BOOL _gx_utility_rectangle_overlap_detect(GX_RECTANGLE *first_rectangle, GX_RECTANGLE *second_rectangle, GX_RECTANGLE *return_overlap_area) diff --git a/common/src/gx_utility_rectangle_point_detect.c b/common/src/gx_utility_rectangle_point_detect.c index ed393422..c6a10ed5 100644 --- a/common/src/gx_utility_rectangle_point_detect.c +++ b/common/src/gx_utility_rectangle_point_detect.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_BOOL _gx_utility_rectangle_point_detect(GX_RECTANGLE *rectangle, GX_POINT point) { diff --git a/common/src/gx_utility_rectangle_resize.c b/common/src/gx_utility_rectangle_resize.c index 665901d6..8a76d1c7 100644 --- a/common/src/gx_utility_rectangle_resize.c +++ b/common/src/gx_utility_rectangle_resize.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_rectangle_resize(GX_RECTANGLE *rectangle, GX_VALUE adjust) { diff --git a/common/src/gx_utility_rectangle_shift.c b/common/src/gx_utility_rectangle_shift.c index 1e9f70bb..b29f5d63 100644 --- a/common/src/gx_utility_rectangle_shift.c +++ b/common/src/gx_utility_rectangle_shift.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_rectangle_shift(GX_RECTANGLE *rectangle, GX_VALUE x_shift, GX_VALUE y_shift) { diff --git a/common/src/gx_utility_string_compare.c b/common/src/gx_utility_string_compare.c index 901e20c9..6043b370 100644 --- a/common/src/gx_utility_string_compare.c +++ b/common/src/gx_utility_string_compare.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,12 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ GX_BOOL _gx_utility_string_compare(GX_CONST GX_STRING *string_1, GX_CONST GX_STRING *string_2, UINT count) { diff --git a/common/src/gx_utility_string_length_check.c b/common/src/gx_utility_string_length_check.c index 1c4b2dc1..36ed350e 100644 --- a/common/src/gx_utility_string_length_check.c +++ b/common/src/gx_utility_string_length_check.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_utility_string_length_check(GX_CONST GX_CHAR *input_string, UINT *string_length, UINT max_string_length) { diff --git a/common/src/gx_utility_string_to_alphamap.c b/common/src/gx_utility_string_to_alphamap.c index 8a9b761b..1f72f8ce 100644 --- a/common/src/gx_utility_string_to_alphamap.c +++ b/common/src/gx_utility_string_to_alphamap.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -76,17 +77,6 @@ /* */ /* Application Software */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), added */ -/* display rotation support, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_utility_string_to_alphamap(GX_CONST GX_CHAR *text, GX_CONST GX_FONT *font, GX_PIXELMAP *textmap) @@ -146,17 +136,6 @@ GX_STRING string; /* */ /* Application Software */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), added */ -/* display rotation support, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ UINT _gx_utility_string_to_alphamap_ext(GX_CONST GX_STRING *string, GX_CONST GX_FONT *font, GX_PIXELMAP *textmap) { @@ -289,17 +268,6 @@ UINT glyph_len; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), added */ -/* display rotation support, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_utility_glyph_8bpp_to_alphamap_draw(GX_PIXELMAP *map, INT xpos, INT ypos, GX_CONST GX_GLYPH *glyph) { @@ -393,17 +361,6 @@ USHORT write_stride; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), added */ -/* display rotation support, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_utility_glyph_4bpp_to_alphamap_draw(GX_PIXELMAP *map, INT xpos, INT ypos, GX_CONST GX_GLYPH *glyph) { @@ -509,21 +466,6 @@ GX_UBYTE data; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), added */ -/* display rotation support, */ -/* resulting in version 6.1.3 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), added */ -/* rename RENESAS_DAVE2D */ -/* support conditional, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ #if defined(GX_RENESAS_DAVE2D_FONT_SUPPORT) VOID _gx_utility_glyph_reversed_4bpp_to_alphamap_draw(GX_PIXELMAP *map, INT xpos, INT ypos, GX_CONST GX_GLYPH *glyph) @@ -633,17 +575,6 @@ GX_UBYTE data; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), added */ -/* display rotation support, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_utility_glyph_1bpp_to_alphamap_draw(GX_PIXELMAP *map, INT xpos, INT ypos, GX_CONST GX_GLYPH *glyph) { @@ -796,21 +727,6 @@ GX_UBYTE mask; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), added */ -/* display rotation support, */ -/* resulting in version 6.1.3 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* rename RENESAS_DAVE2D */ -/* support conditional, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ #if defined(GX_RENESAS_DAVE2D_FONT_SUPPORT) VOID _gx_utility_glyph_reversed_1bpp_to_alphamap_draw(GX_PIXELMAP *map, INT xpos, INT ypos, GX_CONST GX_GLYPH *glyph) @@ -969,21 +885,6 @@ GX_UBYTE mask; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), added */ -/* display rotation support, */ -/* resulting in version 6.1.3 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* rename RENESAS_DAVE2D */ -/* support conditional, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ VOID _gx_utility_string_to_alphamap_draw(GX_CONST GX_STRING *string, GX_CONST GX_FONT *font, GX_PIXELMAP *map) { diff --git a/common/src/gx_utility_thai_glyph_shaping.c b/common/src/gx_utility_thai_glyph_shaping.c index 3dc801b0..c892b723 100644 --- a/common/src/gx_utility_thai_glyph_shaping.c +++ b/common/src/gx_utility_thai_glyph_shaping.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,14 +73,6 @@ /* */ /* _gx_utility_thai_glyph_shaping */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_THAI_GLYPH_SHAPING_SUPPORT static UINT _gx_utility_thai_utf8_to_unicode(GX_CONST GX_STRING *string, GX_CHAR_CODE **returned_code_list, UINT *returned_code_count) @@ -181,14 +174,6 @@ GX_BOOL is_thai_string = GX_FALSE; /* */ /* _gx_utility_thai_glyph_shaping */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_THAI_GLYPH_SHAPING_SUPPORT static UINT _gx_utility_thai_glyph_class_type_get(ULONG code, GX_UBYTE *return_type) @@ -272,14 +257,6 @@ GX_UBYTE type; /* */ /* Application Software */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_THAI_GLYPH_SHAPING_SUPPORT UINT _gx_utility_thai_glyph_shaping(GX_CONST GX_STRING *string, GX_CHAR_CODE **returned_code_list, UINT *returned_code_count) diff --git a/common/src/gx_utility_unicode_to_utf8.c b/common/src/gx_utility_unicode_to_utf8.c index 86582e27..42fe321b 100644 --- a/common/src/gx_utility_unicode_to_utf8.c +++ b/common/src/gx_utility_unicode_to_utf8.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,14 +58,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_UTF8_SUPPORT UINT _gx_utility_unicode_to_utf8(ULONG unicode, GX_UBYTE *return_utf8_str, UINT *return_utf8_size) diff --git a/common/src/gx_utility_utf8_string_backward_character_length_get.c b/common/src/gx_utility_utf8_string_backward_character_length_get.c index 194534c7..42f8c9dd 100644 --- a/common/src/gx_utility_utf8_string_backward_character_length_get.c +++ b/common/src/gx_utility_utf8_string_backward_character_length_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_UTF8_SUPPORT UINT _gx_utility_utf8_string_backward_character_length_get(GX_STRING *string, INT start_index, UINT *glyph_len) diff --git a/common/src/gx_utility_utf8_string_character_get.c b/common/src/gx_utility_utf8_string_character_get.c index efe4fa98..0c4d9b38 100644 --- a/common/src/gx_utility_utf8_string_character_get.c +++ b/common/src/gx_utility_utf8_string_character_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* _gx_system_string_width_get */ /* _gx_display_driver_indexed_color_text_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_UTF8_SUPPORT UINT _gx_utility_utf8_string_character_get(GX_STRING *utf8_str, GX_CHAR_CODE *glyph_value, UINT *glyph_len) diff --git a/common/src/gx_vertical_list_children_position.c b/common/src/gx_vertical_list_children_position.c index 3df15f09..e0a527ff 100644 --- a/common/src/gx_vertical_list_children_position.c +++ b/common/src/gx_vertical_list_children_position.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_vertical_list_children_position(GX_VERTICAL_LIST *vertical_list) { diff --git a/common/src/gx_vertical_list_create.c b/common/src/gx_vertical_list_create.c index c18877c7..b9894d25 100644 --- a/common/src/gx_vertical_list_create.c +++ b/common/src/gx_vertical_list_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,18 +71,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* initialized new vertical */ -/* list control block member, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT _gx_vertical_list_create(GX_VERTICAL_LIST *vertical_list, GX_CONST GX_CHAR *name, diff --git a/common/src/gx_vertical_list_down_wrap.c b/common/src/gx_vertical_list_down_wrap.c index 2fbfc891..a849d1a5 100644 --- a/common/src/gx_vertical_list_down_wrap.c +++ b/common/src/gx_vertical_list_down_wrap.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_vertical_list_down_wrap(GX_VERTICAL_LIST *list) { diff --git a/common/src/gx_vertical_list_event_process.c b/common/src/gx_vertical_list_event_process.c index e6a82ae5..07abe3e8 100644 --- a/common/src/gx_vertical_list_event_process.c +++ b/common/src/gx_vertical_list_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -78,18 +79,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 07-29-2022 Kenneth Maxwell Modified comment(s), */ -/* fixed bug in EVENT_PEN_DRAG */ -/* handler, */ -/* resulting in version 6.1.12 */ -/* */ /**************************************************************************/ UINT _gx_vertical_list_event_process(GX_VERTICAL_LIST *list, GX_EVENT *event_ptr) { diff --git a/common/src/gx_vertical_list_page_index_set.c b/common/src/gx_vertical_list_page_index_set.c index 4c34e964..3cda7c2f 100644 --- a/common/src/gx_vertical_list_page_index_set.c +++ b/common/src/gx_vertical_list_page_index_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* _gx_vertical_list_selected_set Process drop list event */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_vertical_list_page_index_set(GX_VERTICAL_LIST *list, INT index) { diff --git a/common/src/gx_vertical_list_scroll.c b/common/src/gx_vertical_list_scroll.c index 6936736e..90d2b71c 100644 --- a/common/src/gx_vertical_list_scroll.c +++ b/common/src/gx_vertical_list_scroll.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,12 +63,6 @@ /* */ /* _gx_vertical_list_scroll */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 08-02-2021 Ting Zhu Initial Version 6.1.8 */ -/* */ /**************************************************************************/ static VOID _gx_vertical_list_invisible_page_scroll(GX_VERTICAL_LIST *list, INT num_pages) { @@ -177,17 +172,6 @@ INT maximum_scroll_pages; /* */ /* _gx_vertical_list_event_process Vertical list event process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 08-02-2021 Ting Zhu Modified comment(s), */ -/* fixed scroll overflow issue,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ VOID _gx_vertical_list_scroll(GX_VERTICAL_LIST *list, INT amount) { diff --git a/common/src/gx_vertical_list_scroll_info_get.c b/common/src/gx_vertical_list_scroll_info_get.c index 229c5497..3be12e0e 100644 --- a/common/src/gx_vertical_list_scroll_info_get.c +++ b/common/src/gx_vertical_list_scroll_info_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,18 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2023 Ting Zhu Modified comments(s), */ -/* improved the calculation of */ -/* the maximum scrolling value.*/ -/* resulting in version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_vertical_list_scroll_info_get(GX_VERTICAL_LIST *list, ULONG style, GX_SCROLL_INFO *info) { diff --git a/common/src/gx_vertical_list_selected_index_get.c b/common/src/gx_vertical_list_selected_index_get.c index ee8e2cc8..96d68288 100644 --- a/common/src/gx_vertical_list_selected_index_get.c +++ b/common/src/gx_vertical_list_selected_index_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_vertical_list_selected_index_get(GX_VERTICAL_LIST *vertical_list, INT *return_index) diff --git a/common/src/gx_vertical_list_selected_set.c b/common/src/gx_vertical_list_selected_set.c index c946733e..06595e95 100644 --- a/common/src/gx_vertical_list_selected_set.c +++ b/common/src/gx_vertical_list_selected_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,17 +68,6 @@ /* Application Code */ /* _gx_drop_list_event_process Process drop list event */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 07-29-2022 Kenneth Maxwell Added support for GX_STYLE_ */ -/* REPEAT_SELECT, */ -/* resulting in version 6.1.12 */ -/* */ /**************************************************************************/ UINT _gx_vertical_list_selected_set(GX_VERTICAL_LIST *vertical_list, INT index) { diff --git a/common/src/gx_vertical_list_selected_visible.c b/common/src/gx_vertical_list_selected_visible.c index 10eded91..f0648f3c 100644 --- a/common/src/gx_vertical_list_selected_visible.c +++ b/common/src/gx_vertical_list_selected_visible.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* _gx_vertical_list_selected_set */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_vertical_list_selected_visible(GX_VERTICAL_LIST *list, GX_WIDGET *child) { diff --git a/common/src/gx_vertical_list_selected_widget_get.c b/common/src/gx_vertical_list_selected_widget_get.c index 6264a810..a0c70e02 100644 --- a/common/src/gx_vertical_list_selected_widget_get.c +++ b/common/src/gx_vertical_list_selected_widget_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_vertical_list_selected_widget_get(GX_VERTICAL_LIST *vertical_list, GX_WIDGET **return_list_entry) diff --git a/common/src/gx_vertical_list_slide_back_check.c b/common/src/gx_vertical_list_slide_back_check.c index 4731604c..2be63f38 100644 --- a/common/src/gx_vertical_list_slide_back_check.c +++ b/common/src/gx_vertical_list_slide_back_check.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_vertical_list_slide_back_check(GX_VERTICAL_LIST *list) { diff --git a/common/src/gx_vertical_list_total_rows_set.c b/common/src/gx_vertical_list_total_rows_set.c index c427e62a..ff0afbdf 100644 --- a/common/src/gx_vertical_list_total_rows_set.c +++ b/common/src/gx_vertical_list_total_rows_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,17 +68,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT _gx_vertical_list_total_rows_set(GX_VERTICAL_LIST *list, INT count) { diff --git a/common/src/gx_vertical_list_up_wrap.c b/common/src/gx_vertical_list_up_wrap.c index 4be5e438..9b0d6eda 100644 --- a/common/src/gx_vertical_list_up_wrap.c +++ b/common/src/gx_vertical_list_up_wrap.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* */ /* _gx_vertical_list_scroll Vertical list scroll function */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_vertical_list_up_wrap(GX_VERTICAL_LIST *list) { diff --git a/common/src/gx_vertical_scrollbar_create.c b/common/src/gx_vertical_scrollbar_create.c index 8a3c8f17..5a4a3584 100644 --- a/common/src/gx_vertical_scrollbar_create.c +++ b/common/src/gx_vertical_scrollbar_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -77,14 +78,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_vertical_scrollbar_create(GX_SCROLLBAR *scrollbar, GX_CONST GX_CHAR *name, GX_WINDOW *parent, GX_SCROLLBAR_APPEARANCE *appearance, ULONG style) diff --git a/common/src/gx_widget_allocate.c b/common/src/gx_widget_allocate.c index 903c088a..f51a0315 100644 --- a/common/src/gx_widget_allocate.c +++ b/common/src/gx_widget_allocate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_allocate(GX_WIDGET **widget, ULONG memsize) { diff --git a/common/src/gx_widget_attach.c b/common/src/gx_widget_attach.c index 3ceb2bb9..5cba1ae6 100644 --- a/common/src/gx_widget_attach.c +++ b/common/src/gx_widget_attach.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_attach(GX_WIDGET *parent, GX_WIDGET *child) diff --git a/common/src/gx_widget_back_attach.c b/common/src/gx_widget_back_attach.c index 627df461..895a686d 100644 --- a/common/src/gx_widget_back_attach.c +++ b/common/src/gx_widget_back_attach.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_back_attach(GX_WIDGET *parent, GX_WIDGET *child) diff --git a/common/src/gx_widget_back_link.c b/common/src/gx_widget_back_link.c index 78d478db..5058bb64 100644 --- a/common/src/gx_widget_back_link.c +++ b/common/src/gx_widget_back_link.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_widget_back_link(GX_WIDGET *parent, GX_WIDGET *widget) { diff --git a/common/src/gx_widget_back_move.c b/common/src/gx_widget_back_move.c index 49ece973..d68e04b8 100644 --- a/common/src/gx_widget_back_move.c +++ b/common/src/gx_widget_back_move.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_back_move(GX_WIDGET *widget, GX_BOOL *widget_moved) { diff --git a/common/src/gx_widget_background_draw.c b/common/src/gx_widget_background_draw.c index 2366a260..8bc3b7e5 100644 --- a/common/src/gx_widget_background_draw.c +++ b/common/src/gx_widget_background_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_widget_background_draw(GX_WIDGET *widget) { diff --git a/common/src/gx_widget_block_move.c b/common/src/gx_widget_block_move.c index 5555f7f7..b5fa9595 100644 --- a/common/src/gx_widget_block_move.c +++ b/common/src/gx_widget_block_move.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,14 +71,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_block_move(GX_WIDGET *widget, GX_RECTANGLE *block, INT x_shift, INT y_shift) { diff --git a/common/src/gx_widget_border_draw.c b/common/src/gx_widget_border_draw.c index 84bee207..638b9cf6 100644 --- a/common/src/gx_widget_border_draw.c +++ b/common/src/gx_widget_border_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -76,14 +77,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_widget_border_draw(GX_WIDGET *widget, GX_RESOURCE_ID border_color, diff --git a/common/src/gx_widget_border_style_set.c b/common/src/gx_widget_border_style_set.c index 36cd8fd3..da5c0c1c 100644 --- a/common/src/gx_widget_border_style_set.c +++ b/common/src/gx_widget_border_style_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -56,14 +57,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_border_style_set(GX_WIDGET *widget, ULONG Style) { diff --git a/common/src/gx_widget_border_width_get.c b/common/src/gx_widget_border_width_get.c index da8085b4..b4a6580e 100644 --- a/common/src/gx_widget_border_width_get.c +++ b/common/src/gx_widget_border_width_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* Application Code */ /* GUIX draw functions */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_border_width_get(GX_WIDGET *widget, GX_VALUE *return_width) { diff --git a/common/src/gx_widget_canvas_get.c b/common/src/gx_widget_canvas_get.c index 510e21e0..337e7628 100644 --- a/common/src/gx_widget_canvas_get.c +++ b/common/src/gx_widget_canvas_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_canvas_get(GX_WIDGET *widget, GX_CANVAS **return_canvas) { diff --git a/common/src/gx_widget_child_clipping_update.c b/common/src/gx_widget_child_clipping_update.c index 942f8f12..cf2586aa 100644 --- a/common/src/gx_widget_child_clipping_update.c +++ b/common/src/gx_widget_child_clipping_update.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* GUIX Internal Code */ /* GUIX application code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_widget_child_clipping_update(GX_WIDGET *parent) { diff --git a/common/src/gx_widget_child_detect.c b/common/src/gx_widget_child_detect.c index 8291f3d9..915f4a3c 100644 --- a/common/src/gx_widget_child_detect.c +++ b/common/src/gx_widget_child_detect.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* GUIX Internal Code */ /* GUIX application code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_child_detect(GX_WIDGET *parent, GX_WIDGET *child, GX_BOOL *return_detect) { diff --git a/common/src/gx_widget_child_focus_assign.c b/common/src/gx_widget_child_focus_assign.c index 2b8c45b8..ae0517dc 100644 --- a/common/src/gx_widget_child_focus_assign.c +++ b/common/src/gx_widget_child_focus_assign.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_widget_child_focus_assign(GX_WIDGET *parent) { diff --git a/common/src/gx_widget_children_draw.c b/common/src/gx_widget_children_draw.c index 4968f599..b5fde514 100644 --- a/common/src/gx_widget_children_draw.c +++ b/common/src/gx_widget_children_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_widget_children_draw(GX_WIDGET *widget) { diff --git a/common/src/gx_widget_children_event_process.c b/common/src/gx_widget_children_event_process.c index 759776fe..c93b5b3e 100644 --- a/common/src/gx_widget_children_event_process.c +++ b/common/src/gx_widget_children_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_widget_children_event_process(GX_WIDGET *widget, GX_EVENT *event_ptr) { diff --git a/common/src/gx_widget_client_get.c b/common/src/gx_widget_client_get.c index 2228fc12..9f952402 100644 --- a/common/src/gx_widget_client_get.c +++ b/common/src/gx_widget_client_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* Application Code */ /* GUIX draw functions */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_client_get(GX_WIDGET *widget, GX_VALUE width, GX_RECTANGLE *return_size) { diff --git a/common/src/gx_widget_client_index_get.c b/common/src/gx_widget_client_index_get.c index 47cdeac5..3f7bcd97 100644 --- a/common/src/gx_widget_client_index_get.c +++ b/common/src/gx_widget_client_index_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ /* _gx_vertical_list_slide_back_check */ /* _gx_vertical_list_up_wrap */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ INT _gx_widget_client_index_get(GX_WIDGET *parent, GX_WIDGET *child) { diff --git a/common/src/gx_widget_clipping_update.c b/common/src/gx_widget_clipping_update.c index 4b04dff8..c15bef53 100644 --- a/common/src/gx_widget_clipping_update.c +++ b/common/src/gx_widget_clipping_update.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* GUIX Internal Code */ /* GUIX application code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_widget_clipping_update(GX_WIDGET *widget) { diff --git a/common/src/gx_widget_color_get.c b/common/src/gx_widget_color_get.c index 141917d8..57c75637 100644 --- a/common/src/gx_widget_color_get.c +++ b/common/src/gx_widget_color_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* Application Code */ /* GUIX default draw funtions */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_color_get(GX_WIDGET *widget, GX_RESOURCE_ID color_id, GX_COLOR *return_color) { diff --git a/common/src/gx_widget_context_fill_set.c b/common/src/gx_widget_context_fill_set.c index 5fb0ece0..ca493f4b 100644 --- a/common/src/gx_widget_context_fill_set.c +++ b/common/src/gx_widget_context_fill_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_widget_context_fill_set(GX_WIDGET *widget) { diff --git a/common/src/gx_widget_create.c b/common/src/gx_widget_create.c index ee9512c6..920b2e9b 100644 --- a/common/src/gx_widget_create.c +++ b/common/src/gx_widget_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_create(GX_WIDGET *widget, GX_CONST GX_CHAR *name, GX_WIDGET *parent, ULONG style, USHORT Id, GX_CONST GX_RECTANGLE *size) diff --git a/common/src/gx_widget_created_test.c b/common/src/gx_widget_created_test.c index acfb04c6..3a541008 100644 --- a/common/src/gx_widget_created_test.c +++ b/common/src/gx_widget_created_test.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* GUIX application code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_created_test(GX_WIDGET *widget, GX_BOOL *return_test) { diff --git a/common/src/gx_widget_delete.c b/common/src/gx_widget_delete.c index a76f3d63..ea69725c 100644 --- a/common/src/gx_widget_delete.c +++ b/common/src/gx_widget_delete.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,16 +64,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* removed private string */ -/* delete, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_widget_delete_helper(GX_WIDGET *widget) { @@ -147,14 +138,6 @@ GX_EVENT delete_event; /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_delete(GX_WIDGET *widget) { diff --git a/common/src/gx_widget_detach.c b/common/src/gx_widget_detach.c index ac2a64dc..aeaf75a3 100644 --- a/common/src/gx_widget_detach.c +++ b/common/src/gx_widget_detach.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_detach(GX_WIDGET *widget) { diff --git a/common/src/gx_widget_draw.c b/common/src/gx_widget_draw.c index 5d6a3ec7..f34982b4 100644 --- a/common/src/gx_widget_draw.c +++ b/common/src/gx_widget_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_widget_draw(GX_WIDGET *widget) { diff --git a/common/src/gx_widget_draw_set.c b/common/src/gx_widget_draw_set.c index dc24ef78..a8748ec4 100644 --- a/common/src/gx_widget_draw_set.c +++ b/common/src/gx_widget_draw_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_draw_set(GX_WIDGET *widget, VOID (*draw_func)(GX_WIDGET *)) { diff --git a/common/src/gx_widget_event_generate.c b/common/src/gx_widget_event_generate.c index 4f88237b..b306df5d 100644 --- a/common/src/gx_widget_event_generate.c +++ b/common/src/gx_widget_event_generate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_event_generate(GX_WIDGET *widget, USHORT event_type, LONG value) { diff --git a/common/src/gx_widget_event_process.c b/common/src/gx_widget_event_process.c index 8f271b83..694acbdf 100644 --- a/common/src/gx_widget_event_process.c +++ b/common/src/gx_widget_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* _gx_widget_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_widget_children_show_event_process(GX_WIDGET *widget, GX_EVENT *event_ptr) { @@ -158,26 +151,6 @@ GX_WIDGET *end = GX_NULL; /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* added new event entries, */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* avoid pass widget delete */ -/* event to parent, */ -/* resulting in version 6.1.3 */ -/* 04-25-2022 Ting Zhu Modified comment(s), modified */ -/* system input release logic */ -/* on widget hide event, */ -/* resulting in version 6.1.11 */ -/* 12-31-2023 Ting Zhu Modified comment(s), */ -/* improved focus lose logic, */ -/* resulting in version 6.4.0 */ -/* */ /**************************************************************************/ UINT _gx_widget_event_process(GX_WIDGET *widget, GX_EVENT *event_ptr) { diff --git a/common/src/gx_widget_event_process_set.c b/common/src/gx_widget_event_process_set.c index cce23d5e..db5b4e46 100644 --- a/common/src/gx_widget_event_process_set.c +++ b/common/src/gx_widget_event_process_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_event_process_set(GX_WIDGET *widget, UINT (*event_processing_function)(GX_WIDGET *, GX_EVENT *)) { diff --git a/common/src/gx_widget_event_to_parent.c b/common/src/gx_widget_event_to_parent.c index f6ca30f1..5eb4ed76 100644 --- a/common/src/gx_widget_event_to_parent.c +++ b/common/src/gx_widget_event_to_parent.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_event_to_parent(GX_WIDGET *widget, GX_EVENT *event_ptr) { diff --git a/common/src/gx_widget_fill_color_set.c b/common/src/gx_widget_fill_color_set.c index ae6f75de..bdd3bc84 100644 --- a/common/src/gx_widget_fill_color_set.c +++ b/common/src/gx_widget_fill_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_fill_color_set(GX_WIDGET *widget, GX_RESOURCE_ID normal_color, diff --git a/common/src/gx_widget_find.c b/common/src/gx_widget_find.c index 470f7600..edbbbaef 100644 --- a/common/src/gx_widget_find.c +++ b/common/src/gx_widget_find.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_find(GX_WIDGET *parent, USHORT widget_id, INT search_depth, GX_WIDGET **return_widget) { diff --git a/common/src/gx_widget_first_child_get.c b/common/src/gx_widget_first_child_get.c index 7ccec7dc..9a91efd1 100644 --- a/common/src/gx_widget_first_child_get.c +++ b/common/src/gx_widget_first_child_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_first_child_get(GX_WIDGET *parent, GX_WIDGET **child_return) { diff --git a/common/src/gx_widget_first_client_child_get.c b/common/src/gx_widget_first_client_child_get.c index a227ee51..f3098e55 100644 --- a/common/src/gx_widget_first_client_child_get.c +++ b/common/src/gx_widget_first_client_child_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* _gx_vertical_list_slide_back_check */ /* _gx_vertical_list_up_wrap */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_WIDGET *_gx_widget_first_client_child_get(GX_WIDGET *parent) { @@ -116,12 +109,6 @@ GX_WIDGET *test = parent -> gx_widget_first_child; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ -/* */ /**************************************************************************/ GX_WIDGET *_gx_widget_first_visible_client_child_get(GX_WIDGET *parent) { diff --git a/common/src/gx_widget_focus_next.c b/common/src/gx_widget_focus_next.c index e299ee62..e2ac3a16 100644 --- a/common/src/gx_widget_focus_next.c +++ b/common/src/gx_widget_focus_next.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_focus_next(GX_WIDGET *start) { diff --git a/common/src/gx_widget_focus_previous.c b/common/src/gx_widget_focus_previous.c index eea673ab..f9b5c004 100644 --- a/common/src/gx_widget_focus_previous.c +++ b/common/src/gx_widget_focus_previous.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_focus_previous(GX_WIDGET *start) { diff --git a/common/src/gx_widget_font_get.c b/common/src/gx_widget_font_get.c index bac568d9..8703ef06 100644 --- a/common/src/gx_widget_font_get.c +++ b/common/src/gx_widget_font_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* Application Code */ /* GUIX default drawing functions */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_font_get(GX_WIDGET *widget, GX_RESOURCE_ID resource_id, GX_FONT **return_font) { diff --git a/common/src/gx_widget_free.c b/common/src/gx_widget_free.c index 930bfb11..9f9d60fd 100644 --- a/common/src/gx_widget_free.c +++ b/common/src/gx_widget_free.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_free(GX_WIDGET *widget) { diff --git a/common/src/gx_widget_front_move.c b/common/src/gx_widget_front_move.c index df04d165..f06dd9bf 100644 --- a/common/src/gx_widget_front_move.c +++ b/common/src/gx_widget_front_move.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_front_move(GX_WIDGET *widget, GX_BOOL *return_moved) { diff --git a/common/src/gx_widget_height_get.c b/common/src/gx_widget_height_get.c index bfb6af82..3533249d 100644 --- a/common/src/gx_widget_height_get.c +++ b/common/src/gx_widget_height_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_height_get(GX_WIDGET *widget, GX_VALUE *return_height) { diff --git a/common/src/gx_widget_hide.c b/common/src/gx_widget_hide.c index 4b222a04..513f178b 100644 --- a/common/src/gx_widget_hide.c +++ b/common/src/gx_widget_hide.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_hide(GX_WIDGET *widget) { diff --git a/common/src/gx_widget_last_child_get.c b/common/src/gx_widget_last_child_get.c index b2b4ff5a..0a920fb3 100644 --- a/common/src/gx_widget_last_child_get.c +++ b/common/src/gx_widget_last_child_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_last_child_get(GX_WIDGET *parent, GX_WIDGET **child_return) { diff --git a/common/src/gx_widget_last_client_child_get.c b/common/src/gx_widget_last_client_child_get.c index c8d56d2d..eab15d7a 100644 --- a/common/src/gx_widget_last_client_child_get.c +++ b/common/src/gx_widget_last_client_child_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* _gx_vertical_list_slide_back_check */ /* _gx_vertical_list_up_wrap */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_WIDGET *_gx_widget_last_client_child_get(GX_WIDGET *parent) { @@ -112,12 +105,6 @@ GX_WIDGET *test = parent -> gx_widget_last_child; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ -/* */ /**************************************************************************/ GX_WIDGET *_gx_widget_last_visible_client_child_get(GX_WIDGET *parent) { diff --git a/common/src/gx_widget_link.c b/common/src/gx_widget_link.c index fba8898c..c918919a 100644 --- a/common/src/gx_widget_link.c +++ b/common/src/gx_widget_link.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_widget_link(GX_WIDGET *parent, GX_WIDGET *widget) { diff --git a/common/src/gx_widget_nav_order_initialize.c b/common/src/gx_widget_nav_order_initialize.c index dd0a3285..5e6e84ad 100644 --- a/common/src/gx_widget_nav_order_initialize.c +++ b/common/src/gx_widget_nav_order_initialize.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,14 +58,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_widget_nav_order_initialize(GX_WIDGET *widget) { diff --git a/common/src/gx_widget_next_client_child_get.c b/common/src/gx_widget_next_client_child_get.c index 188b1ac1..6adcf67a 100644 --- a/common/src/gx_widget_next_client_child_get.c +++ b/common/src/gx_widget_next_client_child_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ /* _gx_vertical_list_slide_back_check */ /* _gx_vertical_list_up_wrap */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_WIDGET *_gx_widget_next_client_child_get(GX_WIDGET *start) { @@ -121,12 +114,6 @@ GX_WIDGET *child = start -> gx_widget_next; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ -/* */ /**************************************************************************/ GX_WIDGET *_gx_widget_next_visible_client_child_get(GX_WIDGET *start) { diff --git a/common/src/gx_widget_next_sibling_get.c b/common/src/gx_widget_next_sibling_get.c index c0d6b4f7..6d14a640 100644 --- a/common/src/gx_widget_next_sibling_get.c +++ b/common/src/gx_widget_next_sibling_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_next_sibling_get(GX_WIDGET *current, GX_WIDGET **sibling_return) { diff --git a/common/src/gx_widget_parent_get.c b/common/src/gx_widget_parent_get.c index eb199218..cf301a4c 100644 --- a/common/src/gx_widget_parent_get.c +++ b/common/src/gx_widget_parent_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_parent_get(GX_WIDGET *current, GX_WIDGET **parent_return) { diff --git a/common/src/gx_widget_pixelmap_get.c b/common/src/gx_widget_pixelmap_get.c index bfbab5f4..700d8905 100644 --- a/common/src/gx_widget_pixelmap_get.c +++ b/common/src/gx_widget_pixelmap_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* _gx_icon_pixelmap_update Update pixelmap in an icon */ /* _gx_pixelmap_slider_pixelmap_update Update pixelmap in slider */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_pixelmap_get(GX_WIDGET *widget, GX_RESOURCE_ID resource_id, GX_PIXELMAP **return_pixelmap) { diff --git a/common/src/gx_widget_previous_sibling_get.c b/common/src/gx_widget_previous_sibling_get.c index b52e4c5c..e50d4501 100644 --- a/common/src/gx_widget_previous_sibling_get.c +++ b/common/src/gx_widget_previous_sibling_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_previous_sibling_get(GX_WIDGET *current, GX_WIDGET **sibling_return) { diff --git a/common/src/gx_widget_resize.c b/common/src/gx_widget_resize.c index 06bfce4c..a7f30652 100644 --- a/common/src/gx_widget_resize.c +++ b/common/src/gx_widget_resize.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -73,14 +74,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_resize(GX_WIDGET *widget, GX_RECTANGLE *new_size) { diff --git a/common/src/gx_widget_scroll_shift.c b/common/src/gx_widget_scroll_shift.c index a56dbdc2..a8b4a07c 100644 --- a/common/src/gx_widget_scroll_shift.c +++ b/common/src/gx_widget_scroll_shift.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* _gx_widget_scroll_shift */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_widget_scroll_shift_helper(GX_WIDGET *widget, INT xShift, INT yShift) { @@ -128,14 +121,6 @@ GX_WINDOW *win; /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_scroll_shift(GX_WIDGET *widget, INT xShift, INT yShift, GX_BOOL clip) { diff --git a/common/src/gx_widget_shift.c b/common/src/gx_widget_shift.c index ae5b4184..765c8571 100644 --- a/common/src/gx_widget_shift.c +++ b/common/src/gx_widget_shift.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ /* */ /* _gx_widget_shift */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ static VOID _gx_widget_shift_helper(GX_WIDGET *widget, GX_VALUE x_shift, GX_VALUE y_shift, GX_BOOL mark_dirty) { @@ -161,14 +154,6 @@ GX_EVENT new_event; /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_shift(GX_WIDGET *widget, GX_VALUE x_shift, GX_VALUE y_shift, GX_BOOL mark_dirty) { diff --git a/common/src/gx_widget_show.c b/common/src/gx_widget_show.c index 59b01f5d..0d210bf4 100644 --- a/common/src/gx_widget_show.c +++ b/common/src/gx_widget_show.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_show(GX_WIDGET *widget) { diff --git a/common/src/gx_widget_status_add.c b/common/src/gx_widget_status_add.c index 31273fb9..ce0e58de 100644 --- a/common/src/gx_widget_status_add.c +++ b/common/src/gx_widget_status_add.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_status_add(GX_WIDGET *widget, ULONG status) { diff --git a/common/src/gx_widget_status_get.c b/common/src/gx_widget_status_get.c index ed9a0647..7138ec2f 100644 --- a/common/src/gx_widget_status_get.c +++ b/common/src/gx_widget_status_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_status_get(GX_WIDGET *widget, ULONG *return_status) { diff --git a/common/src/gx_widget_status_remove.c b/common/src/gx_widget_status_remove.c index 0c34f786..e9fed4d0 100644 --- a/common/src/gx_widget_status_remove.c +++ b/common/src/gx_widget_status_remove.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_status_remove(GX_WIDGET *widget, ULONG status) { diff --git a/common/src/gx_widget_status_test.c b/common/src/gx_widget_status_test.c index 843c1aef..17893d36 100644 --- a/common/src/gx_widget_status_test.c +++ b/common/src/gx_widget_status_test.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* GUIX application code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_status_test(GX_WIDGET *widget, ULONG status, GX_BOOL *return_test) { diff --git a/common/src/gx_widget_string_get.c b/common/src/gx_widget_string_get.c index 4c151be1..b2507ae1 100644 --- a/common/src/gx_widget_string_get.c +++ b/common/src/gx_widget_string_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_widget_string_get(GX_WIDGET *widget, GX_RESOURCE_ID resource_id, GX_CONST GX_CHAR **return_string) @@ -132,14 +125,6 @@ GX_DISPLAY *display; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_string_get_ext(GX_WIDGET *widget, GX_RESOURCE_ID resource_id, GX_STRING *return_string) { diff --git a/common/src/gx_widget_style_add.c b/common/src/gx_widget_style_add.c index ec91a155..506f2b05 100644 --- a/common/src/gx_widget_style_add.c +++ b/common/src/gx_widget_style_add.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_style_add(GX_WIDGET *widget, ULONG style) { diff --git a/common/src/gx_widget_style_get.c b/common/src/gx_widget_style_get.c index 6daaa2b8..3df95f72 100644 --- a/common/src/gx_widget_style_get.c +++ b/common/src/gx_widget_style_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_style_get(GX_WIDGET *widget, ULONG *return_style) { diff --git a/common/src/gx_widget_style_remove.c b/common/src/gx_widget_style_remove.c index 3c17765f..6c996390 100644 --- a/common/src/gx_widget_style_remove.c +++ b/common/src/gx_widget_style_remove.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_style_remove(GX_WIDGET *widget, ULONG style) { diff --git a/common/src/gx_widget_style_set.c b/common/src/gx_widget_style_set.c index fae6872d..248cc196 100644 --- a/common/src/gx_widget_style_set.c +++ b/common/src/gx_widget_style_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_style_set(GX_WIDGET *widget, ULONG style) { diff --git a/common/src/gx_widget_text_blend.c b/common/src/gx_widget_text_blend.c index aecde6ae..09d3927f 100644 --- a/common/src/gx_widget_text_blend.c +++ b/common/src/gx_widget_text_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gx_widget_text_blend(GX_WIDGET *widget, @@ -145,14 +138,6 @@ GX_STRING new_string; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_text_blend_ext(GX_WIDGET *widget, UINT tColor, UINT font_id, diff --git a/common/src/gx_widget_text_draw.c b/common/src/gx_widget_text_draw.c index 8f73895f..27e5f7f1 100644 --- a/common/src/gx_widget_text_draw.c +++ b/common/src/gx_widget_text_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) VOID _gx_widget_text_draw(GX_WIDGET *widget, @@ -138,16 +131,6 @@ GX_STRING string; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* removed dynamic bidi text */ -/* processing logic, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_widget_text_draw_ext(GX_WIDGET *widget, diff --git a/common/src/gx_widget_text_id_draw.c b/common/src/gx_widget_text_id_draw.c index 36ce223f..2473d005 100644 --- a/common/src/gx_widget_text_id_draw.c +++ b/common/src/gx_widget_text_id_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_widget_text_id_draw(GX_WIDGET *widget, UINT tColor, UINT font_id, UINT text_id, diff --git a/common/src/gx_widget_top_visible_child_find.c b/common/src/gx_widget_top_visible_child_find.c index c1e86138..1cb9539d 100644 --- a/common/src/gx_widget_top_visible_child_find.c +++ b/common/src/gx_widget_top_visible_child_find.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_top_visible_child_find(GX_WIDGET *parent, GX_WIDGET **child_return) { diff --git a/common/src/gx_widget_transparent_pixelmap_detect.c b/common/src/gx_widget_transparent_pixelmap_detect.c index 23ebcfdd..96afc248 100644 --- a/common/src/gx_widget_transparent_pixelmap_detect.c +++ b/common/src/gx_widget_transparent_pixelmap_detect.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_BOOL _gx_widget_transparent_pixelmap_detect(GX_WIDGET *widget, GX_RESOURCE_ID pixelmap_id) { diff --git a/common/src/gx_widget_type_find.c b/common/src/gx_widget_type_find.c index be82ed27..05a62e45 100644 --- a/common/src/gx_widget_type_find.c +++ b/common/src/gx_widget_type_find.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_type_find(GX_WIDGET *parent, USHORT type, GX_WIDGET **return_widget) { diff --git a/common/src/gx_widget_unlink.c b/common/src/gx_widget_unlink.c index 07bcfec2..e1be48cf 100644 --- a/common/src/gx_widget_unlink.c +++ b/common/src/gx_widget_unlink.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_WIDGET *_gx_widget_unlink(GX_WIDGET *widget) { diff --git a/common/src/gx_widget_width_get.c b/common/src/gx_widget_width_get.c index c8cc837d..9daa3ba6 100644 --- a/common/src/gx_widget_width_get.c +++ b/common/src/gx_widget_width_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_widget_width_get(GX_WIDGET *widget, GX_VALUE *return_width) { diff --git a/common/src/gx_window_background_draw.c b/common/src/gx_window_background_draw.c index e61bd2e1..f0760808 100644 --- a/common/src/gx_window_background_draw.c +++ b/common/src/gx_window_background_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_window_background_draw(GX_WINDOW *win) { diff --git a/common/src/gx_window_border_draw.c b/common/src/gx_window_border_draw.c index 2579024a..ae4dcb9b 100644 --- a/common/src/gx_window_border_draw.c +++ b/common/src/gx_window_border_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,14 +72,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_window_border_draw(GX_WINDOW *win, GX_RESOURCE_ID fill_color) { diff --git a/common/src/gx_window_client_height_get.c b/common/src/gx_window_client_height_get.c index 9d91326e..acd7c2b5 100644 --- a/common/src/gx_window_client_height_get.c +++ b/common/src/gx_window_client_height_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_window_client_height_get(GX_WINDOW *window, GX_VALUE *return_height) { diff --git a/common/src/gx_window_client_scroll.c b/common/src/gx_window_client_scroll.c index b62a4fd0..0526090f 100644 --- a/common/src/gx_window_client_scroll.c +++ b/common/src/gx_window_client_scroll.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_window_client_scroll(GX_WINDOW *window, GX_VALUE x_scroll, GX_VALUE y_scroll) { diff --git a/common/src/gx_window_client_width_get.c b/common/src/gx_window_client_width_get.c index 334aac66..3be99f6a 100644 --- a/common/src/gx_window_client_width_get.c +++ b/common/src/gx_window_client_width_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_window_client_width_get(GX_WINDOW *window, GX_VALUE *return_width) { diff --git a/common/src/gx_window_close.c b/common/src/gx_window_close.c index dfc7ea77..fb6b852c 100644 --- a/common/src/gx_window_close.c +++ b/common/src/gx_window_close.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_window_close(GX_WINDOW *window) { diff --git a/common/src/gx_window_create.c b/common/src/gx_window_create.c index b90a831f..4f3f1edf 100644 --- a/common/src/gx_window_create.c +++ b/common/src/gx_window_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,15 +70,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* fixed compiler warnings, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_window_create(GX_WINDOW *window, GX_CONST GX_CHAR *name, GX_WIDGET *parent, ULONG style, USHORT window_id, GX_CONST GX_RECTANGLE *size) diff --git a/common/src/gx_window_draw.c b/common/src/gx_window_draw.c index 8c7ee87d..53434268 100644 --- a/common/src/gx_window_draw.c +++ b/common/src/gx_window_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_window_draw(GX_WINDOW *win) { diff --git a/common/src/gx_window_event_process.c b/common/src/gx_window_event_process.c index bc3e7f85..0a6adfcb 100644 --- a/common/src/gx_window_event_process.c +++ b/common/src/gx_window_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_window_event_process(GX_WINDOW *window, GX_EVENT *event_ptr) { diff --git a/common/src/gx_window_execute.c b/common/src/gx_window_execute.c index 8ceedf10..9d87d4bf 100644 --- a/common/src/gx_window_execute.c +++ b/common/src/gx_window_execute.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_window_execute(GX_WINDOW *window, ULONG *return_ptr) { diff --git a/common/src/gx_window_root_create.c b/common/src/gx_window_root_create.c index e12886ed..efbe43d6 100644 --- a/common/src/gx_window_root_create.c +++ b/common/src/gx_window_root_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,17 +67,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* updated the link logic, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ UINT _gx_window_root_create(GX_WINDOW_ROOT *root_window, GX_CONST GX_CHAR *name, GX_CANVAS *canvas, ULONG style, USHORT Id, diff --git a/common/src/gx_window_root_delete.c b/common/src/gx_window_root_delete.c index b992b117..813f720f 100644 --- a/common/src/gx_window_root_delete.c +++ b/common/src/gx_window_root_delete.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_window_root_delete(GX_WINDOW_ROOT *root_window) { diff --git a/common/src/gx_window_root_event_process.c b/common/src/gx_window_root_event_process.c index ac0630b2..abdf4606 100644 --- a/common/src/gx_window_root_event_process.c +++ b/common/src/gx_window_root_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_window_root_event_process(GX_WINDOW_ROOT *win, GX_EVENT *event_ptr) { diff --git a/common/src/gx_window_root_find.c b/common/src/gx_window_root_find.c index 69f6e807..8eb81cf1 100644 --- a/common/src/gx_window_root_find.c +++ b/common/src/gx_window_root_find.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_window_root_find(GX_WIDGET *widget, GX_WINDOW_ROOT **return_root_window) { diff --git a/common/src/gx_window_scroll.c b/common/src/gx_window_scroll.c index add98fd8..950ae71a 100644 --- a/common/src/gx_window_scroll.c +++ b/common/src/gx_window_scroll.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_window_scroll(GX_WINDOW *window, GX_VALUE x_scroll, GX_VALUE y_scroll) { diff --git a/common/src/gx_window_scroll_info_get.c b/common/src/gx_window_scroll_info_get.c index 5ded1bd7..c70966ae 100644 --- a/common/src/gx_window_scroll_info_get.c +++ b/common/src/gx_window_scroll_info_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_window_scroll_info_get(GX_WINDOW *window, ULONG type, GX_SCROLL_INFO *return_scroll_info) { diff --git a/common/src/gx_window_scrollbar_find.c b/common/src/gx_window_scrollbar_find.c index f194b699..73c4307c 100644 --- a/common/src/gx_window_scrollbar_find.c +++ b/common/src/gx_window_scrollbar_find.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_window_scrollbar_find(GX_WINDOW *window, USHORT type, GX_SCROLLBAR **return_scrollbar) { diff --git a/common/src/gx_window_view_update_detect.c b/common/src/gx_window_view_update_detect.c index 01daa69e..29628727 100644 --- a/common/src/gx_window_view_update_detect.c +++ b/common/src/gx_window_view_update_detect.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ VOID _gx_window_view_update_detect(GX_WINDOW *window) { diff --git a/common/src/gx_window_wallpaper_get.c b/common/src/gx_window_wallpaper_get.c index f4c1278c..838d9614 100644 --- a/common/src/gx_window_wallpaper_get.c +++ b/common/src/gx_window_wallpaper_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_window_wallpaper_get(GX_WINDOW *window, GX_RESOURCE_ID *return_wallpaper_id) { diff --git a/common/src/gx_window_wallpaper_set.c b/common/src/gx_window_wallpaper_set.c index 71c39233..d61d1eba 100644 --- a/common/src/gx_window_wallpaper_set.c +++ b/common/src/gx_window_wallpaper_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gx_window_wallpaper_set(GX_WINDOW *window, GX_RESOURCE_ID wallpaper_id, GX_BOOL tile) { diff --git a/common/src/gxe_accordion_menu_create.c b/common/src/gxe_accordion_menu_create.c index 6f553422..b7fc2857 100644 --- a/common/src/gxe_accordion_menu_create.c +++ b/common/src/gxe_accordion_menu_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_accordion_menu_create(GX_ACCORDION_MENU *accordion, GX_CONST GX_CHAR *name, GX_WIDGET *parent, ULONG style, USHORT accordion_menu_id, GX_CONST GX_RECTANGLE *size, UINT control_block_size) diff --git a/common/src/gxe_accordion_menu_event_process.c b/common/src/gxe_accordion_menu_event_process.c index fd152d49..942ac715 100644 --- a/common/src/gxe_accordion_menu_event_process.c +++ b/common/src/gxe_accordion_menu_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_accordion_menu_event_process(GX_ACCORDION_MENU *accordion, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_accordion_menu_position.c b/common/src/gxe_accordion_menu_position.c index 9b9001dc..7cf00e42 100644 --- a/common/src/gxe_accordion_menu_position.c +++ b/common/src/gxe_accordion_menu_position.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_accordion_menu_position(GX_ACCORDION_MENU *accordion) { diff --git a/common/src/gxe_animation_canvas_define.c b/common/src/gxe_animation_canvas_define.c index 50003907..49392809 100644 --- a/common/src/gxe_animation_canvas_define.c +++ b/common/src/gxe_animation_canvas_define.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_animation_canvas_define(GX_ANIMATION *animation, GX_CANVAS *canvas) { diff --git a/common/src/gxe_animation_create.c b/common/src/gxe_animation_create.c index 105d228b..b0c6e4e8 100644 --- a/common/src/gxe_animation_create.c +++ b/common/src/gxe_animation_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,14 +58,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_animation_create(GX_ANIMATION *animation) { diff --git a/common/src/gxe_animation_delete.c b/common/src/gxe_animation_delete.c index 7e5b9e00..c6ab3ad0 100644 --- a/common/src/gxe_animation_delete.c +++ b/common/src/gxe_animation_delete.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,12 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gxe_animation_delete(GX_ANIMATION *target, GX_WIDGET *parent) { diff --git a/common/src/gxe_animation_drag_disable.c b/common/src/gxe_animation_drag_disable.c index 98644e4a..9c03e456 100644 --- a/common/src/gxe_animation_drag_disable.c +++ b/common/src/gxe_animation_drag_disable.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_animation_drag_disable(GX_ANIMATION *animation, GX_WIDGET *widget) { diff --git a/common/src/gxe_animation_drag_enable.c b/common/src/gxe_animation_drag_enable.c index 2a76116b..1f6df76c 100644 --- a/common/src/gxe_animation_drag_enable.c +++ b/common/src/gxe_animation_drag_enable.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_animation_drag_enable(GX_ANIMATION *animation, GX_WIDGET *widget, GX_ANIMATION_INFO *info) { diff --git a/common/src/gxe_animation_landing_speed_set.c b/common/src/gxe_animation_landing_speed_set.c index 96c1cdfd..442891d4 100644 --- a/common/src/gxe_animation_landing_speed_set.c +++ b/common/src/gxe_animation_landing_speed_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_animation_landing_speed_set(GX_ANIMATION *animation, USHORT shift_per_step) { diff --git a/common/src/gxe_animation_start.c b/common/src/gxe_animation_start.c index d47f9e24..e0b163e8 100644 --- a/common/src/gxe_animation_start.c +++ b/common/src/gxe_animation_start.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,20 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 06-02-2021 Ting Zhu Modified comment(s), */ -/* removed unnecessary check, */ -/* resulting in version 6.1.7 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added caller check, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ UINT _gxe_animation_start(GX_ANIMATION *animation, GX_ANIMATION_INFO *info) { diff --git a/common/src/gxe_animation_stop.c b/common/src/gxe_animation_stop.c index 35a2d392..295ce4f5 100644 --- a/common/src/gxe_animation_stop.c +++ b/common/src/gxe_animation_stop.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_animation_stop(GX_ANIMATION *animation) { diff --git a/common/src/gxe_binres_font_load.c b/common/src/gxe_binres_font_load.c index 3e2f1cfc..f2fb83e3 100644 --- a/common/src/gxe_binres_font_load.c +++ b/common/src/gxe_binres_font_load.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,12 +70,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ -/* */ /**************************************************************************/ UINT _gxe_binres_font_load(GX_UBYTE *root_address, UINT font_index, GX_UBYTE *buffer, ULONG *buffer_size) { diff --git a/common/src/gxe_binres_language_count_get.c b/common/src/gxe_binres_language_count_get.c index 9d32249e..4b84bcf1 100644 --- a/common/src/gxe_binres_language_count_get.c +++ b/common/src/gxe_binres_language_count_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT UINT _gxe_binres_language_count_get(GX_UBYTE *root_address, GX_VALUE *put_count) diff --git a/common/src/gxe_binres_language_info_load.c b/common/src/gxe_binres_language_info_load.c index 541e8502..140741af 100644 --- a/common/src/gxe_binres_language_info_load.c +++ b/common/src/gxe_binres_language_info_load.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT UINT _gxe_binres_language_info_load(GX_UBYTE *root_address, GX_LANGUAGE_HEADER *put_info) diff --git a/common/src/gxe_binres_language_table_load.c b/common/src/gxe_binres_language_table_load.c index fde3e960..cb9f512a 100644 --- a/common/src/gxe_binres_language_table_load.c +++ b/common/src/gxe_binres_language_table_load.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT #ifdef GX_ENABLE_DEPRECATED_STRING_API @@ -132,14 +125,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT UINT _gxe_binres_language_table_load_ext(GX_UBYTE *root_address, GX_STRING ***returned_language_table) diff --git a/common/src/gxe_binres_pixelmap_load.c b/common/src/gxe_binres_pixelmap_load.c index 10f106d5..7a960534 100644 --- a/common/src/gxe_binres_pixelmap_load.c +++ b/common/src/gxe_binres_pixelmap_load.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,12 +65,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 10-31-2023 Ting Zhu Initial Version 6.3.0 */ -/* */ /**************************************************************************/ UINT _gxe_binres_pixelmap_load(GX_UBYTE *root_address, UINT map_index, GX_PIXELMAP *pixelmap) { diff --git a/common/src/gxe_binres_theme_load.c b/common/src/gxe_binres_theme_load.c index 55dec6a3..295c8955 100644 --- a/common/src/gxe_binres_theme_load.c +++ b/common/src/gxe_binres_theme_load.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifdef GX_BINARY_RESOURCE_SUPPORT UINT _gxe_binres_theme_load(GX_UBYTE *root_address, INT theme_id, GX_THEME **returned_theme) diff --git a/common/src/gxe_brush_default.c b/common/src/gxe_brush_default.c index 473a1241..934d79f0 100644 --- a/common/src/gxe_brush_default.c +++ b/common/src/gxe_brush_default.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,14 +58,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_brush_default(GX_BRUSH *brush) { diff --git a/common/src/gxe_brush_define.c b/common/src/gxe_brush_define.c index eb2e5a63..1e773e97 100644 --- a/common/src/gxe_brush_define.c +++ b/common/src/gxe_brush_define.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_brush_define(GX_BRUSH *brush, GX_COLOR line_color, GX_COLOR fill_color, UINT style) { diff --git a/common/src/gxe_button_create.c b/common/src/gxe_button_create.c index 78202802..0bfcc233 100644 --- a/common/src/gxe_button_create.c +++ b/common/src/gxe_button_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_button_create(GX_BUTTON *button, GX_CONST GX_CHAR *name, GX_WIDGET *parent, ULONG style, USHORT button_id, GX_CONST GX_RECTANGLE *size, UINT button_control_block_size) diff --git a/common/src/gxe_button_deselect.c b/common/src/gxe_button_deselect.c index 083968f9..45471cf7 100644 --- a/common/src/gxe_button_deselect.c +++ b/common/src/gxe_button_deselect.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_button_deselect(GX_BUTTON *button, GX_BOOL gen_event) { diff --git a/common/src/gxe_button_event_process.c b/common/src/gxe_button_event_process.c index c8fb100b..518122cb 100644 --- a/common/src/gxe_button_event_process.c +++ b/common/src/gxe_button_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_button_event_process(GX_BUTTON *button, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_button_select.c b/common/src/gxe_button_select.c index 638bac7f..f53a189e 100644 --- a/common/src/gxe_button_select.c +++ b/common/src/gxe_button_select.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_button_select(GX_BUTTON *button) { diff --git a/common/src/gxe_canvas_alpha_set.c b/common/src/gxe_canvas_alpha_set.c index fdaffebc..26a72a8d 100644 --- a/common/src/gxe_canvas_alpha_set.c +++ b/common/src/gxe_canvas_alpha_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_alpha_set(GX_CANVAS *canvas, GX_UBYTE alpha) { diff --git a/common/src/gxe_canvas_arc_draw.c b/common/src/gxe_canvas_arc_draw.c index aa3f61b5..f5b62a11 100644 --- a/common/src/gxe_canvas_arc_draw.c +++ b/common/src/gxe_canvas_arc_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_arc_draw(INT xcenter, INT ycenter, UINT r, INT start_angle, INT end_angle) { diff --git a/common/src/gxe_canvas_block_move.c b/common/src/gxe_canvas_block_move.c index 7d142137..97023ae7 100644 --- a/common/src/gxe_canvas_block_move.c +++ b/common/src/gxe_canvas_block_move.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_block_move(GX_RECTANGLE *block, GX_VALUE x_shift, GX_VALUE y_shift, GX_RECTANGLE *dirty) { diff --git a/common/src/gxe_canvas_circle_draw.c b/common/src/gxe_canvas_circle_draw.c index e4b4b1e4..a3498d1e 100644 --- a/common/src/gxe_canvas_circle_draw.c +++ b/common/src/gxe_canvas_circle_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_circle_draw(INT xcenter, INT ycenter, UINT r) { diff --git a/common/src/gxe_canvas_create.c b/common/src/gxe_canvas_create.c index 8ab2610c..baff58e4 100644 --- a/common/src/gxe_canvas_create.c +++ b/common/src/gxe_canvas_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,18 +73,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), verify */ -/* the memory size only when */ -/* memory_area is provided, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_create(GX_CANVAS *canvas, GX_CONST GX_CHAR *name, GX_DISPLAY *display, UINT type, UINT width, UINT height, GX_COLOR *memory_area, ULONG memory_size, diff --git a/common/src/gxe_canvas_delete.c b/common/src/gxe_canvas_delete.c index 364a0af2..ce68cfab 100644 --- a/common/src/gxe_canvas_delete.c +++ b/common/src/gxe_canvas_delete.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_delete(GX_CANVAS *canvas) { diff --git a/common/src/gxe_canvas_drawing_complete.c b/common/src/gxe_canvas_drawing_complete.c index f9c4ada7..b874b1fe 100644 --- a/common/src/gxe_canvas_drawing_complete.c +++ b/common/src/gxe_canvas_drawing_complete.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_drawing_complete(GX_CANVAS *canvas, GX_BOOL flush) { diff --git a/common/src/gxe_canvas_drawing_initiate.c b/common/src/gxe_canvas_drawing_initiate.c index 3f2a5f6c..ea69205a 100644 --- a/common/src/gxe_canvas_drawing_initiate.c +++ b/common/src/gxe_canvas_drawing_initiate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_drawing_initiate(GX_CANVAS *canvas, GX_WIDGET *who, GX_RECTANGLE *dirty_area) { diff --git a/common/src/gxe_canvas_ellipse_draw.c b/common/src/gxe_canvas_ellipse_draw.c index 3e08dcf5..ccbaa22d 100644 --- a/common/src/gxe_canvas_ellipse_draw.c +++ b/common/src/gxe_canvas_ellipse_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_ellipse_draw(INT xcenter, INT ycenter, INT a, INT b) { diff --git a/common/src/gxe_canvas_hardware_layer_bind.c b/common/src/gxe_canvas_hardware_layer_bind.c index 4ca2750b..4ac570fd 100644 --- a/common/src/gxe_canvas_hardware_layer_bind.c +++ b/common/src/gxe_canvas_hardware_layer_bind.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_hardware_layer_bind(GX_CANVAS *canvas, INT layer) { diff --git a/common/src/gxe_canvas_hide.c b/common/src/gxe_canvas_hide.c index c3090e95..f9c973bc 100644 --- a/common/src/gxe_canvas_hide.c +++ b/common/src/gxe_canvas_hide.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_hide(GX_CANVAS *canvas) { diff --git a/common/src/gxe_canvas_line_draw.c b/common/src/gxe_canvas_line_draw.c index 365175e2..36b91e2f 100644 --- a/common/src/gxe_canvas_line_draw.c +++ b/common/src/gxe_canvas_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_line_draw(GX_VALUE x_start, GX_VALUE y_start, GX_VALUE x_end, GX_VALUE y_end) { diff --git a/common/src/gxe_canvas_memory_define.c b/common/src/gxe_canvas_memory_define.c index 5ec8148b..69d95043 100644 --- a/common/src/gxe_canvas_memory_define.c +++ b/common/src/gxe_canvas_memory_define.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_memory_define(GX_CANVAS *canvas, GX_COLOR *memory, ULONG memsize) { diff --git a/common/src/gxe_canvas_mouse_define.c b/common/src/gxe_canvas_mouse_define.c index 8db44e2b..963379db 100644 --- a/common/src/gxe_canvas_mouse_define.c +++ b/common/src/gxe_canvas_mouse_define.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_MOUSE_SUPPORT) UINT _gxe_canvas_mouse_define(GX_CANVAS *canvas, GX_MOUSE_CURSOR_INFO *info) diff --git a/common/src/gxe_canvas_mouse_hide.c b/common/src/gxe_canvas_mouse_hide.c index dd722b75..4d7087e3 100644 --- a/common/src/gxe_canvas_mouse_hide.c +++ b/common/src/gxe_canvas_mouse_hide.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_MOUSE_SUPPORT) UINT _gxe_canvas_mouse_hide(GX_CANVAS *canvas) diff --git a/common/src/gxe_canvas_mouse_show.c b/common/src/gxe_canvas_mouse_show.c index bf5c9895..0e6fbf13 100644 --- a/common/src/gxe_canvas_mouse_show.c +++ b/common/src/gxe_canvas_mouse_show.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_MOUSE_SUPPORT) UINT _gxe_canvas_mouse_show(GX_CANVAS *canvas) diff --git a/common/src/gxe_canvas_offset_set.c b/common/src/gxe_canvas_offset_set.c index c18b7524..50b720b8 100644 --- a/common/src/gxe_canvas_offset_set.c +++ b/common/src/gxe_canvas_offset_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_offset_set(GX_CANVAS *canvas, GX_VALUE x, GX_VALUE y) { diff --git a/common/src/gxe_canvas_pie_draw.c b/common/src/gxe_canvas_pie_draw.c index 8c580c9f..95aa8ca2 100644 --- a/common/src/gxe_canvas_pie_draw.c +++ b/common/src/gxe_canvas_pie_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_pie_draw(INT xcenter, INT ycenter, UINT r, INT start_angle, INT end_angle) { diff --git a/common/src/gxe_canvas_pixel_draw.c b/common/src/gxe_canvas_pixel_draw.c index 4cfb97cb..87c6fa11 100644 --- a/common/src/gxe_canvas_pixel_draw.c +++ b/common/src/gxe_canvas_pixel_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_pixel_draw(GX_POINT position) { diff --git a/common/src/gxe_canvas_pixelmap_blend.c b/common/src/gxe_canvas_pixelmap_blend.c index 246e83f6..d61aa272 100644 --- a/common/src/gxe_canvas_pixelmap_blend.c +++ b/common/src/gxe_canvas_pixelmap_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_pixelmap_blend(GX_VALUE x_position, GX_VALUE y_position, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) diff --git a/common/src/gxe_canvas_pixelmap_draw.c b/common/src/gxe_canvas_pixelmap_draw.c index ea713ded..bd01361c 100644 --- a/common/src/gxe_canvas_pixelmap_draw.c +++ b/common/src/gxe_canvas_pixelmap_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_pixelmap_draw(GX_VALUE x_position, GX_VALUE y_position, GX_PIXELMAP *pixelmap) { diff --git a/common/src/gxe_canvas_pixelmap_get.c b/common/src/gxe_canvas_pixelmap_get.c index 61de33b4..55d2afe9 100644 --- a/common/src/gxe_canvas_pixelmap_get.c +++ b/common/src/gxe_canvas_pixelmap_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_pixelmap_get(GX_PIXELMAP *pixelmap) { diff --git a/common/src/gxe_canvas_pixelmap_rotate.c b/common/src/gxe_canvas_pixelmap_rotate.c index 1764fce4..fc6bd618 100644 --- a/common/src/gxe_canvas_pixelmap_rotate.c +++ b/common/src/gxe_canvas_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,14 +73,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_pixelmap_rotate(GX_VALUE x_position, GX_VALUE y_position, GX_PIXELMAP *pixelmap, INT angle, INT rot_cx, INT rot_cy) diff --git a/common/src/gxe_canvas_pixelmap_tile.c b/common/src/gxe_canvas_pixelmap_tile.c index bfd6d64b..120bfc5f 100644 --- a/common/src/gxe_canvas_pixelmap_tile.c +++ b/common/src/gxe_canvas_pixelmap_tile.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_pixelmap_tile(GX_RECTANGLE *fill, GX_PIXELMAP *pixelmap) { diff --git a/common/src/gxe_canvas_polygon_draw.c b/common/src/gxe_canvas_polygon_draw.c index 61f75e80..cc19825a 100644 --- a/common/src/gxe_canvas_polygon_draw.c +++ b/common/src/gxe_canvas_polygon_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_polygon_draw(GX_POINT *point_array, INT number_of_points) { diff --git a/common/src/gxe_canvas_rectangle_draw.c b/common/src/gxe_canvas_rectangle_draw.c index e5abe2f8..1b82a911 100644 --- a/common/src/gxe_canvas_rectangle_draw.c +++ b/common/src/gxe_canvas_rectangle_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_rectangle_draw(GX_RECTANGLE *rectangle) { diff --git a/common/src/gxe_canvas_rotated_text_draw.c b/common/src/gxe_canvas_rotated_text_draw.c index 61612263..6a916bad 100644 --- a/common/src/gxe_canvas_rotated_text_draw.c +++ b/common/src/gxe_canvas_rotated_text_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_canvas_rotated_text_draw(GX_CONST GX_CHAR *text, @@ -137,14 +130,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_rotated_text_draw_ext(GX_CONST GX_STRING *text, GX_VALUE xcenter, GX_VALUE ycenter, INT angle) { diff --git a/common/src/gxe_canvas_shift.c b/common/src/gxe_canvas_shift.c index fd40e767..e6ded6e8 100644 --- a/common/src/gxe_canvas_shift.c +++ b/common/src/gxe_canvas_shift.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_shift(GX_CANVAS *canvas, GX_VALUE x, GX_VALUE y) { diff --git a/common/src/gxe_canvas_show.c b/common/src/gxe_canvas_show.c index cc7574b5..aca97728 100644 --- a/common/src/gxe_canvas_show.c +++ b/common/src/gxe_canvas_show.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_show(GX_CANVAS *canvas) { diff --git a/common/src/gxe_canvas_text_draw.c b/common/src/gxe_canvas_text_draw.c index c196d28c..36178240 100644 --- a/common/src/gxe_canvas_text_draw.c +++ b/common/src/gxe_canvas_text_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_canvas_text_draw(GX_VALUE x_start, GX_VALUE y_start, GX_CONST GX_CHAR *string, INT length) @@ -132,14 +125,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_text_draw_ext(GX_VALUE x_start, GX_VALUE y_start, GX_CONST GX_STRING *string) { @@ -212,12 +197,6 @@ UINT text_length = 0; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 04-25-2022 Ting Zhu Initial Version 6.1.11 */ -/* */ /**************************************************************************/ UINT _gxe_canvas_aligned_text_draw(GX_CONST GX_STRING *string, GX_RECTANGLE *rectangle, ULONG alignment) { diff --git a/common/src/gxe_checkbox_create.c b/common/src/gxe_checkbox_create.c index 18703c53..cec9bffa 100644 --- a/common/src/gxe_checkbox_create.c +++ b/common/src/gxe_checkbox_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_checkbox_create(GX_CHECKBOX *checkbox, GX_CONST GX_CHAR *name, GX_WIDGET *parent, GX_RESOURCE_ID text_id, ULONG style, USHORT checkbox_id, diff --git a/common/src/gxe_checkbox_event_process.c b/common/src/gxe_checkbox_event_process.c index 6ada0529..64875bec 100644 --- a/common/src/gxe_checkbox_event_process.c +++ b/common/src/gxe_checkbox_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_checkbox_event_process(GX_CHECKBOX *checkbox, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_checkbox_pixelmap_set.c b/common/src/gxe_checkbox_pixelmap_set.c index ac69796d..ed759194 100644 --- a/common/src/gxe_checkbox_pixelmap_set.c +++ b/common/src/gxe_checkbox_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,17 +73,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added invalid widget check, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ UINT _gxe_checkbox_pixelmap_set(GX_CHECKBOX *checkbox, GX_RESOURCE_ID unchecked_id, diff --git a/common/src/gxe_checkbox_select.c b/common/src/gxe_checkbox_select.c index 6a2ceea7..3210b673 100644 --- a/common/src/gxe_checkbox_select.c +++ b/common/src/gxe_checkbox_select.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_checkbox_select(GX_CHECKBOX *checkbox) { diff --git a/common/src/gxe_circular_gauge_angle_get.c b/common/src/gxe_circular_gauge_angle_get.c index 53908342..a7b893e1 100644 --- a/common/src/gxe_circular_gauge_angle_get.c +++ b/common/src/gxe_circular_gauge_angle_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_circular_gauge_angle_get(GX_CIRCULAR_GAUGE *circular_gauge, INT *angle) { diff --git a/common/src/gxe_circular_gauge_angle_set.c b/common/src/gxe_circular_gauge_angle_set.c index d521a9c3..d9749580 100644 --- a/common/src/gxe_circular_gauge_angle_set.c +++ b/common/src/gxe_circular_gauge_angle_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_circular_gauge_angle_set(GX_CIRCULAR_GAUGE *circular_gauge, INT angle) { diff --git a/common/src/gxe_circular_gauge_animation_set.c b/common/src/gxe_circular_gauge_animation_set.c index 4c2c4fd2..c533f22a 100644 --- a/common/src/gxe_circular_gauge_animation_set.c +++ b/common/src/gxe_circular_gauge_animation_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_circular_gauge_animation_set(GX_CIRCULAR_GAUGE *circular_gauge, INT steps, INT delay) diff --git a/common/src/gxe_circular_gauge_create.c b/common/src/gxe_circular_gauge_create.c index bbd84151..841c8a0e 100644 --- a/common/src/gxe_circular_gauge_create.c +++ b/common/src/gxe_circular_gauge_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_circular_gauge_create(GX_CIRCULAR_GAUGE *circular_gauge, GX_CONST GX_CHAR *name, diff --git a/common/src/gxe_circular_gauge_event_process.c b/common/src/gxe_circular_gauge_event_process.c index 1e368060..dacf25d5 100644 --- a/common/src/gxe_circular_gauge_event_process.c +++ b/common/src/gxe_circular_gauge_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_circular_gauge_event_process(GX_CIRCULAR_GAUGE *gauge, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_context_brush_default.c b/common/src/gxe_context_brush_default.c index 4d0fe0a3..c2152b6f 100644 --- a/common/src/gxe_context_brush_default.c +++ b/common/src/gxe_context_brush_default.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_context_brush_default(GX_DRAW_CONTEXT *context) { diff --git a/common/src/gxe_context_brush_define.c b/common/src/gxe_context_brush_define.c index 5f0cb8b3..61d49358 100644 --- a/common/src/gxe_context_brush_define.c +++ b/common/src/gxe_context_brush_define.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_context_brush_define(GX_RESOURCE_ID line_color_id, GX_RESOURCE_ID fill_color_id, UINT style) { diff --git a/common/src/gxe_context_brush_get.c b/common/src/gxe_context_brush_get.c index e8d4fdc5..1d2ae10b 100644 --- a/common/src/gxe_context_brush_get.c +++ b/common/src/gxe_context_brush_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_context_brush_get(GX_BRUSH **return_brush) { diff --git a/common/src/gxe_context_brush_pattern_set.c b/common/src/gxe_context_brush_pattern_set.c index 0ed5e289..2c315175 100644 --- a/common/src/gxe_context_brush_pattern_set.c +++ b/common/src/gxe_context_brush_pattern_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_context_brush_pattern_set(ULONG pattern) { diff --git a/common/src/gxe_context_brush_set.c b/common/src/gxe_context_brush_set.c index d566df66..e7cf5ac4 100644 --- a/common/src/gxe_context_brush_set.c +++ b/common/src/gxe_context_brush_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,14 +58,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_context_brush_set(GX_BRUSH *brush) { diff --git a/common/src/gxe_context_brush_style_set.c b/common/src/gxe_context_brush_style_set.c index eb8353e2..a72608d6 100644 --- a/common/src/gxe_context_brush_style_set.c +++ b/common/src/gxe_context_brush_style_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_context_brush_style_set(UINT style) { diff --git a/common/src/gxe_context_brush_width_set.c b/common/src/gxe_context_brush_width_set.c index 7c534a1f..cddb4c79 100644 --- a/common/src/gxe_context_brush_width_set.c +++ b/common/src/gxe_context_brush_width_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_context_brush_width_set(UINT width) { diff --git a/common/src/gxe_context_color_get.c b/common/src/gxe_context_color_get.c index fa8ea650..2f48bb33 100644 --- a/common/src/gxe_context_color_get.c +++ b/common/src/gxe_context_color_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_context_color_get(GX_RESOURCE_ID color_id, GX_COLOR *return_color) { diff --git a/common/src/gxe_context_fill_color_set.c b/common/src/gxe_context_fill_color_set.c index 16947f98..a0b6a05b 100644 --- a/common/src/gxe_context_fill_color_set.c +++ b/common/src/gxe_context_fill_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_context_fill_color_set(GX_RESOURCE_ID fill_color_id) { diff --git a/common/src/gxe_context_font_get.c b/common/src/gxe_context_font_get.c index 3faf401a..be4464fa 100644 --- a/common/src/gxe_context_font_get.c +++ b/common/src/gxe_context_font_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_context_font_get(GX_RESOURCE_ID font_id, GX_FONT **return_font) { diff --git a/common/src/gxe_context_font_set.c b/common/src/gxe_context_font_set.c index cef2d89e..640b5208 100644 --- a/common/src/gxe_context_font_set.c +++ b/common/src/gxe_context_font_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_context_font_set(GX_RESOURCE_ID font_id) { diff --git a/common/src/gxe_context_line_color_set.c b/common/src/gxe_context_line_color_set.c index 13ec21a9..ec0875aa 100644 --- a/common/src/gxe_context_line_color_set.c +++ b/common/src/gxe_context_line_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_context_line_color_set(GX_RESOURCE_ID line_color_id) { diff --git a/common/src/gxe_context_pixelmap_get.c b/common/src/gxe_context_pixelmap_get.c index e2d53eac..e2932bce 100644 --- a/common/src/gxe_context_pixelmap_get.c +++ b/common/src/gxe_context_pixelmap_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* Application Code */ /* GUIX default draw funtions */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_context_pixelmap_get(GX_RESOURCE_ID pixelmap_id, GX_PIXELMAP **return_pixelmap) { diff --git a/common/src/gxe_context_pixelmap_set.c b/common/src/gxe_context_pixelmap_set.c index c5e4b514..92d165db 100644 --- a/common/src/gxe_context_pixelmap_set.c +++ b/common/src/gxe_context_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_context_pixelmap_set(GX_RESOURCE_ID pixelmap_id) { diff --git a/common/src/gxe_context_raw_brush_define.c b/common/src/gxe_context_raw_brush_define.c index 1cdd2dd1..767481c4 100644 --- a/common/src/gxe_context_raw_brush_define.c +++ b/common/src/gxe_context_raw_brush_define.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_context_raw_brush_define(GX_COLOR line_color, GX_COLOR fill_color, UINT style) { diff --git a/common/src/gxe_context_raw_fill_color_set.c b/common/src/gxe_context_raw_fill_color_set.c index 317fa0fa..bb763ba6 100644 --- a/common/src/gxe_context_raw_fill_color_set.c +++ b/common/src/gxe_context_raw_fill_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_context_raw_fill_color_set(GX_COLOR line_color) { diff --git a/common/src/gxe_context_raw_line_color_set.c b/common/src/gxe_context_raw_line_color_set.c index 48b4fab6..5a96e496 100644 --- a/common/src/gxe_context_raw_line_color_set.c +++ b/common/src/gxe_context_raw_line_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,14 +58,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_context_raw_line_color_set(GX_COLOR line_color) { diff --git a/common/src/gxe_context_string_get.c b/common/src/gxe_context_string_get.c index 1a70decb..a068c31f 100644 --- a/common/src/gxe_context_string_get.c +++ b/common/src/gxe_context_string_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* Application Code */ /* GUIX default draw funtions */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_context_string_get(GX_RESOURCE_ID string_id, GX_CONST GX_CHAR **return_string) @@ -136,14 +129,6 @@ UINT status; /* Application Code */ /* GUIX default draw funtions */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_context_string_get_ext(GX_RESOURCE_ID string_id, GX_STRING *return_string) { diff --git a/common/src/gxe_display_active_language_set.c b/common/src/gxe_display_active_language_set.c index 1ae7fa6b..b1ebc7da 100644 --- a/common/src/gxe_display_active_language_set.c +++ b/common/src/gxe_display_active_language_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_display_active_language_set(GX_DISPLAY *display, GX_UBYTE language) { diff --git a/common/src/gxe_display_color_set.c b/common/src/gxe_display_color_set.c index 2fad8ffd..11e1bce2 100644 --- a/common/src/gxe_display_color_set.c +++ b/common/src/gxe_display_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* Application Code */ /* GUIX default draw funtions */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_display_color_set(GX_DISPLAY *display, GX_RESOURCE_ID resource_id, GX_COLOR new_color) { diff --git a/common/src/gxe_display_color_table_set.c b/common/src/gxe_display_color_table_set.c index f170e58c..fe672e7e 100644 --- a/common/src/gxe_display_color_table_set.c +++ b/common/src/gxe_display_color_table_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* Application Code */ /* GUIX default draw funtions */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_display_color_table_set(GX_DISPLAY *display, GX_COLOR *color_table, INT number_of_colors) { diff --git a/common/src/gxe_display_create.c b/common/src/gxe_display_create.c index 0f65f525..3bd661ac 100644 --- a/common/src/gxe_display_create.c +++ b/common/src/gxe_display_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_display_create(GX_DISPLAY *display, GX_CONST GX_CHAR *name, UINT (*display_driver_setup)(GX_DISPLAY *), diff --git a/common/src/gxe_display_delete.c b/common/src/gxe_display_delete.c index 0f6995ce..94e40b7d 100644 --- a/common/src/gxe_display_delete.c +++ b/common/src/gxe_display_delete.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_display_delete(GX_DISPLAY *display, VOID (*display_driver_cleanup)(GX_DISPLAY *)) { diff --git a/common/src/gxe_display_font_table_set.c b/common/src/gxe_display_font_table_set.c index 91f94136..89f11b51 100644 --- a/common/src/gxe_display_font_table_set.c +++ b/common/src/gxe_display_font_table_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_display_font_table_set(GX_DISPLAY *display, GX_FONT **font_table, UINT number_of_fonts) { diff --git a/common/src/gxe_display_language_table_get.c b/common/src/gxe_display_language_table_get.c index 95ff699b..000d3bac 100644 --- a/common/src/gxe_display_language_table_get.c +++ b/common/src/gxe_display_language_table_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_display_language_table_get(GX_DISPLAY *display, @@ -130,14 +123,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_display_language_table_get_ext(GX_DISPLAY *display, GX_STRING ***table, GX_UBYTE *language_count, UINT *string_count) { diff --git a/common/src/gxe_display_language_table_set.c b/common/src/gxe_display_language_table_set.c index 6d419f20..9aff8a62 100644 --- a/common/src/gxe_display_language_table_set.c +++ b/common/src/gxe_display_language_table_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_display_language_table_set(GX_DISPLAY *display, GX_CHAR ***language_table, @@ -141,14 +134,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_display_language_table_set_ext(GX_DISPLAY *display, GX_CONST GX_STRING **table, GX_UBYTE num_languages, UINT number_of_strings) { @@ -250,12 +235,6 @@ UINT string_length; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 01-31-2022 Ting Zhu Initial Version 6.1.10 */ -/* */ /**************************************************************************/ #if defined(GX_DYNAMIC_BIDI_TEXT_SUPPORT) UINT _gxe_display_language_direction_table_set(GX_DISPLAY *display, GX_CONST GX_UBYTE *language_direction_table, GX_UBYTE num_languages) diff --git a/common/src/gxe_display_pixelmap_table_set.c b/common/src/gxe_display_pixelmap_table_set.c index e9700cca..015556cc 100644 --- a/common/src/gxe_display_pixelmap_table_set.c +++ b/common/src/gxe_display_pixelmap_table_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_display_pixelmap_table_set(GX_DISPLAY *display, GX_PIXELMAP **pixelmap_table, UINT number_of_pixelmaps) { diff --git a/common/src/gxe_display_string_get.c b/common/src/gxe_display_string_get.c index 7b3019ec..9d0aeec4 100644 --- a/common/src/gxe_display_string_get.c +++ b/common/src/gxe_display_string_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_display_string_get(GX_DISPLAY *display, GX_RESOURCE_ID string_id, GX_CONST GX_CHAR **return_string) @@ -124,14 +117,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_display_string_get_ext(GX_DISPLAY *display, GX_RESOURCE_ID string_id, GX_STRING *return_string) { diff --git a/common/src/gxe_display_string_table_get.c b/common/src/gxe_display_string_table_get.c index e3807b6b..190ce8fa 100644 --- a/common/src/gxe_display_string_table_get.c +++ b/common/src/gxe_display_string_table_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_display_string_table_get(GX_DISPLAY *display, GX_UBYTE language, GX_CHAR ***put_table, UINT *put_size) @@ -134,14 +127,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_display_string_table_get_ext(GX_DISPLAY *display, GX_UBYTE language, GX_STRING **put_table, UINT *put_size) { diff --git a/common/src/gxe_display_theme_install.c b/common/src/gxe_display_theme_install.c index ab09502d..803ca6df 100644 --- a/common/src/gxe_display_theme_install.c +++ b/common/src/gxe_display_theme_install.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* Application Code */ /* GUIX default draw funtions */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_display_theme_install(GX_DISPLAY *display, GX_CONST GX_THEME *theme_ptr) { diff --git a/common/src/gxe_drop_list_close.c b/common/src/gxe_drop_list_close.c index 26ab8622..562fd3c6 100644 --- a/common/src/gxe_drop_list_close.c +++ b/common/src/gxe_drop_list_close.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_drop_list_close(GX_DROP_LIST *drop_list) { diff --git a/common/src/gxe_drop_list_create.c b/common/src/gxe_drop_list_create.c index 3d5a6c43..0681de3d 100644 --- a/common/src/gxe_drop_list_create.c +++ b/common/src/gxe_drop_list_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,14 +73,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_drop_list_create(GX_DROP_LIST *drop_list, GX_CONST GX_CHAR *name, GX_WIDGET *parent, INT total_rows, INT open_height, diff --git a/common/src/gxe_drop_list_event_process.c b/common/src/gxe_drop_list_event_process.c index e341293d..d6eef651 100644 --- a/common/src/gxe_drop_list_event_process.c +++ b/common/src/gxe_drop_list_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_drop_list_event_process(GX_DROP_LIST *list, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_drop_list_open.c b/common/src/gxe_drop_list_open.c index 0bee2401..25ee1c09 100644 --- a/common/src/gxe_drop_list_open.c +++ b/common/src/gxe_drop_list_open.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_drop_list_open(GX_DROP_LIST *drop_list) { diff --git a/common/src/gxe_drop_list_pixelmap_set.c b/common/src/gxe_drop_list_pixelmap_set.c index 09d84c38..f1ef8ff8 100644 --- a/common/src/gxe_drop_list_pixelmap_set.c +++ b/common/src/gxe_drop_list_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_drop_list_pixelmap_set(GX_DROP_LIST *drop_list, GX_RESOURCE_ID id) { diff --git a/common/src/gxe_drop_list_popup_get.c b/common/src/gxe_drop_list_popup_get.c index 09c46242..520a864b 100644 --- a/common/src/gxe_drop_list_popup_get.c +++ b/common/src/gxe_drop_list_popup_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_drop_list_popup_get(GX_DROP_LIST *drop_list, GX_VERTICAL_LIST **return_list) diff --git a/common/src/gxe_generic_scroll_wheel_children_position.c b/common/src/gxe_generic_scroll_wheel_children_position.c index ec90b155..b48a9c70 100644 --- a/common/src/gxe_generic_scroll_wheel_children_position.c +++ b/common/src/gxe_generic_scroll_wheel_children_position.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,12 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gxe_generic_scroll_wheel_children_position(GX_GENERIC_SCROLL_WHEEL *wheel) { diff --git a/common/src/gxe_generic_scroll_wheel_create.c b/common/src/gxe_generic_scroll_wheel_create.c index d3fd63db..1fc48584 100644 --- a/common/src/gxe_generic_scroll_wheel_create.c +++ b/common/src/gxe_generic_scroll_wheel_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,12 +72,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gxe_generic_scroll_wheel_create(GX_GENERIC_SCROLL_WHEEL *wheel, GX_CONST GX_CHAR *name, GX_WIDGET *parent, INT total_rows, diff --git a/common/src/gxe_generic_scroll_wheel_event_process.c b/common/src/gxe_generic_scroll_wheel_event_process.c index 8f627e18..fd86448a 100644 --- a/common/src/gxe_generic_scroll_wheel_event_process.c +++ b/common/src/gxe_generic_scroll_wheel_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,12 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gxe_generic_scroll_wheel_event_process(GX_GENERIC_SCROLL_WHEEL *wheel, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_generic_scroll_wheel_row_height_set.c b/common/src/gxe_generic_scroll_wheel_row_height_set.c index 51e88a8c..94561767 100644 --- a/common/src/gxe_generic_scroll_wheel_row_height_set.c +++ b/common/src/gxe_generic_scroll_wheel_row_height_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,12 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 06-02-2021 Kenneth Maxwell Initial Version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gxe_generic_scroll_wheel_row_height_set(GX_GENERIC_SCROLL_WHEEL *wheel, GX_VALUE row_height) { diff --git a/common/src/gxe_generic_scroll_wheel_total_rows_set.c b/common/src/gxe_generic_scroll_wheel_total_rows_set.c index 7abf0b0f..f6a0d478 100644 --- a/common/src/gxe_generic_scroll_wheel_total_rows_set.c +++ b/common/src/gxe_generic_scroll_wheel_total_rows_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,12 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ -/* */ /**************************************************************************/ UINT _gxe_generic_scroll_wheel_total_rows_set(GX_GENERIC_SCROLL_WHEEL *wheel, INT total_rows) { diff --git a/common/src/gxe_horizontal_list_children_position.c b/common/src/gxe_horizontal_list_children_position.c index 83b96e4e..245e4d45 100644 --- a/common/src/gxe_horizontal_list_children_position.c +++ b/common/src/gxe_horizontal_list_children_position.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_horizontal_list_children_position(GX_HORIZONTAL_LIST *horizontal_list) { diff --git a/common/src/gxe_horizontal_list_create.c b/common/src/gxe_horizontal_list_create.c index 81698be5..aa9b94e1 100644 --- a/common/src/gxe_horizontal_list_create.c +++ b/common/src/gxe_horizontal_list_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,14 +72,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_horizontal_list_create(GX_HORIZONTAL_LIST *horizontal_list, GX_CONST GX_CHAR *name, diff --git a/common/src/gxe_horizontal_list_event_process.c b/common/src/gxe_horizontal_list_event_process.c index b55e252e..02753764 100644 --- a/common/src/gxe_horizontal_list_event_process.c +++ b/common/src/gxe_horizontal_list_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_horizontal_list_event_process(GX_HORIZONTAL_LIST *list, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_horizontal_list_page_index_set.c b/common/src/gxe_horizontal_list_page_index_set.c index f78cf3c2..70d2a903 100644 --- a/common/src/gxe_horizontal_list_page_index_set.c +++ b/common/src/gxe_horizontal_list_page_index_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_horizontal_list_page_index_set(GX_HORIZONTAL_LIST *horizontal_list, INT list_entry) { diff --git a/common/src/gxe_horizontal_list_selected_index_get.c b/common/src/gxe_horizontal_list_selected_index_get.c index c9ead15d..692ca2ef 100644 --- a/common/src/gxe_horizontal_list_selected_index_get.c +++ b/common/src/gxe_horizontal_list_selected_index_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_horizontal_list_selected_index_get(GX_HORIZONTAL_LIST *horizontal_list, INT *return_index) diff --git a/common/src/gxe_horizontal_list_selected_set.c b/common/src/gxe_horizontal_list_selected_set.c index c9c355aa..e85fd9c5 100644 --- a/common/src/gxe_horizontal_list_selected_set.c +++ b/common/src/gxe_horizontal_list_selected_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_horizontal_list_selected_set(GX_HORIZONTAL_LIST *horizontal_list, INT index) { diff --git a/common/src/gxe_horizontal_list_selected_widget_get.c b/common/src/gxe_horizontal_list_selected_widget_get.c index 77b64f97..92d9d4c6 100644 --- a/common/src/gxe_horizontal_list_selected_widget_get.c +++ b/common/src/gxe_horizontal_list_selected_widget_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_horizontal_list_selected_widget_get(GX_HORIZONTAL_LIST *horizontal_list, GX_WIDGET **return_list_entry) diff --git a/common/src/gxe_horizontal_list_total_columns_set.c b/common/src/gxe_horizontal_list_total_columns_set.c index e1b924a0..72940fe5 100644 --- a/common/src/gxe_horizontal_list_total_columns_set.c +++ b/common/src/gxe_horizontal_list_total_columns_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_horizontal_list_total_columns_set(GX_HORIZONTAL_LIST *list, INT count) { diff --git a/common/src/gxe_horizontal_scrollbar_create.c b/common/src/gxe_horizontal_scrollbar_create.c index 5469df82..584a3111 100644 --- a/common/src/gxe_horizontal_scrollbar_create.c +++ b/common/src/gxe_horizontal_scrollbar_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_horizontal_scrollbar_create(GX_SCROLLBAR *scrollbar, GX_CONST GX_CHAR *name, GX_WINDOW *parent, GX_SCROLLBAR_APPEARANCE *appearance, diff --git a/common/src/gxe_icon_button_create.c b/common/src/gxe_icon_button_create.c index b9fd10dd..4f80970f 100644 --- a/common/src/gxe_icon_button_create.c +++ b/common/src/gxe_icon_button_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_icon_button_create(GX_ICON_BUTTON *button, GX_CONST GX_CHAR *name, diff --git a/common/src/gxe_icon_button_pixelmap_set.c b/common/src/gxe_icon_button_pixelmap_set.c index 6d705e9a..935d5e7b 100644 --- a/common/src/gxe_icon_button_pixelmap_set.c +++ b/common/src/gxe_icon_button_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_icon_button_pixelmap_set(GX_ICON_BUTTON *button, GX_RESOURCE_ID pixelmap_id) diff --git a/common/src/gxe_icon_create.c b/common/src/gxe_icon_create.c index 57383997..261d3daa 100644 --- a/common/src/gxe_icon_create.c +++ b/common/src/gxe_icon_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,14 +71,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_icon_create(GX_ICON *icon, GX_CONST GX_CHAR *name, GX_WIDGET *parent, GX_RESOURCE_ID pixelmap_id, ULONG style, USHORT icon_id, diff --git a/common/src/gxe_icon_event_process.c b/common/src/gxe_icon_event_process.c index 94f88a1e..f6445c7b 100644 --- a/common/src/gxe_icon_event_process.c +++ b/common/src/gxe_icon_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_icon_event_process(GX_ICON *button, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_icon_pixelmap_set.c b/common/src/gxe_icon_pixelmap_set.c index b2aa4123..ce4ac724 100644 --- a/common/src/gxe_icon_pixelmap_set.c +++ b/common/src/gxe_icon_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_icon_pixelmap_set(GX_ICON *icon, GX_RESOURCE_ID normal_pixelmap_id, diff --git a/common/src/gxe_image_reader_create.c b/common/src/gxe_image_reader_create.c index ad116638..16389842 100644 --- a/common/src/gxe_image_reader_create.c +++ b/common/src/gxe_image_reader_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) UINT _gxe_image_reader_create(GX_IMAGE_READER *image_reader, diff --git a/common/src/gxe_image_reader_palette_set.c b/common/src/gxe_image_reader_palette_set.c index 28a0fef0..3211393b 100644 --- a/common/src/gxe_image_reader_palette_set.c +++ b/common/src/gxe_image_reader_palette_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) UINT _gxe_image_reader_palette_set(GX_IMAGE_READER *image_reader, GX_COLOR *pal, UINT palsize) diff --git a/common/src/gxe_image_reader_start.c b/common/src/gxe_image_reader_start.c index 0dfdf9e6..0b1817d6 100644 --- a/common/src/gxe_image_reader_start.c +++ b/common/src/gxe_image_reader_start.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_SOFTWARE_DECODER_SUPPORT) UINT _gxe_image_reader_start(GX_IMAGE_READER *image_reader, GX_PIXELMAP *outmap) diff --git a/common/src/gxe_line_chart_create.c b/common/src/gxe_line_chart_create.c index 5b84d2a7..d3166e9a 100644 --- a/common/src/gxe_line_chart_create.c +++ b/common/src/gxe_line_chart_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_line_chart_create(GX_LINE_CHART *chart, GX_CONST GX_CHAR *name, diff --git a/common/src/gxe_line_chart_update.c b/common/src/gxe_line_chart_update.c index 71653a44..715289f7 100644 --- a/common/src/gxe_line_chart_update.c +++ b/common/src/gxe_line_chart_update.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_line_chart_update(GX_LINE_CHART *chart, INT *data, INT data_count) { diff --git a/common/src/gxe_line_chart_y_scale_calculate.c b/common/src/gxe_line_chart_y_scale_calculate.c index d75deb8b..92275ba9 100644 --- a/common/src/gxe_line_chart_y_scale_calculate.c +++ b/common/src/gxe_line_chart_y_scale_calculate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,14 +58,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_line_chart_y_scale_calculate(GX_LINE_CHART *chart, INT *return_value) { diff --git a/common/src/gxe_menu_create.c b/common/src/gxe_menu_create.c index db6f3ff6..5d299be8 100644 --- a/common/src/gxe_menu_create.c +++ b/common/src/gxe_menu_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_menu_create(GX_MENU *menu, GX_CONST GX_CHAR *name, GX_WIDGET *parent, GX_RESOURCE_ID text_id, GX_RESOURCE_ID fill_id, diff --git a/common/src/gxe_menu_event_process.c b/common/src/gxe_menu_event_process.c index 4a19e2f5..31db0283 100644 --- a/common/src/gxe_menu_event_process.c +++ b/common/src/gxe_menu_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,12 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ UINT _gxe_menu_event_process(GX_MENU *menu, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_menu_insert.c b/common/src/gxe_menu_insert.c index 1870d808..5f707f23 100644 --- a/common/src/gxe_menu_insert.c +++ b/common/src/gxe_menu_insert.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_menu_insert(GX_MENU *menu, GX_WIDGET *widget) { diff --git a/common/src/gxe_menu_remove.c b/common/src/gxe_menu_remove.c index afabea5b..32947377 100644 --- a/common/src/gxe_menu_remove.c +++ b/common/src/gxe_menu_remove.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_menu_remove(GX_MENU *menu, GX_WIDGET *widget) { diff --git a/common/src/gxe_menu_text_offset_set.c b/common/src/gxe_menu_text_offset_set.c index 08cff557..cad4a5e6 100644 --- a/common/src/gxe_menu_text_offset_set.c +++ b/common/src/gxe_menu_text_offset_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_menu_text_offset_set(GX_MENU *menu, GX_VALUE x_offset, GX_VALUE y_offset) { diff --git a/common/src/gxe_multi_line_text_button_create.c b/common/src/gxe_multi_line_text_button_create.c index 17573e5b..c601f65a 100644 --- a/common/src/gxe_multi_line_text_button_create.c +++ b/common/src/gxe_multi_line_text_button_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_button_create(GX_MULTI_LINE_TEXT_BUTTON *button, GX_CONST GX_CHAR *name, GX_WIDGET *parent, GX_RESOURCE_ID text_id, ULONG style, USHORT Id, diff --git a/common/src/gxe_multi_line_text_button_event_process.c b/common/src/gxe_multi_line_text_button_event_process.c index 0df66417..3e4b3306 100644 --- a/common/src/gxe_multi_line_text_button_event_process.c +++ b/common/src/gxe_multi_line_text_button_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_button_event_process(GX_MULTI_LINE_TEXT_BUTTON *button, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_multi_line_text_button_text_id_set.c b/common/src/gxe_multi_line_text_button_text_id_set.c index 93736ff5..7731b74c 100644 --- a/common/src/gxe_multi_line_text_button_text_id_set.c +++ b/common/src/gxe_multi_line_text_button_text_id_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_button_text_id_set(GX_MULTI_LINE_TEXT_BUTTON *button, GX_RESOURCE_ID string_id) diff --git a/common/src/gxe_multi_line_text_button_text_set.c b/common/src/gxe_multi_line_text_button_text_set.c index 5f4ee221..431c7fe8 100644 --- a/common/src/gxe_multi_line_text_button_text_set.c +++ b/common/src/gxe_multi_line_text_button_text_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_multi_line_text_button_text_set(GX_MULTI_LINE_TEXT_BUTTON *button, @@ -127,14 +120,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_button_text_set_ext(GX_MULTI_LINE_TEXT_BUTTON *button, GX_CONST GX_STRING *text) { diff --git a/common/src/gxe_multi_line_text_input_backspace.c b/common/src/gxe_multi_line_text_input_backspace.c index 511a0b19..044fc28b 100644 --- a/common/src/gxe_multi_line_text_input_backspace.c +++ b/common/src/gxe_multi_line_text_input_backspace.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_input_backspace(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gxe_multi_line_text_input_buffer_clear.c b/common/src/gxe_multi_line_text_input_buffer_clear.c index 83eae071..f6136fca 100644 --- a/common/src/gxe_multi_line_text_input_buffer_clear.c +++ b/common/src/gxe_multi_line_text_input_buffer_clear.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_input_buffer_clear(GX_MULTI_LINE_TEXT_INPUT *text_input_ptr) diff --git a/common/src/gxe_multi_line_text_input_buffer_get.c b/common/src/gxe_multi_line_text_input_buffer_get.c index 03a32cf8..d56af431 100644 --- a/common/src/gxe_multi_line_text_input_buffer_get.c +++ b/common/src/gxe_multi_line_text_input_buffer_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_input_buffer_get(GX_MULTI_LINE_TEXT_INPUT *text_input_ptr, GX_CHAR **buffer_address, diff --git a/common/src/gxe_multi_line_text_input_char_insert.c b/common/src/gxe_multi_line_text_input_char_insert.c index 283215b2..3d8baaee 100644 --- a/common/src/gxe_multi_line_text_input_char_insert.c +++ b/common/src/gxe_multi_line_text_input_char_insert.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_multi_line_text_input_char_insert(GX_MULTI_LINE_TEXT_INPUT *text_input, GX_UBYTE *str, UINT str_size) @@ -143,14 +136,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_input_char_insert_ext(GX_MULTI_LINE_TEXT_INPUT *text_input, GX_CONST GX_STRING *str) { diff --git a/common/src/gxe_multi_line_text_input_create.c b/common/src/gxe_multi_line_text_input_create.c index eaffba4a..057b3d70 100644 --- a/common/src/gxe_multi_line_text_input_create.c +++ b/common/src/gxe_multi_line_text_input_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,17 +72,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* removed input buffer check, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_input_create(GX_MULTI_LINE_TEXT_INPUT *text_input_ptr, GX_CONST GX_CHAR *name_ptr, diff --git a/common/src/gxe_multi_line_text_input_cursor_pos_get.c b/common/src/gxe_multi_line_text_input_cursor_pos_get.c index 7bb2fd97..19e192e8 100644 --- a/common/src/gxe_multi_line_text_input_cursor_pos_get.c +++ b/common/src/gxe_multi_line_text_input_cursor_pos_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_input_cursor_pos_get(GX_MULTI_LINE_TEXT_INPUT *input, GX_POINT *cursor_pos) { diff --git a/common/src/gxe_multi_line_text_input_delete.c b/common/src/gxe_multi_line_text_input_delete.c index e1338a06..e1e647da 100644 --- a/common/src/gxe_multi_line_text_input_delete.c +++ b/common/src/gxe_multi_line_text_input_delete.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_input_delete(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gxe_multi_line_text_input_down_arrow.c b/common/src/gxe_multi_line_text_input_down_arrow.c index 479cc01a..1047fe68 100644 --- a/common/src/gxe_multi_line_text_input_down_arrow.c +++ b/common/src/gxe_multi_line_text_input_down_arrow.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_input_down_arrow(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gxe_multi_line_text_input_end.c b/common/src/gxe_multi_line_text_input_end.c index c0fe48d6..80ff77b0 100644 --- a/common/src/gxe_multi_line_text_input_end.c +++ b/common/src/gxe_multi_line_text_input_end.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_input_end(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gxe_multi_line_text_input_event_process.c b/common/src/gxe_multi_line_text_input_event_process.c index 3e0fb114..d4241bfc 100644 --- a/common/src/gxe_multi_line_text_input_event_process.c +++ b/common/src/gxe_multi_line_text_input_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_input_event_process(GX_MULTI_LINE_TEXT_INPUT *input, GX_EVENT *event_ptr) diff --git a/common/src/gxe_multi_line_text_input_fill_color_set.c b/common/src/gxe_multi_line_text_input_fill_color_set.c index 52dea2de..afb192d4 100644 --- a/common/src/gxe_multi_line_text_input_fill_color_set.c +++ b/common/src/gxe_multi_line_text_input_fill_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,14 +72,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_input_fill_color_set(GX_MULTI_LINE_TEXT_INPUT *input, GX_RESOURCE_ID normal_fill_color_id, diff --git a/common/src/gxe_multi_line_text_input_home.c b/common/src/gxe_multi_line_text_input_home.c index 69128a93..64b1d159 100644 --- a/common/src/gxe_multi_line_text_input_home.c +++ b/common/src/gxe_multi_line_text_input_home.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_input_home(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gxe_multi_line_text_input_left_arrow.c b/common/src/gxe_multi_line_text_input_left_arrow.c index d0f50245..8c81ed92 100644 --- a/common/src/gxe_multi_line_text_input_left_arrow.c +++ b/common/src/gxe_multi_line_text_input_left_arrow.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_input_left_arrow(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gxe_multi_line_text_input_right_arrow.c b/common/src/gxe_multi_line_text_input_right_arrow.c index 2df6158b..268cd2d2 100644 --- a/common/src/gxe_multi_line_text_input_right_arrow.c +++ b/common/src/gxe_multi_line_text_input_right_arrow.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_input_right_arrow(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gxe_multi_line_text_input_style_add.c b/common/src/gxe_multi_line_text_input_style_add.c index be683118..c8cc7100 100644 --- a/common/src/gxe_multi_line_text_input_style_add.c +++ b/common/src/gxe_multi_line_text_input_style_add.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_input_style_add(GX_MULTI_LINE_TEXT_INPUT *text_input_ptr, ULONG style) { diff --git a/common/src/gxe_multi_line_text_input_style_remove.c b/common/src/gxe_multi_line_text_input_style_remove.c index c9a867b3..d0f7ae4f 100644 --- a/common/src/gxe_multi_line_text_input_style_remove.c +++ b/common/src/gxe_multi_line_text_input_style_remove.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_input_style_remove(GX_MULTI_LINE_TEXT_INPUT *text_input_ptr, ULONG style) { diff --git a/common/src/gxe_multi_line_text_input_style_set.c b/common/src/gxe_multi_line_text_input_style_set.c index 2edee623..65ba3281 100644 --- a/common/src/gxe_multi_line_text_input_style_set.c +++ b/common/src/gxe_multi_line_text_input_style_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_input_style_set(GX_MULTI_LINE_TEXT_INPUT *text_input_ptr, ULONG style) { diff --git a/common/src/gxe_multi_line_text_input_text_color_set.c b/common/src/gxe_multi_line_text_input_text_color_set.c index d3cea089..a2355f12 100644 --- a/common/src/gxe_multi_line_text_input_text_color_set.c +++ b/common/src/gxe_multi_line_text_input_text_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,14 +72,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_input_text_color_set(GX_MULTI_LINE_TEXT_INPUT *input, GX_RESOURCE_ID normal_text_color_id, diff --git a/common/src/gxe_multi_line_text_input_text_select.c b/common/src/gxe_multi_line_text_input_text_select.c index 834f6dfb..de99c997 100644 --- a/common/src/gxe_multi_line_text_input_text_select.c +++ b/common/src/gxe_multi_line_text_input_text_select.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_input_text_select(GX_MULTI_LINE_TEXT_INPUT *input, UINT start_index, UINT end_index) { diff --git a/common/src/gxe_multi_line_text_input_text_set.c b/common/src/gxe_multi_line_text_input_text_set.c index ec696305..e3c14029 100644 --- a/common/src/gxe_multi_line_text_input_text_set.c +++ b/common/src/gxe_multi_line_text_input_text_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_multi_line_text_input_text_set(GX_MULTI_LINE_TEXT_INPUT *input, GX_CONST GX_CHAR *text) @@ -128,14 +121,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_input_text_set_ext(GX_MULTI_LINE_TEXT_INPUT *input, GX_CONST GX_STRING *text) { diff --git a/common/src/gxe_multi_line_text_input_up_arrow.c b/common/src/gxe_multi_line_text_input_up_arrow.c index 16180aa2..450e0121 100644 --- a/common/src/gxe_multi_line_text_input_up_arrow.c +++ b/common/src/gxe_multi_line_text_input_up_arrow.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_input_up_arrow(GX_MULTI_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gxe_multi_line_text_view_create.c b/common/src/gxe_multi_line_text_view_create.c index 08356300..0e7dfd0f 100644 --- a/common/src/gxe_multi_line_text_view_create.c +++ b/common/src/gxe_multi_line_text_view_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_view_create(GX_MULTI_LINE_TEXT_VIEW *text_view_ptr, GX_CONST GX_CHAR *name_ptr, diff --git a/common/src/gxe_multi_line_text_view_event_process.c b/common/src/gxe_multi_line_text_view_event_process.c index 140b7fea..a1c69ae9 100644 --- a/common/src/gxe_multi_line_text_view_event_process.c +++ b/common/src/gxe_multi_line_text_view_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_view_event_process(GX_MULTI_LINE_TEXT_VIEW *view, GX_EVENT *event_ptr) diff --git a/common/src/gxe_multi_line_text_view_font_set.c b/common/src/gxe_multi_line_text_view_font_set.c index e1239394..c5e535fc 100644 --- a/common/src/gxe_multi_line_text_view_font_set.c +++ b/common/src/gxe_multi_line_text_view_font_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_view_font_set(GX_MULTI_LINE_TEXT_VIEW *view, GX_RESOURCE_ID font_id) { diff --git a/common/src/gxe_multi_line_text_view_line_space_set.c b/common/src/gxe_multi_line_text_view_line_space_set.c index c1ae667d..e02b7ee8 100644 --- a/common/src/gxe_multi_line_text_view_line_space_set.c +++ b/common/src/gxe_multi_line_text_view_line_space_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_view_line_space_set(GX_MULTI_LINE_TEXT_VIEW *view, GX_BYTE line_space) { diff --git a/common/src/gxe_multi_line_text_view_scroll_info_get.c b/common/src/gxe_multi_line_text_view_scroll_info_get.c index 4732e845..ca00a631 100644 --- a/common/src/gxe_multi_line_text_view_scroll_info_get.c +++ b/common/src/gxe_multi_line_text_view_scroll_info_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_view_scroll_info_get(GX_MULTI_LINE_TEXT_VIEW *text_view, ULONG style, GX_SCROLL_INFO *return_scroll_info) { diff --git a/common/src/gxe_multi_line_text_view_text_color_set.c b/common/src/gxe_multi_line_text_view_text_color_set.c index 9d2462dc..feb88ea5 100644 --- a/common/src/gxe_multi_line_text_view_text_color_set.c +++ b/common/src/gxe_multi_line_text_view_text_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_view_text_color_set(GX_MULTI_LINE_TEXT_VIEW *view, GX_RESOURCE_ID normal_text_color_id, diff --git a/common/src/gxe_multi_line_text_view_text_id_set.c b/common/src/gxe_multi_line_text_view_text_id_set.c index d2ba8a3f..ed17174b 100644 --- a/common/src/gxe_multi_line_text_view_text_id_set.c +++ b/common/src/gxe_multi_line_text_view_text_id_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_view_text_id_set(GX_MULTI_LINE_TEXT_VIEW *text_view_ptr, GX_RESOURCE_ID text_id) diff --git a/common/src/gxe_multi_line_text_view_text_set.c b/common/src/gxe_multi_line_text_view_text_set.c index e71affae..d5841925 100644 --- a/common/src/gxe_multi_line_text_view_text_set.c +++ b/common/src/gxe_multi_line_text_view_text_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_multi_line_text_view_text_set(GX_MULTI_LINE_TEXT_VIEW *view, @@ -128,14 +121,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_view_text_set_ext(GX_MULTI_LINE_TEXT_VIEW *view, GX_CONST GX_STRING *text) diff --git a/common/src/gxe_multi_line_text_view_whitespace_set.c b/common/src/gxe_multi_line_text_view_whitespace_set.c index 83ddae2f..8d04ebef 100644 --- a/common/src/gxe_multi_line_text_view_whitespace_set.c +++ b/common/src/gxe_multi_line_text_view_whitespace_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_multi_line_text_view_whitespace_set(GX_MULTI_LINE_TEXT_VIEW *view, GX_UBYTE whitespace) { diff --git a/common/src/gxe_numeric_pixelmap_prompt_create.c b/common/src/gxe_numeric_pixelmap_prompt_create.c index 28f995ca..e588370e 100644 --- a/common/src/gxe_numeric_pixelmap_prompt_create.c +++ b/common/src/gxe_numeric_pixelmap_prompt_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -73,14 +74,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_numeric_pixelmap_prompt_create(GX_NUMERIC_PIXELMAP_PROMPT *prompt, GX_CONST GX_CHAR *name, GX_WIDGET *parent, diff --git a/common/src/gxe_numeric_pixelmap_prompt_format_function_set.c b/common/src/gxe_numeric_pixelmap_prompt_format_function_set.c index 8a6e9d86..d1ddb9cd 100644 --- a/common/src/gxe_numeric_pixelmap_prompt_format_function_set.c +++ b/common/src/gxe_numeric_pixelmap_prompt_format_function_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_numeric_pixelmap_prompt_format_function_set(GX_NUMERIC_PIXELMAP_PROMPT *prompt, VOID (*format_func)(GX_NUMERIC_PIXELMAP_PROMPT *, INT)) { diff --git a/common/src/gxe_numeric_pixelmap_prompt_value_set.c b/common/src/gxe_numeric_pixelmap_prompt_value_set.c index 8e45a511..89d61fc3 100644 --- a/common/src/gxe_numeric_pixelmap_prompt_value_set.c +++ b/common/src/gxe_numeric_pixelmap_prompt_value_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_numeric_pixelmap_prompt_value_set(GX_NUMERIC_PIXELMAP_PROMPT *prompt, INT value) { diff --git a/common/src/gxe_numeric_prompt_create.c b/common/src/gxe_numeric_prompt_create.c index 0e0ce9fd..8c527764 100644 --- a/common/src/gxe_numeric_prompt_create.c +++ b/common/src/gxe_numeric_prompt_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,14 +72,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_numeric_prompt_create(GX_NUMERIC_PROMPT *prompt, GX_CONST GX_CHAR *name, GX_WIDGET *parent, GX_RESOURCE_ID text_id, ULONG style, USHORT prompt_id, GX_CONST GX_RECTANGLE *size, diff --git a/common/src/gxe_numeric_prompt_format_function_set.c b/common/src/gxe_numeric_prompt_format_function_set.c index 7a34b8d7..b16fd797 100644 --- a/common/src/gxe_numeric_prompt_format_function_set.c +++ b/common/src/gxe_numeric_prompt_format_function_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_numeric_prompt_format_function_set(GX_NUMERIC_PROMPT *prompt, VOID (*format_func)(GX_NUMERIC_PROMPT *, INT)) { diff --git a/common/src/gxe_numeric_prompt_value_set.c b/common/src/gxe_numeric_prompt_value_set.c index 72407214..3efc5705 100644 --- a/common/src/gxe_numeric_prompt_value_set.c +++ b/common/src/gxe_numeric_prompt_value_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_numeric_prompt_value_set(GX_NUMERIC_PROMPT *prompt, INT value) { diff --git a/common/src/gxe_numeric_scroll_wheel_create.c b/common/src/gxe_numeric_scroll_wheel_create.c index 4e65f960..54782295 100644 --- a/common/src/gxe_numeric_scroll_wheel_create.c +++ b/common/src/gxe_numeric_scroll_wheel_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_numeric_scroll_wheel_create(GX_NUMERIC_SCROLL_WHEEL *wheel, GX_CONST GX_CHAR *name, diff --git a/common/src/gxe_numeric_scroll_wheel_range_set.c b/common/src/gxe_numeric_scroll_wheel_range_set.c index 35e4f731..bb76d5a8 100644 --- a/common/src/gxe_numeric_scroll_wheel_range_set.c +++ b/common/src/gxe_numeric_scroll_wheel_range_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_numeric_scroll_wheel_range_set(GX_NUMERIC_SCROLL_WHEEL *wheel, INT start_val, INT end_val) { diff --git a/common/src/gxe_pixelmap_button_create.c b/common/src/gxe_pixelmap_button_create.c index 1e68cb95..40ca7e9f 100644 --- a/common/src/gxe_pixelmap_button_create.c +++ b/common/src/gxe_pixelmap_button_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,14 +72,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_pixelmap_button_create(GX_PIXELMAP_BUTTON *button, GX_CONST GX_CHAR *name, diff --git a/common/src/gxe_pixelmap_button_event_process.c b/common/src/gxe_pixelmap_button_event_process.c index b4621886..ec58e569 100644 --- a/common/src/gxe_pixelmap_button_event_process.c +++ b/common/src/gxe_pixelmap_button_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_pixelmap_button_event_process(GX_PIXELMAP_BUTTON *button, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_pixelmap_button_pixelmap_set.c b/common/src/gxe_pixelmap_button_pixelmap_set.c index cb427dd3..ca4e06b6 100644 --- a/common/src/gxe_pixelmap_button_pixelmap_set.c +++ b/common/src/gxe_pixelmap_button_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_pixelmap_button_pixelmap_set(GX_PIXELMAP_BUTTON *button, GX_RESOURCE_ID normal_id, diff --git a/common/src/gxe_pixelmap_prompt_create.c b/common/src/gxe_pixelmap_prompt_create.c index a10d8dc4..e2565d6b 100644 --- a/common/src/gxe_pixelmap_prompt_create.c +++ b/common/src/gxe_pixelmap_prompt_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -73,14 +74,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_pixelmap_prompt_create(GX_PIXELMAP_PROMPT *prompt, GX_CONST GX_CHAR *name, diff --git a/common/src/gxe_pixelmap_prompt_pixelmap_set.c b/common/src/gxe_pixelmap_prompt_pixelmap_set.c index 27f56fb1..33ec6d78 100644 --- a/common/src/gxe_pixelmap_prompt_pixelmap_set.c +++ b/common/src/gxe_pixelmap_prompt_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_pixelmap_prompt_pixelmap_set(GX_PIXELMAP_PROMPT *prompt, GX_RESOURCE_ID normal_left_id, diff --git a/common/src/gxe_pixelmap_slider_create.c b/common/src/gxe_pixelmap_slider_create.c index 34c8f126..05c761b3 100644 --- a/common/src/gxe_pixelmap_slider_create.c +++ b/common/src/gxe_pixelmap_slider_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,14 +73,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_pixelmap_slider_create(GX_PIXELMAP_SLIDER *slider, GX_CONST GX_CHAR *name, diff --git a/common/src/gxe_pixelmap_slider_event_process.c b/common/src/gxe_pixelmap_slider_event_process.c index c2ccc2f6..6db3bdc3 100644 --- a/common/src/gxe_pixelmap_slider_event_process.c +++ b/common/src/gxe_pixelmap_slider_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_pixelmap_slider_event_process(GX_PIXELMAP_SLIDER *slider, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_pixelmap_slider_pixelmap_set.c b/common/src/gxe_pixelmap_slider_pixelmap_set.c index f12c326b..5bd89a1a 100644 --- a/common/src/gxe_pixelmap_slider_pixelmap_set.c +++ b/common/src/gxe_pixelmap_slider_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_pixelmap_slider_pixelmap_set(GX_PIXELMAP_SLIDER *slider, GX_PIXELMAP_SLIDER_INFO *pixinfo) diff --git a/common/src/gxe_progress_bar_create.c b/common/src/gxe_progress_bar_create.c index 7e68bf71..9470cd62 100644 --- a/common/src/gxe_progress_bar_create.c +++ b/common/src/gxe_progress_bar_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_progress_bar_create(GX_PROGRESS_BAR *progress_bar, GX_CONST GX_CHAR *name, GX_WIDGET *parent, diff --git a/common/src/gxe_progress_bar_event_process.c b/common/src/gxe_progress_bar_event_process.c index 8c3b9bd8..b4d04a24 100644 --- a/common/src/gxe_progress_bar_event_process.c +++ b/common/src/gxe_progress_bar_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_progress_bar_event_process(GX_PROGRESS_BAR *progress_bar, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_progress_bar_font_set.c b/common/src/gxe_progress_bar_font_set.c index bc913b10..2ed44957 100644 --- a/common/src/gxe_progress_bar_font_set.c +++ b/common/src/gxe_progress_bar_font_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_progress_bar_font_set(GX_PROGRESS_BAR *progress_bar, GX_RESOURCE_ID font_id) { diff --git a/common/src/gxe_progress_bar_info_set.c b/common/src/gxe_progress_bar_info_set.c index 12f32eb1..b4f01b48 100644 --- a/common/src/gxe_progress_bar_info_set.c +++ b/common/src/gxe_progress_bar_info_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_progress_bar_info_set(GX_PROGRESS_BAR *bar, GX_PROGRESS_BAR_INFO *info) { diff --git a/common/src/gxe_progress_bar_pixelmap_set.c b/common/src/gxe_progress_bar_pixelmap_set.c index 74695a41..d2414c2d 100644 --- a/common/src/gxe_progress_bar_pixelmap_set.c +++ b/common/src/gxe_progress_bar_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_progress_bar_pixelmap_set(GX_PROGRESS_BAR *progress_bar, GX_RESOURCE_ID pixelmap) { diff --git a/common/src/gxe_progress_bar_range_set.c b/common/src/gxe_progress_bar_range_set.c index 07ce9f97..5a71d43f 100644 --- a/common/src/gxe_progress_bar_range_set.c +++ b/common/src/gxe_progress_bar_range_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_progress_bar_range_set(GX_PROGRESS_BAR *progress_bar, INT min_value, INT max_value) { diff --git a/common/src/gxe_progress_bar_text_color_set.c b/common/src/gxe_progress_bar_text_color_set.c index 1f31881b..56d22d30 100644 --- a/common/src/gxe_progress_bar_text_color_set.c +++ b/common/src/gxe_progress_bar_text_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_progress_bar_text_color_set(GX_PROGRESS_BAR *progress_bar, GX_RESOURCE_ID normal_text_color_id, diff --git a/common/src/gxe_progress_bar_value_set.c b/common/src/gxe_progress_bar_value_set.c index 10110da3..4e98f937 100644 --- a/common/src/gxe_progress_bar_value_set.c +++ b/common/src/gxe_progress_bar_value_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_progress_bar_value_set(GX_PROGRESS_BAR *progress_bar, INT new_value) { diff --git a/common/src/gxe_prompt_create.c b/common/src/gxe_prompt_create.c index efeb5c55..21eb299d 100644 --- a/common/src/gxe_prompt_create.c +++ b/common/src/gxe_prompt_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,14 +71,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_prompt_create(GX_PROMPT *prompt, GX_CONST GX_CHAR *name, GX_WIDGET *parent, GX_RESOURCE_ID text_id, ULONG style, USHORT prompt_id, diff --git a/common/src/gxe_prompt_event_process.c b/common/src/gxe_prompt_event_process.c index 28b8b61e..f99582a5 100644 --- a/common/src/gxe_prompt_event_process.c +++ b/common/src/gxe_prompt_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,12 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_prompt_event_process(GX_PROMPT *prompt, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_prompt_font_set.c b/common/src/gxe_prompt_font_set.c index 2a6058cc..4dd9aadb 100644 --- a/common/src/gxe_prompt_font_set.c +++ b/common/src/gxe_prompt_font_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_prompt_font_set(GX_PROMPT *prompt, GX_RESOURCE_ID font_id) { diff --git a/common/src/gxe_prompt_text_color_set.c b/common/src/gxe_prompt_text_color_set.c index 9018beac..7b64d30e 100644 --- a/common/src/gxe_prompt_text_color_set.c +++ b/common/src/gxe_prompt_text_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_prompt_text_color_set(GX_PROMPT *prompt, GX_RESOURCE_ID normal_text_color_id, diff --git a/common/src/gxe_prompt_text_get.c b/common/src/gxe_prompt_text_get.c index 968c9180..4fc75e56 100644 --- a/common/src/gxe_prompt_text_get.c +++ b/common/src/gxe_prompt_text_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_prompt_text_get(GX_PROMPT *prompt, GX_CONST GX_CHAR **return_text) @@ -127,14 +120,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_prompt_text_get_ext(GX_PROMPT *prompt, GX_STRING *return_text) { diff --git a/common/src/gxe_prompt_text_id_set.c b/common/src/gxe_prompt_text_id_set.c index beb1d462..651c65f5 100644 --- a/common/src/gxe_prompt_text_id_set.c +++ b/common/src/gxe_prompt_text_id_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Cdoe */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_prompt_text_id_set(GX_PROMPT *prompt, GX_RESOURCE_ID string_id) { diff --git a/common/src/gxe_prompt_text_set.c b/common/src/gxe_prompt_text_set.c index bc9966f9..7b60eb99 100644 --- a/common/src/gxe_prompt_text_set.c +++ b/common/src/gxe_prompt_text_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_prompt_text_set(GX_PROMPT *prompt, GX_CONST GX_CHAR *text) @@ -126,14 +119,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_prompt_text_set_ext(GX_PROMPT *prompt, GX_CONST GX_STRING *text) { diff --git a/common/src/gxe_radial_progress_bar_anchor_set.c b/common/src/gxe_radial_progress_bar_anchor_set.c index 0ec5ba5c..0cb0bf3d 100644 --- a/common/src/gxe_radial_progress_bar_anchor_set.c +++ b/common/src/gxe_radial_progress_bar_anchor_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_radial_progress_bar_anchor_set(GX_RADIAL_PROGRESS_BAR *progress_bar, GX_VALUE angle) { diff --git a/common/src/gxe_radial_progress_bar_create.c b/common/src/gxe_radial_progress_bar_create.c index b5e12036..dbc60ab6 100644 --- a/common/src/gxe_radial_progress_bar_create.c +++ b/common/src/gxe_radial_progress_bar_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,14 +71,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_radial_progress_bar_create(GX_RADIAL_PROGRESS_BAR *progress_bar, GX_CONST GX_CHAR *name, diff --git a/common/src/gxe_radial_progress_bar_event_process.c b/common/src/gxe_radial_progress_bar_event_process.c index cef09010..a26f7492 100644 --- a/common/src/gxe_radial_progress_bar_event_process.c +++ b/common/src/gxe_radial_progress_bar_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_radial_progress_bar_event_process(GX_RADIAL_PROGRESS_BAR *progress_bar, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_radial_progress_bar_font_set.c b/common/src/gxe_radial_progress_bar_font_set.c index a45b75ae..2b808d0e 100644 --- a/common/src/gxe_radial_progress_bar_font_set.c +++ b/common/src/gxe_radial_progress_bar_font_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_radial_progress_bar_font_set(GX_RADIAL_PROGRESS_BAR *progress_bar, GX_RESOURCE_ID font_id) { diff --git a/common/src/gxe_radial_progress_bar_info_set.c b/common/src/gxe_radial_progress_bar_info_set.c index 4c54b815..a52bea0f 100644 --- a/common/src/gxe_radial_progress_bar_info_set.c +++ b/common/src/gxe_radial_progress_bar_info_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_radial_progress_bar_info_set(GX_RADIAL_PROGRESS_BAR *progress_bar, GX_RADIAL_PROGRESS_BAR_INFO *info) { diff --git a/common/src/gxe_radial_progress_bar_text_color_set.c b/common/src/gxe_radial_progress_bar_text_color_set.c index fada2de9..a18167b8 100644 --- a/common/src/gxe_radial_progress_bar_text_color_set.c +++ b/common/src/gxe_radial_progress_bar_text_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,14 +71,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_radial_progress_bar_text_color_set(GX_RADIAL_PROGRESS_BAR *progress_bar, GX_RESOURCE_ID normal_text_color_id, diff --git a/common/src/gxe_radial_progress_bar_value_set.c b/common/src/gxe_radial_progress_bar_value_set.c index f4ca51f7..11320989 100644 --- a/common/src/gxe_radial_progress_bar_value_set.c +++ b/common/src/gxe_radial_progress_bar_value_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_radial_progress_bar_value_set(GX_RADIAL_PROGRESS_BAR *progress_bar, GX_VALUE new_value) { diff --git a/common/src/gxe_radial_slider_anchor_angles_set.c b/common/src/gxe_radial_slider_anchor_angles_set.c index 8a7b71aa..e0ea1748 100644 --- a/common/src/gxe_radial_slider_anchor_angles_set.c +++ b/common/src/gxe_radial_slider_anchor_angles_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_radial_slider_anchor_angles_set(GX_RADIAL_SLIDER *slider, GX_VALUE *anchor_angles, USHORT anchor_count) { diff --git a/common/src/gxe_radial_slider_angle_set.c b/common/src/gxe_radial_slider_angle_set.c index 8f272e76..db4dc082 100644 --- a/common/src/gxe_radial_slider_angle_set.c +++ b/common/src/gxe_radial_slider_angle_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_radial_slider_angle_set(GX_RADIAL_SLIDER *slider, GX_VALUE new_angle) { diff --git a/common/src/gxe_radial_slider_animation_set.c b/common/src/gxe_radial_slider_animation_set.c index 996b9408..6c8f9449 100644 --- a/common/src/gxe_radial_slider_animation_set.c +++ b/common/src/gxe_radial_slider_animation_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_radial_slider_animation_set(GX_RADIAL_SLIDER *slider, USHORT steps, USHORT delay, USHORT animation_style, VOID (*animation_update_callback)(GX_RADIAL_SLIDER *slider)) diff --git a/common/src/gxe_radial_slider_animation_start.c b/common/src/gxe_radial_slider_animation_start.c index ca14b80c..ffbd2856 100644 --- a/common/src/gxe_radial_slider_animation_start.c +++ b/common/src/gxe_radial_slider_animation_start.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_radial_slider_animation_start(GX_RADIAL_SLIDER *slider, GX_VALUE target_angle) { diff --git a/common/src/gxe_radial_slider_create.c b/common/src/gxe_radial_slider_create.c index fe91132e..c69dd3bf 100644 --- a/common/src/gxe_radial_slider_create.c +++ b/common/src/gxe_radial_slider_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,14 +71,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_radial_slider_create(GX_RADIAL_SLIDER *slider, GX_CONST GX_CHAR *name, GX_WIDGET *parent, GX_RADIAL_SLIDER_INFO *info, ULONG style, USHORT slider_id, diff --git a/common/src/gxe_radial_slider_event_process.c b/common/src/gxe_radial_slider_event_process.c index b9bf1fef..292e1906 100644 --- a/common/src/gxe_radial_slider_event_process.c +++ b/common/src/gxe_radial_slider_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_radial_slider_event_process(GX_RADIAL_SLIDER *slider, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_radial_slider_info_get.c b/common/src/gxe_radial_slider_info_get.c index e9d3d271..4607e49c 100644 --- a/common/src/gxe_radial_slider_info_get.c +++ b/common/src/gxe_radial_slider_info_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_radial_slider_info_get(GX_RADIAL_SLIDER *slider, GX_RADIAL_SLIDER_INFO **info) { diff --git a/common/src/gxe_radial_slider_info_set.c b/common/src/gxe_radial_slider_info_set.c index 075adab0..77f326ed 100644 --- a/common/src/gxe_radial_slider_info_set.c +++ b/common/src/gxe_radial_slider_info_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_radial_slider_info_set(GX_RADIAL_SLIDER *slider, GX_RADIAL_SLIDER_INFO *info) { diff --git a/common/src/gxe_radial_slider_pixelmap_set.c b/common/src/gxe_radial_slider_pixelmap_set.c index 965bbca2..20d30312 100644 --- a/common/src/gxe_radial_slider_pixelmap_set.c +++ b/common/src/gxe_radial_slider_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_radial_slider_pixelmap_set(GX_RADIAL_SLIDER *slider, GX_RESOURCE_ID background_pixelmap, GX_RESOURCE_ID needle_pixelmap) { diff --git a/common/src/gxe_radio_button_create.c b/common/src/gxe_radio_button_create.c index 153bc759..94da3cab 100644 --- a/common/src/gxe_radio_button_create.c +++ b/common/src/gxe_radio_button_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -70,14 +71,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_radio_button_create(GX_RADIO_BUTTON *button, GX_CONST GX_CHAR *name, GX_WIDGET *parent, GX_RESOURCE_ID text_id, ULONG style, USHORT radio_btton_id, diff --git a/common/src/gxe_radio_button_pixelmap_set.c b/common/src/gxe_radio_button_pixelmap_set.c index 85209f03..889b9b8f 100644 --- a/common/src/gxe_radio_button_pixelmap_set.c +++ b/common/src/gxe_radio_button_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -73,14 +74,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_radio_button_pixelmap_set(GX_RADIO_BUTTON *button, GX_RESOURCE_ID off_id, diff --git a/common/src/gxe_rich_text_view_create.c b/common/src/gxe_rich_text_view_create.c index 754779f2..a45bf35d 100644 --- a/common/src/gxe_rich_text_view_create.c +++ b/common/src/gxe_rich_text_view_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,12 +72,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_rich_text_view_create(GX_RICH_TEXT_VIEW *rich_view, GX_CONST GX_CHAR *name, diff --git a/common/src/gxe_rich_text_view_fonts_set.c b/common/src/gxe_rich_text_view_fonts_set.c index 1085fa62..410d5aa9 100644 --- a/common/src/gxe_rich_text_view_fonts_set.c +++ b/common/src/gxe_rich_text_view_fonts_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,12 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_rich_text_view_fonts_set(GX_RICH_TEXT_VIEW *rich_view, GX_RICH_TEXT_FONTS *fonts) { diff --git a/common/src/gxe_screen_stack_create.c b/common/src/gxe_screen_stack_create.c index f4e01cfa..65978152 100644 --- a/common/src/gxe_screen_stack_create.c +++ b/common/src/gxe_screen_stack_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_screen_stack_create(GX_SCREEN_STACK_CONTROL *control, GX_WIDGET **memory, INT size) { diff --git a/common/src/gxe_screen_stack_pop.c b/common/src/gxe_screen_stack_pop.c index 04192244..06f93bba 100644 --- a/common/src/gxe_screen_stack_pop.c +++ b/common/src/gxe_screen_stack_pop.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_screen_stack_pop(GX_SCREEN_STACK_CONTROL *control) { diff --git a/common/src/gxe_screen_stack_push.c b/common/src/gxe_screen_stack_push.c index c3b6ff5c..33e23e2f 100644 --- a/common/src/gxe_screen_stack_push.c +++ b/common/src/gxe_screen_stack_push.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_screen_stack_push(GX_SCREEN_STACK_CONTROL *control, GX_WIDGET *screen, GX_WIDGET *new_screen) { diff --git a/common/src/gxe_screen_stack_reset.c b/common/src/gxe_screen_stack_reset.c index 82f3e610..3e446db9 100644 --- a/common/src/gxe_screen_stack_reset.c +++ b/common/src/gxe_screen_stack_reset.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,14 +58,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_screen_stack_reset(GX_SCREEN_STACK_CONTROL *control) { diff --git a/common/src/gxe_scroll_thumb_create.c b/common/src/gxe_scroll_thumb_create.c index 0be3f794..56c53eb2 100644 --- a/common/src/gxe_scroll_thumb_create.c +++ b/common/src/gxe_scroll_thumb_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_scroll_thumb_create(GX_SCROLL_THUMB *scroll_thumb, GX_SCROLLBAR *parent, ULONG style, UINT scroll_thumb_control_block_size) { diff --git a/common/src/gxe_scroll_thumb_event_process.c b/common/src/gxe_scroll_thumb_event_process.c index bf818152..a77f168b 100644 --- a/common/src/gxe_scroll_thumb_event_process.c +++ b/common/src/gxe_scroll_thumb_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_scroll_thumb_event_process(GX_SCROLL_THUMB *scroll_thumb, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_scroll_wheel_create.c b/common/src/gxe_scroll_wheel_create.c index 468f743c..7757e0a9 100644 --- a/common/src/gxe_scroll_wheel_create.c +++ b/common/src/gxe_scroll_wheel_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,14 +70,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_scroll_wheel_create(GX_SCROLL_WHEEL *wheel, GX_CONST GX_CHAR *name, GX_WIDGET *parent, INT total_rows, ULONG style, USHORT Id, GX_CONST GX_RECTANGLE *size, UINT control_block_size) diff --git a/common/src/gxe_scroll_wheel_event_process.c b/common/src/gxe_scroll_wheel_event_process.c index 826e40d5..a1602fc0 100644 --- a/common/src/gxe_scroll_wheel_event_process.c +++ b/common/src/gxe_scroll_wheel_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_scroll_wheel_event_process(GX_SCROLL_WHEEL *wheel, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_scroll_wheel_gradient_alpha_set.c b/common/src/gxe_scroll_wheel_gradient_alpha_set.c index f9383a9f..6cf752b5 100644 --- a/common/src/gxe_scroll_wheel_gradient_alpha_set.c +++ b/common/src/gxe_scroll_wheel_gradient_alpha_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_scroll_wheel_gradient_alpha_set(GX_SCROLL_WHEEL *wheel, GX_UBYTE start_alpha, GX_UBYTE end_alpha) { diff --git a/common/src/gxe_scroll_wheel_row_height_set.c b/common/src/gxe_scroll_wheel_row_height_set.c index 0ce4de63..0001923f 100644 --- a/common/src/gxe_scroll_wheel_row_height_set.c +++ b/common/src/gxe_scroll_wheel_row_height_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_scroll_wheel_row_height_set(GX_SCROLL_WHEEL *wheel, GX_VALUE row_height) { diff --git a/common/src/gxe_scroll_wheel_selected_background_set.c b/common/src/gxe_scroll_wheel_selected_background_set.c index 75fb0051..95fee2ec 100644 --- a/common/src/gxe_scroll_wheel_selected_background_set.c +++ b/common/src/gxe_scroll_wheel_selected_background_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_scroll_wheel_selected_background_set(GX_SCROLL_WHEEL *wheel, GX_RESOURCE_ID selected_bg) { diff --git a/common/src/gxe_scroll_wheel_selected_get.c b/common/src/gxe_scroll_wheel_selected_get.c index 577ee2ca..742ef604 100644 --- a/common/src/gxe_scroll_wheel_selected_get.c +++ b/common/src/gxe_scroll_wheel_selected_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_scroll_wheel_selected_get(GX_SCROLL_WHEEL *wheel, INT *row) { diff --git a/common/src/gxe_scroll_wheel_selected_set.c b/common/src/gxe_scroll_wheel_selected_set.c index 89d13e87..07550ee1 100644 --- a/common/src/gxe_scroll_wheel_selected_set.c +++ b/common/src/gxe_scroll_wheel_selected_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_scroll_wheel_selected_set(GX_SCROLL_WHEEL *wheel, INT row) { diff --git a/common/src/gxe_scroll_wheel_speed_set.c b/common/src/gxe_scroll_wheel_speed_set.c index 11c1f45c..4a5e63d2 100644 --- a/common/src/gxe_scroll_wheel_speed_set.c +++ b/common/src/gxe_scroll_wheel_speed_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_scroll_wheel_speed_set(GX_SCROLL_WHEEL *wheel, GX_FIXED_VAL start_speed_rate, GX_FIXED_VAL end_speed_rate, GX_VALUE max_steps, GX_VALUE delay) diff --git a/common/src/gxe_scroll_wheel_total_rows_set.c b/common/src/gxe_scroll_wheel_total_rows_set.c index afb779d8..99986542 100644 --- a/common/src/gxe_scroll_wheel_total_rows_set.c +++ b/common/src/gxe_scroll_wheel_total_rows_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_scroll_wheel_total_rows_set(GX_SCROLL_WHEEL *wheel, INT total_rows) { diff --git a/common/src/gxe_scrollbar_event_process.c b/common/src/gxe_scrollbar_event_process.c index 0c67a624..317511c9 100644 --- a/common/src/gxe_scrollbar_event_process.c +++ b/common/src/gxe_scrollbar_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_scrollbar_event_process(GX_SCROLLBAR *scrollbar, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_scrollbar_limit_check.c b/common/src/gxe_scrollbar_limit_check.c index 94f4b556..3d953e96 100644 --- a/common/src/gxe_scrollbar_limit_check.c +++ b/common/src/gxe_scrollbar_limit_check.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_scrollbar_limit_check(GX_SCROLLBAR *scrollbar) { diff --git a/common/src/gxe_scrollbar_reset.c b/common/src/gxe_scrollbar_reset.c index ad42e91a..9159d38e 100644 --- a/common/src/gxe_scrollbar_reset.c +++ b/common/src/gxe_scrollbar_reset.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,16 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ UINT _gxe_scrollbar_reset(GX_SCROLLBAR *scrollbar, GX_SCROLL_INFO *info) { diff --git a/common/src/gxe_scrollbar_value_set.c b/common/src/gxe_scrollbar_value_set.c index a5ddcf0a..53b5ab55 100644 --- a/common/src/gxe_scrollbar_value_set.c +++ b/common/src/gxe_scrollbar_value_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_scrollbar_value_set(GX_SCROLLBAR *scrollbar, INT value) { diff --git a/common/src/gxe_single_line_text_input_backspace.c b/common/src/gxe_single_line_text_input_backspace.c index c7233cc4..efe6b03b 100644 --- a/common/src/gxe_single_line_text_input_backspace.c +++ b/common/src/gxe_single_line_text_input_backspace.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_single_line_text_input_backspace(GX_SINGLE_LINE_TEXT_INPUT *text_input) diff --git a/common/src/gxe_single_line_text_input_buffer_clear.c b/common/src/gxe_single_line_text_input_buffer_clear.c index a0ec2753..e7dc3df6 100644 --- a/common/src/gxe_single_line_text_input_buffer_clear.c +++ b/common/src/gxe_single_line_text_input_buffer_clear.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_single_line_text_input_buffer_clear(GX_SINGLE_LINE_TEXT_INPUT *text_input) diff --git a/common/src/gxe_single_line_text_input_buffer_get.c b/common/src/gxe_single_line_text_input_buffer_get.c index 88b0b417..bed8b172 100644 --- a/common/src/gxe_single_line_text_input_buffer_get.c +++ b/common/src/gxe_single_line_text_input_buffer_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_single_line_text_input_buffer_get(GX_SINGLE_LINE_TEXT_INPUT *text_input_ptr, GX_CHAR **buffer_address, diff --git a/common/src/gxe_single_line_text_input_character_delete.c b/common/src/gxe_single_line_text_input_character_delete.c index eebc4cd4..9238e1f4 100644 --- a/common/src/gxe_single_line_text_input_character_delete.c +++ b/common/src/gxe_single_line_text_input_character_delete.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_single_line_text_input_character_delete(GX_SINGLE_LINE_TEXT_INPUT *text_input) { diff --git a/common/src/gxe_single_line_text_input_character_insert.c b/common/src/gxe_single_line_text_input_character_insert.c index bc0806c7..2fc370a8 100644 --- a/common/src/gxe_single_line_text_input_character_insert.c +++ b/common/src/gxe_single_line_text_input_character_insert.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_single_line_text_input_character_insert(GX_SINGLE_LINE_TEXT_INPUT *text_input, GX_UBYTE *insert_str, UINT insert_size) { diff --git a/common/src/gxe_single_line_text_input_create.c b/common/src/gxe_single_line_text_input_create.c index 11d77bf2..b3336ed0 100644 --- a/common/src/gxe_single_line_text_input_create.c +++ b/common/src/gxe_single_line_text_input_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -73,17 +74,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* removed input buffer check, */ -/* resulting in version 6.1.3 */ -/* */ /**************************************************************************/ UINT _gxe_single_line_text_input_create(GX_SINGLE_LINE_TEXT_INPUT *text_input, diff --git a/common/src/gxe_single_line_text_input_draw_position_get.c b/common/src/gxe_single_line_text_input_draw_position_get.c index 93f8555f..0f00f563 100644 --- a/common/src/gxe_single_line_text_input_draw_position_get.c +++ b/common/src/gxe_single_line_text_input_draw_position_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_single_line_text_input_draw_position_get(GX_SINGLE_LINE_TEXT_INPUT *input, GX_VALUE *xpos, GX_VALUE *ypos) { diff --git a/common/src/gxe_single_line_text_input_end.c b/common/src/gxe_single_line_text_input_end.c index 15614571..22188a39 100644 --- a/common/src/gxe_single_line_text_input_end.c +++ b/common/src/gxe_single_line_text_input_end.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_single_line_text_input_end(GX_SINGLE_LINE_TEXT_INPUT *text_input) diff --git a/common/src/gxe_single_line_text_input_event_process.c b/common/src/gxe_single_line_text_input_event_process.c index 3f68f272..fdeca2c0 100644 --- a/common/src/gxe_single_line_text_input_event_process.c +++ b/common/src/gxe_single_line_text_input_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_single_line_text_input_event_process(GX_SINGLE_LINE_TEXT_INPUT *text_input, GX_EVENT *event_ptr) diff --git a/common/src/gxe_single_line_text_input_fill_color_set.c b/common/src/gxe_single_line_text_input_fill_color_set.c index 0ef5b9a6..8ebac4a4 100644 --- a/common/src/gxe_single_line_text_input_fill_color_set.c +++ b/common/src/gxe_single_line_text_input_fill_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,14 +72,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_single_line_text_input_fill_color_set(GX_SINGLE_LINE_TEXT_INPUT *input, GX_RESOURCE_ID normal_fill_color_id, diff --git a/common/src/gxe_single_line_text_input_home.c b/common/src/gxe_single_line_text_input_home.c index 7ff9ec9a..2550dfe3 100644 --- a/common/src/gxe_single_line_text_input_home.c +++ b/common/src/gxe_single_line_text_input_home.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_single_line_text_input_home(GX_SINGLE_LINE_TEXT_INPUT *text_input) diff --git a/common/src/gxe_single_line_text_input_left_arrow.c b/common/src/gxe_single_line_text_input_left_arrow.c index 3b309e9d..e1c1fe6d 100644 --- a/common/src/gxe_single_line_text_input_left_arrow.c +++ b/common/src/gxe_single_line_text_input_left_arrow.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_single_line_text_input_left_arrow(GX_SINGLE_LINE_TEXT_INPUT *text_input) diff --git a/common/src/gxe_single_line_text_input_position_get.c b/common/src/gxe_single_line_text_input_position_get.c index 704150e6..da8e4cdf 100644 --- a/common/src/gxe_single_line_text_input_position_get.c +++ b/common/src/gxe_single_line_text_input_position_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_single_line_text_input_position_get(GX_SINGLE_LINE_TEXT_INPUT *text_input, INT pixel_position) diff --git a/common/src/gxe_single_line_text_input_right_arrow.c b/common/src/gxe_single_line_text_input_right_arrow.c index 3ef609ae..c36915ef 100644 --- a/common/src/gxe_single_line_text_input_right_arrow.c +++ b/common/src/gxe_single_line_text_input_right_arrow.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_single_line_text_input_right_arrow(GX_SINGLE_LINE_TEXT_INPUT *text_input) diff --git a/common/src/gxe_single_line_text_input_style_add.c b/common/src/gxe_single_line_text_input_style_add.c index cc2893da..31e5826a 100644 --- a/common/src/gxe_single_line_text_input_style_add.c +++ b/common/src/gxe_single_line_text_input_style_add.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_single_line_text_input_style_add(GX_SINGLE_LINE_TEXT_INPUT *text_input, ULONG style) { diff --git a/common/src/gxe_single_line_text_input_style_remove.c b/common/src/gxe_single_line_text_input_style_remove.c index 0daf8836..bbc2deb4 100644 --- a/common/src/gxe_single_line_text_input_style_remove.c +++ b/common/src/gxe_single_line_text_input_style_remove.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_single_line_text_input_style_remove(GX_SINGLE_LINE_TEXT_INPUT *text_input, ULONG style) { diff --git a/common/src/gxe_single_line_text_input_style_set.c b/common/src/gxe_single_line_text_input_style_set.c index 37d2611f..5ddbfd71 100644 --- a/common/src/gxe_single_line_text_input_style_set.c +++ b/common/src/gxe_single_line_text_input_style_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_single_line_text_input_style_set(GX_SINGLE_LINE_TEXT_INPUT *text_input, ULONG style) { diff --git a/common/src/gxe_single_line_text_input_text_color_set.c b/common/src/gxe_single_line_text_input_text_color_set.c index 3389b350..4cc13c77 100644 --- a/common/src/gxe_single_line_text_input_text_color_set.c +++ b/common/src/gxe_single_line_text_input_text_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -71,14 +72,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_single_line_text_input_text_color_set(GX_SINGLE_LINE_TEXT_INPUT *input, GX_RESOURCE_ID normal_text_color_id, diff --git a/common/src/gxe_single_line_text_input_text_select.c b/common/src/gxe_single_line_text_input_text_select.c index e64f6e71..c7249ffa 100644 --- a/common/src/gxe_single_line_text_input_text_select.c +++ b/common/src/gxe_single_line_text_input_text_select.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_single_line_text_input_text_select(GX_SINGLE_LINE_TEXT_INPUT *input, UINT start_index, UINT end_index) { diff --git a/common/src/gxe_single_line_text_input_text_set.c b/common/src/gxe_single_line_text_input_text_set.c index 2a87d706..42d91ac2 100644 --- a/common/src/gxe_single_line_text_input_text_set.c +++ b/common/src/gxe_single_line_text_input_text_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_single_line_text_input_text_set(GX_SINGLE_LINE_TEXT_INPUT *input, GX_CONST GX_CHAR *text) @@ -133,14 +126,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_single_line_text_input_text_set_ext(GX_SINGLE_LINE_TEXT_INPUT *input, GX_CONST GX_STRING *text) { diff --git a/common/src/gxe_slider_create.c b/common/src/gxe_slider_create.c index 6dce377e..6b694935 100644 --- a/common/src/gxe_slider_create.c +++ b/common/src/gxe_slider_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_slider_create(GX_SLIDER *slider, GX_CONST GX_CHAR *name, GX_WIDGET *parent, INT tick_count, GX_SLIDER_INFO *slider_info, ULONG style, USHORT slider_id, diff --git a/common/src/gxe_slider_event_process.c b/common/src/gxe_slider_event_process.c index a991c788..f916bfcf 100644 --- a/common/src/gxe_slider_event_process.c +++ b/common/src/gxe_slider_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_slider_event_process(GX_SLIDER *slider, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_slider_info_set.c b/common/src/gxe_slider_info_set.c index aecbbb67..6c2c10d4 100644 --- a/common/src/gxe_slider_info_set.c +++ b/common/src/gxe_slider_info_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_slider_info_set(GX_SLIDER *slider, GX_SLIDER_INFO *info) { diff --git a/common/src/gxe_slider_needle_position_get.c b/common/src/gxe_slider_needle_position_get.c index d81bc16f..8e65b875 100644 --- a/common/src/gxe_slider_needle_position_get.c +++ b/common/src/gxe_slider_needle_position_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_slider_needle_position_get(GX_SLIDER *slider, GX_SLIDER_INFO *slider_info, GX_RECTANGLE *return_position) { diff --git a/common/src/gxe_slider_travel_get.c b/common/src/gxe_slider_travel_get.c index 6b8d8c2e..2cd63ac4 100644 --- a/common/src/gxe_slider_travel_get.c +++ b/common/src/gxe_slider_travel_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_slider_travel_get(GX_SLIDER *slider, GX_SLIDER_INFO *info, INT *return_min_travel, INT *return_max_travel) { diff --git a/common/src/gxe_slider_value_calculate.c b/common/src/gxe_slider_value_calculate.c index 095a98e4..45b72771 100644 --- a/common/src/gxe_slider_value_calculate.c +++ b/common/src/gxe_slider_value_calculate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_slider_value_calculate(GX_SLIDER *slider, GX_SLIDER_INFO *info, INT new_position) { diff --git a/common/src/gxe_slider_value_set.c b/common/src/gxe_slider_value_set.c index 5b13886f..78e4b023 100644 --- a/common/src/gxe_slider_value_set.c +++ b/common/src/gxe_slider_value_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_slider_value_set(GX_SLIDER *slider, GX_SLIDER_INFO *info, INT new_value) { diff --git a/common/src/gxe_sprite_create.c b/common/src/gxe_sprite_create.c index 63bcbc34..fb601c3a 100644 --- a/common/src/gxe_sprite_create.c +++ b/common/src/gxe_sprite_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,14 +73,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_sprite_create(GX_SPRITE *sprite, GX_CONST GX_CHAR *name, GX_WIDGET *parent, GX_SPRITE_FRAME *frame_list, USHORT frame_count, diff --git a/common/src/gxe_sprite_current_frame_set.c b/common/src/gxe_sprite_current_frame_set.c index 84ffee17..dcda0ed7 100644 --- a/common/src/gxe_sprite_current_frame_set.c +++ b/common/src/gxe_sprite_current_frame_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_sprite_current_frame_set(GX_SPRITE *sprite, USHORT frame_index) { diff --git a/common/src/gxe_sprite_frame_list_set.c b/common/src/gxe_sprite_frame_list_set.c index 16030f97..9015f846 100644 --- a/common/src/gxe_sprite_frame_list_set.c +++ b/common/src/gxe_sprite_frame_list_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_sprite_frame_list_set(GX_SPRITE *sprite, GX_SPRITE_FRAME *frame_list, USHORT frame_count) { diff --git a/common/src/gxe_sprite_start.c b/common/src/gxe_sprite_start.c index e4c45049..db397c4f 100644 --- a/common/src/gxe_sprite_start.c +++ b/common/src/gxe_sprite_start.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_sprite_start(GX_SPRITE *sprite, USHORT frame_number) { diff --git a/common/src/gxe_sprite_stop.c b/common/src/gxe_sprite_stop.c index cc24210c..9fb8bd5b 100644 --- a/common/src/gxe_sprite_stop.c +++ b/common/src/gxe_sprite_stop.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_sprite_stop(GX_SPRITE *sprite) { diff --git a/common/src/gxe_string_scroll_wheel_create.c b/common/src/gxe_string_scroll_wheel_create.c index 5c2469fa..c5990e6e 100644 --- a/common/src/gxe_string_scroll_wheel_create.c +++ b/common/src/gxe_string_scroll_wheel_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,14 +73,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_string_scroll_wheel_create(GX_STRING_SCROLL_WHEEL *wheel, @@ -166,14 +159,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_string_scroll_wheel_create_ext(GX_STRING_SCROLL_WHEEL *wheel, GX_CONST GX_CHAR *name, GX_WIDGET *parent, INT total_rows, GX_CONST GX_STRING *string_list, diff --git a/common/src/gxe_string_scroll_wheel_event_process.c b/common/src/gxe_string_scroll_wheel_event_process.c index 3045f2bf..ba0f4a73 100644 --- a/common/src/gxe_string_scroll_wheel_event_process.c +++ b/common/src/gxe_string_scroll_wheel_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,12 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_string_scroll_wheel_event_process(GX_STRING_SCROLL_WHEEL *wheel, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_string_scroll_wheel_string_id_list_set.c b/common/src/gxe_string_scroll_wheel_string_id_list_set.c index 3b40da64..2ffcad11 100644 --- a/common/src/gxe_string_scroll_wheel_string_id_list_set.c +++ b/common/src/gxe_string_scroll_wheel_string_id_list_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_string_scroll_wheel_string_id_list_set(GX_STRING_SCROLL_WHEEL *wheel, GX_CONST GX_RESOURCE_ID *string_id_list, diff --git a/common/src/gxe_string_scroll_wheel_string_list_set.c b/common/src/gxe_string_scroll_wheel_string_list_set.c index 6ad899c1..f08ed471 100644 --- a/common/src/gxe_string_scroll_wheel_string_list_set.c +++ b/common/src/gxe_string_scroll_wheel_string_list_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_string_scroll_wheel_string_list_set(GX_STRING_SCROLL_WHEEL *wheel, @@ -142,14 +135,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_string_scroll_wheel_string_list_set_ext(GX_STRING_SCROLL_WHEEL *wheel, GX_CONST GX_STRING *string_list, diff --git a/common/src/gxe_system_active_language_set.c b/common/src/gxe_system_active_language_set.c index 91b571da..e789a523 100644 --- a/common/src/gxe_system_active_language_set.c +++ b/common/src/gxe_system_active_language_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_active_language_set(GX_UBYTE language) { diff --git a/common/src/gxe_system_animation_free.c b/common/src/gxe_system_animation_free.c index 86ecc7ed..48d4c150 100644 --- a/common/src/gxe_system_animation_free.c +++ b/common/src/gxe_system_animation_free.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* GUIX Application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if (GX_ANIMATION_POOL_SIZE > 0) UINT _gxe_system_animation_free(GX_ANIMATION *animation) diff --git a/common/src/gxe_system_animation_get.c b/common/src/gxe_system_animation_get.c index 54bce5e4..5c8a3bfd 100644 --- a/common/src/gxe_system_animation_get.c +++ b/common/src/gxe_system_animation_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* GUIX Application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if (GX_ANIMATION_POOL_SIZE > 0) diff --git a/common/src/gxe_system_canvas_refresh.c b/common/src/gxe_system_canvas_refresh.c index d80add95..86595aba 100644 --- a/common/src/gxe_system_canvas_refresh.c +++ b/common/src/gxe_system_canvas_refresh.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_canvas_refresh(VOID) { diff --git a/common/src/gxe_system_dirty_mark.c b/common/src/gxe_system_dirty_mark.c index 1cb06e5e..28382b36 100644 --- a/common/src/gxe_system_dirty_mark.c +++ b/common/src/gxe_system_dirty_mark.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* GUIX Application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_dirty_mark(GX_WIDGET *widget) { diff --git a/common/src/gxe_system_dirty_partial_add.c b/common/src/gxe_system_dirty_partial_add.c index 9ba467f8..5651198b 100644 --- a/common/src/gxe_system_dirty_partial_add.c +++ b/common/src/gxe_system_dirty_partial_add.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* GUIX Application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_dirty_partial_add(GX_WIDGET *widget, GX_RECTANGLE *dirty_area) { diff --git a/common/src/gxe_system_draw_context_get.c b/common/src/gxe_system_draw_context_get.c index 72908f27..6955d89e 100644 --- a/common/src/gxe_system_draw_context_get.c +++ b/common/src/gxe_system_draw_context_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* Application Code */ /* GUIX default draw funtions */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_draw_context_get(GX_DRAW_CONTEXT **current_context) { diff --git a/common/src/gxe_system_event_fold.c b/common/src/gxe_system_event_fold.c index 2a5014cc..eb241255 100644 --- a/common/src/gxe_system_event_fold.c +++ b/common/src/gxe_system_event_fold.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -56,14 +57,6 @@ /* */ /* GUIX Application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_event_fold(GX_EVENT *event_ptr) { diff --git a/common/src/gxe_system_event_send.c b/common/src/gxe_system_event_send.c index 1aa6e314..ba983bc3 100644 --- a/common/src/gxe_system_event_send.c +++ b/common/src/gxe_system_event_send.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -56,14 +57,6 @@ /* */ /* GUIX Application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_event_send(GX_EVENT *event_ptr) { diff --git a/common/src/gxe_system_focus_claim.c b/common/src/gxe_system_focus_claim.c index 6261c963..c99bf450 100644 --- a/common/src/gxe_system_focus_claim.c +++ b/common/src/gxe_system_focus_claim.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* GUIX Application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_focus_claim(GX_WIDGET *widget) { diff --git a/common/src/gxe_system_initialize.c b/common/src/gxe_system_initialize.c index 5f569df5..0746fac0 100644 --- a/common/src/gxe_system_initialize.c +++ b/common/src/gxe_system_initialize.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_initialize(VOID) { diff --git a/common/src/gxe_system_language_table_get.c b/common/src/gxe_system_language_table_get.c index 450eb220..f1ee9c28 100644 --- a/common/src/gxe_system_language_table_get.c +++ b/common/src/gxe_system_language_table_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_system_language_table_get(GX_CHAR ****language_table, GX_UBYTE *language_count, UINT *string_count) diff --git a/common/src/gxe_system_language_table_set.c b/common/src/gxe_system_language_table_set.c index ef84fd80..49766aa2 100644 --- a/common/src/gxe_system_language_table_set.c +++ b/common/src/gxe_system_language_table_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_system_language_table_set(GX_CHAR ***language_table, GX_UBYTE number_of_languages, UINT number_of_strings) diff --git a/common/src/gxe_system_memory_allocator_set.c b/common/src/gxe_system_memory_allocator_set.c index 09a48882..a0ed9e42 100644 --- a/common/src/gxe_system_memory_allocator_set.c +++ b/common/src/gxe_system_memory_allocator_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_memory_allocator_set(VOID *(*allocate)(ULONG size), VOID (*release)(VOID *)) { diff --git a/common/src/gxe_system_pen_configure.c b/common/src/gxe_system_pen_configure.c index 67f2aa91..7ee59756 100644 --- a/common/src/gxe_system_pen_configure.c +++ b/common/src/gxe_system_pen_configure.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_pen_configure(GX_PEN_CONFIGURATION *pen_configuration) { diff --git a/common/src/gxe_system_screen_stack_create.c b/common/src/gxe_system_screen_stack_create.c index 1abc3e83..c5b4d698 100644 --- a/common/src/gxe_system_screen_stack_create.c +++ b/common/src/gxe_system_screen_stack_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_screen_stack_create(GX_WIDGET **memory, INT size, UINT control_block_size) { diff --git a/common/src/gxe_system_screen_stack_get.c b/common/src/gxe_system_screen_stack_get.c index 627528aa..84a043ce 100644 --- a/common/src/gxe_system_screen_stack_get.c +++ b/common/src/gxe_system_screen_stack_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_screen_stack_get(GX_WIDGET **popped_parent, GX_WIDGET **popped_screen) { diff --git a/common/src/gxe_system_screen_stack_pop.c b/common/src/gxe_system_screen_stack_pop.c index f6cca57b..8f895c1e 100644 --- a/common/src/gxe_system_screen_stack_pop.c +++ b/common/src/gxe_system_screen_stack_pop.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_screen_stack_pop(VOID) { diff --git a/common/src/gxe_system_screen_stack_push.c b/common/src/gxe_system_screen_stack_push.c index 833f1183..47e5d9dd 100644 --- a/common/src/gxe_system_screen_stack_push.c +++ b/common/src/gxe_system_screen_stack_push.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_screen_stack_push(GX_WIDGET *screen) { diff --git a/common/src/gxe_system_scroll_appearance_get.c b/common/src/gxe_system_scroll_appearance_get.c index 7e77e1e2..c4411d20 100644 --- a/common/src/gxe_system_scroll_appearance_get.c +++ b/common/src/gxe_system_scroll_appearance_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_scroll_appearance_get(ULONG style, GX_SCROLLBAR_APPEARANCE *return_appearance) { diff --git a/common/src/gxe_system_scroll_appearance_set.c b/common/src/gxe_system_scroll_appearance_set.c index 3c8c97c1..7c2d136a 100644 --- a/common/src/gxe_system_scroll_appearance_set.c +++ b/common/src/gxe_system_scroll_appearance_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_scroll_appearance_set(ULONG style, GX_SCROLLBAR_APPEARANCE *appearance) { diff --git a/common/src/gxe_system_start.c b/common/src/gxe_system_start.c index 1d026e23..7df0117d 100644 --- a/common/src/gxe_system_start.c +++ b/common/src/gxe_system_start.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_start(VOID) { diff --git a/common/src/gxe_system_string_get.c b/common/src/gxe_system_string_get.c index 93071405..9324b832 100644 --- a/common/src/gxe_system_string_get.c +++ b/common/src/gxe_system_string_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_system_string_get(GX_RESOURCE_ID string_id, GX_CONST GX_CHAR **return_string) diff --git a/common/src/gxe_system_string_table_get.c b/common/src/gxe_system_string_table_get.c index 25ac7a09..6f2a420c 100644 --- a/common/src/gxe_system_string_table_get.c +++ b/common/src/gxe_system_string_table_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_system_string_table_get(GX_UBYTE language, GX_CHAR ***put_table, UINT *put_size) diff --git a/common/src/gxe_system_string_width_get.c b/common/src/gxe_system_string_width_get.c index b6fb52e1..854e9d19 100644 --- a/common/src/gxe_system_string_width_get.c +++ b/common/src/gxe_system_string_width_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_system_string_width_get(GX_CONST GX_FONT *font, GX_CONST GX_CHAR *string, INT string_length, GX_VALUE *return_width) @@ -156,14 +149,6 @@ UINT length; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_string_width_get_ext(GX_CONST GX_FONT *font, GX_CONST GX_STRING *string, GX_VALUE *return_width) { diff --git a/common/src/gxe_system_timer_start.c b/common/src/gxe_system_timer_start.c index a36ec7e8..4f34325d 100644 --- a/common/src/gxe_system_timer_start.c +++ b/common/src/gxe_system_timer_start.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* GUIX Application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_timer_start(GX_WIDGET *owner, UINT timer_id, UINT initial_ticks, UINT reschedule_ticks) { diff --git a/common/src/gxe_system_timer_stop.c b/common/src/gxe_system_timer_stop.c index 92df6836..93b4eddc 100644 --- a/common/src/gxe_system_timer_stop.c +++ b/common/src/gxe_system_timer_stop.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* GUIX Application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_timer_stop(GX_WIDGET *owner, UINT timer_id) { diff --git a/common/src/gxe_system_version_string_get.c b/common/src/gxe_system_version_string_get.c index 90f4969a..9bc06976 100644 --- a/common/src/gxe_system_version_string_get.c +++ b/common/src/gxe_system_version_string_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_system_version_string_get(GX_CHAR **return_string) @@ -118,14 +111,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_version_string_get_ext(GX_STRING *return_string) { diff --git a/common/src/gxe_system_widget_find.c b/common/src/gxe_system_widget_find.c index bc191440..9d7b8426 100644 --- a/common/src/gxe_system_widget_find.c +++ b/common/src/gxe_system_widget_find.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* GUIX Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_system_widget_find(USHORT widget_id, INT search_level, GX_WIDGET **return_search_result) { diff --git a/common/src/gxe_text_button_create.c b/common/src/gxe_text_button_create.c index 014c3ede..c9c2c723 100644 --- a/common/src/gxe_text_button_create.c +++ b/common/src/gxe_text_button_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,14 +68,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_text_button_create(GX_TEXT_BUTTON *button, GX_CONST GX_CHAR *name, GX_WIDGET *parent, GX_RESOURCE_ID text_id, ULONG style, USHORT Id, diff --git a/common/src/gxe_text_button_event_process.c b/common/src/gxe_text_button_event_process.c index 78d1d5cc..45ab3c1d 100644 --- a/common/src/gxe_text_button_event_process.c +++ b/common/src/gxe_text_button_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,12 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_text_button_event_process(GX_TEXT_BUTTON *button, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_text_button_font_set.c b/common/src/gxe_text_button_font_set.c index 6c03ba61..98e57b86 100644 --- a/common/src/gxe_text_button_font_set.c +++ b/common/src/gxe_text_button_font_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_text_button_font_set(GX_TEXT_BUTTON *button, GX_RESOURCE_ID font_id) { diff --git a/common/src/gxe_text_button_text_color_set.c b/common/src/gxe_text_button_text_color_set.c index 8af48146..5efa7dc9 100644 --- a/common/src/gxe_text_button_text_color_set.c +++ b/common/src/gxe_text_button_text_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_text_button_text_color_set(GX_TEXT_BUTTON *text_button, GX_RESOURCE_ID normal_text_color_id, diff --git a/common/src/gxe_text_button_text_get.c b/common/src/gxe_text_button_text_get.c index c2ed6ed0..39914c24 100644 --- a/common/src/gxe_text_button_text_get.c +++ b/common/src/gxe_text_button_text_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_text_button_text_get(GX_TEXT_BUTTON *button, GX_CONST GX_CHAR **return_text) @@ -133,14 +126,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_text_button_text_get_ext(GX_TEXT_BUTTON *button, GX_STRING *return_text) { diff --git a/common/src/gxe_text_button_text_id_set.c b/common/src/gxe_text_button_text_id_set.c index 469634d3..0fb81dc1 100644 --- a/common/src/gxe_text_button_text_id_set.c +++ b/common/src/gxe_text_button_text_id_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Cdoe */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_text_button_text_id_set(GX_TEXT_BUTTON *button, GX_RESOURCE_ID text_id) { diff --git a/common/src/gxe_text_button_text_set.c b/common/src/gxe_text_button_text_set.c index 5e8f3061..933b08ff 100644 --- a/common/src/gxe_text_button_text_set.c +++ b/common/src/gxe_text_button_text_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_text_button_text_set(GX_TEXT_BUTTON *button, GX_CONST GX_CHAR *text) @@ -133,14 +126,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_text_button_text_set_ext(GX_TEXT_BUTTON *button, GX_CONST GX_STRING *text) { diff --git a/common/src/gxe_text_input_cursor_blink_interval_set.c b/common/src/gxe_text_input_cursor_blink_interval_set.c index ca49ad59..38d5412f 100644 --- a/common/src/gxe_text_input_cursor_blink_interval_set.c +++ b/common/src/gxe_text_input_cursor_blink_interval_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_text_input_cursor_blink_interval_set(GX_TEXT_INPUT_CURSOR *cursor_ptr, GX_UBYTE blink_interval) { diff --git a/common/src/gxe_text_input_cursor_height_set.c b/common/src/gxe_text_input_cursor_height_set.c index f7dbb34a..76d3a9e1 100644 --- a/common/src/gxe_text_input_cursor_height_set.c +++ b/common/src/gxe_text_input_cursor_height_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,17 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 10-31-2023 Ting Zhu Modified comment(s), */ -/* added invalid height check, */ -/* resulting in version 6.3.0 */ -/* */ /**************************************************************************/ UINT _gxe_text_input_cursor_height_set(GX_TEXT_INPUT_CURSOR *cursor_ptr, GX_UBYTE height) { diff --git a/common/src/gxe_text_input_cursor_width_set.c b/common/src/gxe_text_input_cursor_width_set.c index fcd0b668..42950a01 100644 --- a/common/src/gxe_text_input_cursor_width_set.c +++ b/common/src/gxe_text_input_cursor_width_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_text_input_cursor_width_set(GX_TEXT_INPUT_CURSOR *cursor_ptr, GX_UBYTE width) { diff --git a/common/src/gxe_text_scroll_wheel_callback_set.c b/common/src/gxe_text_scroll_wheel_callback_set.c index eaa069c9..e08aea95 100644 --- a/common/src/gxe_text_scroll_wheel_callback_set.c +++ b/common/src/gxe_text_scroll_wheel_callback_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* GUIX Application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_text_scroll_wheel_callback_set(GX_TEXT_SCROLL_WHEEL *widget, GX_CONST GX_CHAR *(*callback)(GX_TEXT_SCROLL_WHEEL *, INT)) @@ -129,14 +122,6 @@ UINT status; /* */ /* GUIX Application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_text_scroll_wheel_callback_set_ext(GX_TEXT_SCROLL_WHEEL *widget, UINT (*callback)(GX_TEXT_SCROLL_WHEEL *, INT, GX_STRING *)) { diff --git a/common/src/gxe_text_scroll_wheel_create.c b/common/src/gxe_text_scroll_wheel_create.c index 206eaba3..5271f930 100644 --- a/common/src/gxe_text_scroll_wheel_create.c +++ b/common/src/gxe_text_scroll_wheel_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_text_scroll_wheel_create(GX_TEXT_SCROLL_WHEEL *wheel, GX_CONST GX_CHAR *name, GX_WIDGET *parent, INT total_rows, ULONG style, USHORT Id, GX_CONST GX_RECTANGLE *size, UINT control_block_size) diff --git a/common/src/gxe_text_scroll_wheel_event_process.c b/common/src/gxe_text_scroll_wheel_event_process.c index 610a7002..2e8c4dac 100644 --- a/common/src/gxe_text_scroll_wheel_event_process.c +++ b/common/src/gxe_text_scroll_wheel_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,12 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_text_scroll_wheel_event_process(GX_TEXT_SCROLL_WHEEL *wheel, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_text_scroll_wheel_font_set.c b/common/src/gxe_text_scroll_wheel_font_set.c index 7b55b570..6afdf242 100644 --- a/common/src/gxe_text_scroll_wheel_font_set.c +++ b/common/src/gxe_text_scroll_wheel_font_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_text_scroll_wheel_font_set(GX_TEXT_SCROLL_WHEEL *wheel, GX_RESOURCE_ID normal_font, GX_RESOURCE_ID selected_font) { diff --git a/common/src/gxe_text_scroll_wheel_text_color_set.c b/common/src/gxe_text_scroll_wheel_text_color_set.c index 172bc8cc..5e058820 100644 --- a/common/src/gxe_text_scroll_wheel_text_color_set.c +++ b/common/src/gxe_text_scroll_wheel_text_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_text_scroll_wheel_text_color_set(GX_TEXT_SCROLL_WHEEL *wheel, GX_RESOURCE_ID normal_text_color, diff --git a/common/src/gxe_tree_view_create.c b/common/src/gxe_tree_view_create.c index a8b00d24..6593d9ce 100644 --- a/common/src/gxe_tree_view_create.c +++ b/common/src/gxe_tree_view_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_tree_view_create(GX_TREE_VIEW *tree, GX_CONST GX_CHAR *name, GX_WIDGET *parent, ULONG style, USHORT tree_id, GX_CONST GX_RECTANGLE *size, UINT control_block_size) diff --git a/common/src/gxe_tree_view_event_process.c b/common/src/gxe_tree_view_event_process.c index 9539b883..4c4e0aa7 100644 --- a/common/src/gxe_tree_view_event_process.c +++ b/common/src/gxe_tree_view_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_tree_view_event_process(GX_TREE_VIEW *tree, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_tree_view_indentation_set.c b/common/src/gxe_tree_view_indentation_set.c index cfe928d7..433d4423 100644 --- a/common/src/gxe_tree_view_indentation_set.c +++ b/common/src/gxe_tree_view_indentation_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_tree_view_indentation_set(GX_TREE_VIEW *tree, GX_VALUE indentation) { diff --git a/common/src/gxe_tree_view_position.c b/common/src/gxe_tree_view_position.c index f05821ec..9cea9cfa 100644 --- a/common/src/gxe_tree_view_position.c +++ b/common/src/gxe_tree_view_position.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_tree_view_position(GX_TREE_VIEW *tree) { diff --git a/common/src/gxe_tree_view_root_line_color_set.c b/common/src/gxe_tree_view_root_line_color_set.c index b81e6527..d41d22b0 100644 --- a/common/src/gxe_tree_view_root_line_color_set.c +++ b/common/src/gxe_tree_view_root_line_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_tree_view_root_line_color_set(GX_TREE_VIEW *tree, GX_RESOURCE_ID color) { diff --git a/common/src/gxe_tree_view_root_pixelmap_set.c b/common/src/gxe_tree_view_root_pixelmap_set.c index 81d4041c..e1e42779 100644 --- a/common/src/gxe_tree_view_root_pixelmap_set.c +++ b/common/src/gxe_tree_view_root_pixelmap_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_tree_view_root_pixelmap_set(GX_TREE_VIEW *tree, GX_RESOURCE_ID expand_map_id, GX_RESOURCE_ID collapse_map_id) { diff --git a/common/src/gxe_tree_view_selected_get.c b/common/src/gxe_tree_view_selected_get.c index ad91f3ba..96a82e57 100644 --- a/common/src/gxe_tree_view_selected_get.c +++ b/common/src/gxe_tree_view_selected_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_tree_view_selected_get(GX_TREE_VIEW *tree, GX_WIDGET **selected) { diff --git a/common/src/gxe_tree_view_selected_set.c b/common/src/gxe_tree_view_selected_set.c index 13e69f30..1d7f6b39 100644 --- a/common/src/gxe_tree_view_selected_set.c +++ b/common/src/gxe_tree_view_selected_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_tree_view_selected_set(GX_TREE_VIEW *tree, GX_WIDGET *selected) { diff --git a/common/src/gxe_utility_bidi_paragraph_reorder.c b/common/src/gxe_utility_bidi_paragraph_reorder.c index 1c641811..5041c98a 100644 --- a/common/src/gxe_utility_bidi_paragraph_reorder.c +++ b/common/src/gxe_utility_bidi_paragraph_reorder.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ #if defined(GX_DYNAMIC_BIDI_TEXT_SUPPORT) UINT _gxe_utility_bidi_paragraph_reorder(GX_BIDI_TEXT_INFO *input_info, GX_BIDI_RESOLVED_TEXT_INFO **resolved_info_head) @@ -124,12 +117,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 01-31-2022 Ting Zhu Initial Version 6.1.10 */ -/* */ /**************************************************************************/ #if defined(GX_DYNAMIC_BIDI_TEXT_SUPPORT) UINT _gxe_utility_bidi_paragraph_reorder_ext(GX_BIDI_TEXT_INFO *input_info, GX_BIDI_RESOLVED_TEXT_INFO **resolved_info_head) diff --git a/common/src/gxe_utility_bidi_resolved_text_info_delete.c b/common/src/gxe_utility_bidi_resolved_text_info_delete.c index 6abbb74f..c229dffa 100644 --- a/common/src/gxe_utility_bidi_resolved_text_info_delete.c +++ b/common/src/gxe_utility_bidi_resolved_text_info_delete.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,12 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ #if defined(GX_DYNAMIC_BIDI_TEXT_SUPPORT) UINT _gxe_utility_bidi_resolved_text_info_delete(GX_BIDI_RESOLVED_TEXT_INFO **resolved_info_head) diff --git a/common/src/gxe_utility_canvas_to_bmp.c b/common/src/gxe_utility_canvas_to_bmp.c index a0939255..dab017f3 100644 --- a/common/src/gxe_utility_canvas_to_bmp.c +++ b/common/src/gxe_utility_canvas_to_bmp.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_utility_canvas_to_bmp(GX_CANVAS *canvas, GX_RECTANGLE *rect, UINT (*write_data)(GX_UBYTE *byte_data, UINT data_count)) { diff --git a/common/src/gxe_utility_circle_point_get.c b/common/src/gxe_utility_circle_point_get.c index 038ca957..606f75c9 100644 --- a/common/src/gxe_utility_circle_point_get.c +++ b/common/src/gxe_utility_circle_point_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_utility_circle_point_get(INT xcenter, INT ycenter, UINT r, INT angle, GX_POINT *point) { diff --git a/common/src/gxe_utility_gradient_create.c b/common/src/gxe_utility_gradient_create.c index 95d9b8cf..e5964fb7 100644 --- a/common/src/gxe_utility_gradient_create.c +++ b/common/src/gxe_utility_gradient_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_utility_gradient_create(GX_GRADIENT *gradient, GX_VALUE width, GX_VALUE height, UCHAR type, GX_UBYTE alpha_start, GX_UBYTE alpha_end) diff --git a/common/src/gxe_utility_gradient_delete.c b/common/src/gxe_utility_gradient_delete.c index be949cba..cb2b7ec9 100644 --- a/common/src/gxe_utility_gradient_delete.c +++ b/common/src/gxe_utility_gradient_delete.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_utility_gradient_delete(GX_GRADIENT *gradient) { diff --git a/common/src/gxe_utility_ltoa.c b/common/src/gxe_utility_ltoa.c index 175e0615..1df42232 100644 --- a/common/src/gxe_utility_ltoa.c +++ b/common/src/gxe_utility_ltoa.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_utility_ltoa(LONG value, GX_CHAR *return_buffer, UINT return_buffer_size) { diff --git a/common/src/gxe_utility_pixelmap_resize.c b/common/src/gxe_utility_pixelmap_resize.c index e7310998..139c1474 100644 --- a/common/src/gxe_utility_pixelmap_resize.c +++ b/common/src/gxe_utility_pixelmap_resize.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_utility_pixelmap_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) { diff --git a/common/src/gxe_utility_pixelmap_rotate.c b/common/src/gxe_utility_pixelmap_rotate.c index d7d16706..664006f9 100644 --- a/common/src/gxe_utility_pixelmap_rotate.c +++ b/common/src/gxe_utility_pixelmap_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ GX_CALLER_CHECKING_EXTERNS /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_utility_pixelmap_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { diff --git a/common/src/gxe_utility_pixelmap_simple_rotate.c b/common/src/gxe_utility_pixelmap_simple_rotate.c index fb389848..00376cd4 100644 --- a/common/src/gxe_utility_pixelmap_simple_rotate.c +++ b/common/src/gxe_utility_pixelmap_simple_rotate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ /* Application Code */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_utility_pixelmap_simple_rotate(GX_PIXELMAP *src, INT angle, GX_PIXELMAP *destination, INT *rot_cx, INT *rot_cy) { diff --git a/common/src/gxe_utility_rectangle_center.c b/common/src/gxe_utility_rectangle_center.c index 659f6f05..d3dc28f6 100644 --- a/common/src/gxe_utility_rectangle_center.c +++ b/common/src/gxe_utility_rectangle_center.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_utility_rectangle_center(GX_RECTANGLE *rectangle, GX_RECTANGLE *within) { diff --git a/common/src/gxe_utility_rectangle_center_find.c b/common/src/gxe_utility_rectangle_center_find.c index 6444da55..d0397915 100644 --- a/common/src/gxe_utility_rectangle_center_find.c +++ b/common/src/gxe_utility_rectangle_center_find.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_utility_rectangle_center_find(GX_RECTANGLE *rectangle, GX_POINT *return_center) diff --git a/common/src/gxe_utility_rectangle_combine.c b/common/src/gxe_utility_rectangle_combine.c index 79ff6cb1..c96d974e 100644 --- a/common/src/gxe_utility_rectangle_combine.c +++ b/common/src/gxe_utility_rectangle_combine.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_utility_rectangle_combine(GX_RECTANGLE *first_rectangle, GX_RECTANGLE *second_rectangle) { diff --git a/common/src/gxe_utility_rectangle_compare.c b/common/src/gxe_utility_rectangle_compare.c index 82a06ce3..d748da06 100644 --- a/common/src/gxe_utility_rectangle_compare.c +++ b/common/src/gxe_utility_rectangle_compare.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_BOOL _gxe_utility_rectangle_compare(GX_RECTANGLE *first_rectangle, GX_RECTANGLE *second_rectangle) { diff --git a/common/src/gxe_utility_rectangle_define.c b/common/src/gxe_utility_rectangle_define.c index ab0d3047..cf018803 100644 --- a/common/src/gxe_utility_rectangle_define.c +++ b/common/src/gxe_utility_rectangle_define.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_utility_rectangle_define(GX_RECTANGLE *rectangle, GX_VALUE left, GX_VALUE top, GX_VALUE right, GX_VALUE bottom) diff --git a/common/src/gxe_utility_rectangle_overlap_detect.c b/common/src/gxe_utility_rectangle_overlap_detect.c index fbba4e2f..f8b9ddfc 100644 --- a/common/src/gxe_utility_rectangle_overlap_detect.c +++ b/common/src/gxe_utility_rectangle_overlap_detect.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_BOOL _gxe_utility_rectangle_overlap_detect(GX_RECTANGLE *first_rectangle, GX_RECTANGLE *second_rectangle, GX_RECTANGLE *return_overlap_area) diff --git a/common/src/gxe_utility_rectangle_point_detect.c b/common/src/gxe_utility_rectangle_point_detect.c index 7d3f9128..e54a7cb2 100644 --- a/common/src/gxe_utility_rectangle_point_detect.c +++ b/common/src/gxe_utility_rectangle_point_detect.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ GX_BOOL _gxe_utility_rectangle_point_detect(GX_RECTANGLE *rectangle, GX_POINT point) { diff --git a/common/src/gxe_utility_rectangle_resize.c b/common/src/gxe_utility_rectangle_resize.c index ea65e55f..c26d7211 100644 --- a/common/src/gxe_utility_rectangle_resize.c +++ b/common/src/gxe_utility_rectangle_resize.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_utility_rectangle_resize(GX_RECTANGLE *rectangle, GX_VALUE adjust) { diff --git a/common/src/gxe_utility_rectangle_shift.c b/common/src/gxe_utility_rectangle_shift.c index a749766e..c4239d65 100644 --- a/common/src/gxe_utility_rectangle_shift.c +++ b/common/src/gxe_utility_rectangle_shift.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_utility_rectangle_shift(GX_RECTANGLE *rectangle, GX_VALUE x_shift, GX_VALUE y_shift) { diff --git a/common/src/gxe_utility_string_to_alphamap.c b/common/src/gxe_utility_string_to_alphamap.c index b06ffbbe..38a541e0 100644 --- a/common/src/gxe_utility_string_to_alphamap.c +++ b/common/src/gxe_utility_string_to_alphamap.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,14 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_utility_string_to_alphamap(GX_CONST GX_CHAR *text, GX_CONST GX_FONT *font, GX_PIXELMAP *textmap) @@ -120,14 +113,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_utility_string_to_alphamap_ext(GX_CONST GX_STRING *text, GX_CONST GX_FONT *font, GX_PIXELMAP *textmap) { diff --git a/common/src/gxe_vertical_list_children_position.c b/common/src/gxe_vertical_list_children_position.c index 11b5ae53..9df1ca71 100644 --- a/common/src/gxe_vertical_list_children_position.c +++ b/common/src/gxe_vertical_list_children_position.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_vertical_list_children_position(GX_VERTICAL_LIST *vertical_list) { diff --git a/common/src/gxe_vertical_list_create.c b/common/src/gxe_vertical_list_create.c index 4d249d9c..8ab6b9cb 100644 --- a/common/src/gxe_vertical_list_create.c +++ b/common/src/gxe_vertical_list_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -72,14 +73,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_vertical_list_create(GX_VERTICAL_LIST *vertical_list, GX_CONST GX_CHAR *name, GX_WIDGET *parent, INT total_rows, diff --git a/common/src/gxe_vertical_list_event_process.c b/common/src/gxe_vertical_list_event_process.c index 02fac175..c35cbf75 100644 --- a/common/src/gxe_vertical_list_event_process.c +++ b/common/src/gxe_vertical_list_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_vertical_list_event_process(GX_VERTICAL_LIST *list, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_vertical_list_page_index_set.c b/common/src/gxe_vertical_list_page_index_set.c index 84f4f749..d2a7a7b1 100644 --- a/common/src/gxe_vertical_list_page_index_set.c +++ b/common/src/gxe_vertical_list_page_index_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_vertical_list_page_index_set(GX_VERTICAL_LIST *vertical_list, INT index) { diff --git a/common/src/gxe_vertical_list_selected_index_get.c b/common/src/gxe_vertical_list_selected_index_get.c index 737d9667..68c64e94 100644 --- a/common/src/gxe_vertical_list_selected_index_get.c +++ b/common/src/gxe_vertical_list_selected_index_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_vertical_list_selected_index_get(GX_VERTICAL_LIST *vertical_list, INT *return_index) diff --git a/common/src/gxe_vertical_list_selected_set.c b/common/src/gxe_vertical_list_selected_set.c index 2cac3f9f..fd7307ca 100644 --- a/common/src/gxe_vertical_list_selected_set.c +++ b/common/src/gxe_vertical_list_selected_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_vertical_list_selected_set(GX_VERTICAL_LIST *vertical_list, INT index) { diff --git a/common/src/gxe_vertical_list_selected_widget_get.c b/common/src/gxe_vertical_list_selected_widget_get.c index 9eeba802..d83b45a3 100644 --- a/common/src/gxe_vertical_list_selected_widget_get.c +++ b/common/src/gxe_vertical_list_selected_widget_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_vertical_list_selected_widget_get(GX_VERTICAL_LIST *vertical_list, GX_WIDGET **return_list_entry) diff --git a/common/src/gxe_vertical_list_total_rows_set.c b/common/src/gxe_vertical_list_total_rows_set.c index ca83d1ac..838c0769 100644 --- a/common/src/gxe_vertical_list_total_rows_set.c +++ b/common/src/gxe_vertical_list_total_rows_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_vertical_list_total_rows_set(GX_VERTICAL_LIST *list, INT count) { diff --git a/common/src/gxe_vertical_scrollbar_create.c b/common/src/gxe_vertical_scrollbar_create.c index 92ea5e8f..dfe7a28d 100644 --- a/common/src/gxe_vertical_scrollbar_create.c +++ b/common/src/gxe_vertical_scrollbar_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,14 +67,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_vertical_scrollbar_create(GX_SCROLLBAR *scrollbar, GX_CONST GX_CHAR *name, GX_WINDOW *parent, diff --git a/common/src/gxe_widget_allocate.c b/common/src/gxe_widget_allocate.c index 249cedd6..05301795 100644 --- a/common/src/gxe_widget_allocate.c +++ b/common/src/gxe_widget_allocate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_allocate(GX_WIDGET **widget, ULONG memsize) { diff --git a/common/src/gxe_widget_attach.c b/common/src/gxe_widget_attach.c index a6f251c5..0677e0a7 100644 --- a/common/src/gxe_widget_attach.c +++ b/common/src/gxe_widget_attach.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_attach(GX_WIDGET *parent, GX_WIDGET *child) diff --git a/common/src/gxe_widget_back_attach.c b/common/src/gxe_widget_back_attach.c index 7f1b37de..913aab86 100644 --- a/common/src/gxe_widget_back_attach.c +++ b/common/src/gxe_widget_back_attach.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_back_attach(GX_WIDGET *parent, GX_WIDGET *child) diff --git a/common/src/gxe_widget_back_move.c b/common/src/gxe_widget_back_move.c index f3fb3f7d..7952f422 100644 --- a/common/src/gxe_widget_back_move.c +++ b/common/src/gxe_widget_back_move.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_back_move(GX_WIDGET *widget, GX_BOOL *widget_moved) { diff --git a/common/src/gxe_widget_block_move.c b/common/src/gxe_widget_block_move.c index 8cffdb81..fd587591 100644 --- a/common/src/gxe_widget_block_move.c +++ b/common/src/gxe_widget_block_move.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_block_move(GX_WIDGET *widget, GX_RECTANGLE *block, INT x_shift, INT y_shift) { diff --git a/common/src/gxe_widget_border_style_set.c b/common/src/gxe_widget_border_style_set.c index 467dd743..50c28e7d 100644 --- a/common/src/gxe_widget_border_style_set.c +++ b/common/src/gxe_widget_border_style_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_border_style_set(GX_WIDGET *widget, ULONG Style) { diff --git a/common/src/gxe_widget_border_width_get.c b/common/src/gxe_widget_border_width_get.c index bae67bce..56488768 100644 --- a/common/src/gxe_widget_border_width_get.c +++ b/common/src/gxe_widget_border_width_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_border_width_get(GX_WIDGET *widget, GX_VALUE *return_width) { diff --git a/common/src/gxe_widget_canvas_get.c b/common/src/gxe_widget_canvas_get.c index c8da795d..1e0934f9 100644 --- a/common/src/gxe_widget_canvas_get.c +++ b/common/src/gxe_widget_canvas_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_canvas_get(GX_WIDGET *widget, GX_CANVAS **return_canvas) { diff --git a/common/src/gxe_widget_child_detect.c b/common/src/gxe_widget_child_detect.c index 0232fed7..7af146c6 100644 --- a/common/src/gxe_widget_child_detect.c +++ b/common/src/gxe_widget_child_detect.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* GUIX application code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_child_detect(GX_WIDGET *parent, GX_WIDGET *child, GX_BOOL *return_detect) { diff --git a/common/src/gxe_widget_client_get.c b/common/src/gxe_widget_client_get.c index d292fcc8..70c8b5a1 100644 --- a/common/src/gxe_widget_client_get.c +++ b/common/src/gxe_widget_client_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ /* Application Code */ /* GUIX draw functions */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_client_get(GX_WIDGET *widget, GX_VALUE border_width, GX_RECTANGLE *return_size) { diff --git a/common/src/gxe_widget_color_get.c b/common/src/gxe_widget_color_get.c index ec1608c3..d290f2bc 100644 --- a/common/src/gxe_widget_color_get.c +++ b/common/src/gxe_widget_color_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* Application Code */ /* GUIX default draw funtions */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_color_get(GX_WIDGET *widget, GX_RESOURCE_ID color_id, GX_COLOR *return_color) { diff --git a/common/src/gxe_widget_create.c b/common/src/gxe_widget_create.c index cbb1a186..c4ab39fd 100644 --- a/common/src/gxe_widget_create.c +++ b/common/src/gxe_widget_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_create(GX_WIDGET *widget, GX_CONST GX_CHAR *name, GX_WIDGET *parent, ULONG style, USHORT Id, GX_CONST GX_RECTANGLE *size, UINT widget_block_size) diff --git a/common/src/gxe_widget_created_test.c b/common/src/gxe_widget_created_test.c index 8ab451ef..064804dd 100644 --- a/common/src/gxe_widget_created_test.c +++ b/common/src/gxe_widget_created_test.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* GUIX application code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_created_test(GX_WIDGET *widget, GX_BOOL *return_test) { diff --git a/common/src/gxe_widget_delete.c b/common/src/gxe_widget_delete.c index d6ec0d70..7b0315f6 100644 --- a/common/src/gxe_widget_delete.c +++ b/common/src/gxe_widget_delete.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_delete(GX_WIDGET *widget) { diff --git a/common/src/gxe_widget_detach.c b/common/src/gxe_widget_detach.c index d1021372..c3e2ee63 100644 --- a/common/src/gxe_widget_detach.c +++ b/common/src/gxe_widget_detach.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_detach(GX_WIDGET *widget) { diff --git a/common/src/gxe_widget_draw_set.c b/common/src/gxe_widget_draw_set.c index 84a358c5..709eb83e 100644 --- a/common/src/gxe_widget_draw_set.c +++ b/common/src/gxe_widget_draw_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_draw_set(GX_WIDGET *widget, VOID (*draw_func)(GX_WIDGET *)) { diff --git a/common/src/gxe_widget_event_generate.c b/common/src/gxe_widget_event_generate.c index 5b10d1e4..f5026dad 100644 --- a/common/src/gxe_widget_event_generate.c +++ b/common/src/gxe_widget_event_generate.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_event_generate(GX_WIDGET *widget, USHORT event_type, LONG value) { diff --git a/common/src/gxe_widget_event_process.c b/common/src/gxe_widget_event_process.c index 16f54ca8..1a4e57ac 100644 --- a/common/src/gxe_widget_event_process.c +++ b/common/src/gxe_widget_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_event_process(GX_WIDGET *widget, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_widget_event_process_set.c b/common/src/gxe_widget_event_process_set.c index 8c45c0f6..2f91075f 100644 --- a/common/src/gxe_widget_event_process_set.c +++ b/common/src/gxe_widget_event_process_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* GUIX Application */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_event_process_set(GX_WIDGET *widget, UINT (*event_processing_function)(GX_WIDGET *, GX_EVENT *)) { diff --git a/common/src/gxe_widget_event_to_parent.c b/common/src/gxe_widget_event_to_parent.c index 569ba557..3c57217f 100644 --- a/common/src/gxe_widget_event_to_parent.c +++ b/common/src/gxe_widget_event_to_parent.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_event_to_parent(GX_WIDGET *widget, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_widget_fill_color_set.c b/common/src/gxe_widget_fill_color_set.c index 07b623e5..f15f0997 100644 --- a/common/src/gxe_widget_fill_color_set.c +++ b/common/src/gxe_widget_fill_color_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_fill_color_set(GX_WIDGET *widget, GX_RESOURCE_ID normal_color, diff --git a/common/src/gxe_widget_find.c b/common/src/gxe_widget_find.c index 144453d0..f299779c 100644 --- a/common/src/gxe_widget_find.c +++ b/common/src/gxe_widget_find.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_find(GX_WIDGET *parent, USHORT widget_id, INT search_depth, GX_WIDGET **return_widget) { diff --git a/common/src/gxe_widget_first_child_get.c b/common/src/gxe_widget_first_child_get.c index 6e1a0ae9..5f4b8aae 100644 --- a/common/src/gxe_widget_first_child_get.c +++ b/common/src/gxe_widget_first_child_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_first_child_get(GX_WIDGET *parent, GX_WIDGET **return_widget) { diff --git a/common/src/gxe_widget_focus_next.c b/common/src/gxe_widget_focus_next.c index 03e79d97..a5fff7fa 100644 --- a/common/src/gxe_widget_focus_next.c +++ b/common/src/gxe_widget_focus_next.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_focus_next(GX_WIDGET *widget) { diff --git a/common/src/gxe_widget_focus_previous.c b/common/src/gxe_widget_focus_previous.c index 469c1a78..f9e567ba 100644 --- a/common/src/gxe_widget_focus_previous.c +++ b/common/src/gxe_widget_focus_previous.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_focus_previous(GX_WIDGET *widget) { diff --git a/common/src/gxe_widget_font_get.c b/common/src/gxe_widget_font_get.c index f07f13d4..d2cd7c55 100644 --- a/common/src/gxe_widget_font_get.c +++ b/common/src/gxe_widget_font_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* Application Code */ /* GUIX default drawing functions */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_font_get(GX_WIDGET *widget, GX_RESOURCE_ID resource_id, GX_FONT **return_font) { diff --git a/common/src/gxe_widget_free.c b/common/src/gxe_widget_free.c index 5fb0cec4..822c60b0 100644 --- a/common/src/gxe_widget_free.c +++ b/common/src/gxe_widget_free.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_free(GX_WIDGET *widget) { diff --git a/common/src/gxe_widget_front_move.c b/common/src/gxe_widget_front_move.c index f54c2d99..cda48af3 100644 --- a/common/src/gxe_widget_front_move.c +++ b/common/src/gxe_widget_front_move.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_front_move(GX_WIDGET *widget, GX_BOOL *return_moved) { diff --git a/common/src/gxe_widget_height_get.c b/common/src/gxe_widget_height_get.c index 32866414..25484fde 100644 --- a/common/src/gxe_widget_height_get.c +++ b/common/src/gxe_widget_height_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_height_get(GX_WIDGET *widget, GX_VALUE *return_height) { diff --git a/common/src/gxe_widget_hide.c b/common/src/gxe_widget_hide.c index 90b1e098..5127bc8f 100644 --- a/common/src/gxe_widget_hide.c +++ b/common/src/gxe_widget_hide.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_hide(GX_WIDGET *widget) { diff --git a/common/src/gxe_widget_last_child_get.c b/common/src/gxe_widget_last_child_get.c index 78c67e53..2e573b74 100644 --- a/common/src/gxe_widget_last_child_get.c +++ b/common/src/gxe_widget_last_child_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_last_child_get(GX_WIDGET *parent, GX_WIDGET **return_widget) { diff --git a/common/src/gxe_widget_next_sibling_get.c b/common/src/gxe_widget_next_sibling_get.c index d2e0ab80..103e5074 100644 --- a/common/src/gxe_widget_next_sibling_get.c +++ b/common/src/gxe_widget_next_sibling_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_next_sibling_get(GX_WIDGET *current, GX_WIDGET **return_widget) { diff --git a/common/src/gxe_widget_parent_get.c b/common/src/gxe_widget_parent_get.c index cd7024e9..8074a253 100644 --- a/common/src/gxe_widget_parent_get.c +++ b/common/src/gxe_widget_parent_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_parent_get(GX_WIDGET *current, GX_WIDGET **return_widget) { diff --git a/common/src/gxe_widget_pixelmap_get.c b/common/src/gxe_widget_pixelmap_get.c index 689014fd..8a2f198c 100644 --- a/common/src/gxe_widget_pixelmap_get.c +++ b/common/src/gxe_widget_pixelmap_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_pixelmap_get(GX_WIDGET *widget, GX_RESOURCE_ID resource_id, GX_PIXELMAP **return_pixelmap) { diff --git a/common/src/gxe_widget_previous_sibling_get.c b/common/src/gxe_widget_previous_sibling_get.c index 8db1de41..73e5e0c6 100644 --- a/common/src/gxe_widget_previous_sibling_get.c +++ b/common/src/gxe_widget_previous_sibling_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_previous_sibling_get(GX_WIDGET *current, GX_WIDGET **return_widget) { diff --git a/common/src/gxe_widget_resize.c b/common/src/gxe_widget_resize.c index c9b4054a..a1c9b5e3 100644 --- a/common/src/gxe_widget_resize.c +++ b/common/src/gxe_widget_resize.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_resize(GX_WIDGET *widget, GX_RECTANGLE *new_size) { diff --git a/common/src/gxe_widget_shift.c b/common/src/gxe_widget_shift.c index 8f3199ff..b6bceb24 100644 --- a/common/src/gxe_widget_shift.c +++ b/common/src/gxe_widget_shift.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_shift(GX_WIDGET *widget, GX_VALUE x_shift, GX_VALUE y_shift, GX_BOOL mark_dirty) { diff --git a/common/src/gxe_widget_show.c b/common/src/gxe_widget_show.c index 1c3e2290..ad9cd9de 100644 --- a/common/src/gxe_widget_show.c +++ b/common/src/gxe_widget_show.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_show(GX_WIDGET *widget) { diff --git a/common/src/gxe_widget_status_add.c b/common/src/gxe_widget_status_add.c index 62324b66..bbc67a2f 100644 --- a/common/src/gxe_widget_status_add.c +++ b/common/src/gxe_widget_status_add.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_status_add(GX_WIDGET *widget, ULONG status) { diff --git a/common/src/gxe_widget_status_get.c b/common/src/gxe_widget_status_get.c index 1243ff57..8be93822 100644 --- a/common/src/gxe_widget_status_get.c +++ b/common/src/gxe_widget_status_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_status_get(GX_WIDGET *widget, ULONG *return_status) { diff --git a/common/src/gxe_widget_status_remove.c b/common/src/gxe_widget_status_remove.c index a120757c..c0c1bf0d 100644 --- a/common/src/gxe_widget_status_remove.c +++ b/common/src/gxe_widget_status_remove.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,14 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_status_remove(GX_WIDGET *widget, ULONG status) { diff --git a/common/src/gxe_widget_status_test.c b/common/src/gxe_widget_status_test.c index 6c8df8b9..9de49f9b 100644 --- a/common/src/gxe_widget_status_test.c +++ b/common/src/gxe_widget_status_test.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_status_test(GX_WIDGET *widget, ULONG status, GX_BOOL *return_test) { diff --git a/common/src/gxe_widget_string_get.c b/common/src/gxe_widget_string_get.c index 4a700c21..c568ad9d 100644 --- a/common/src/gxe_widget_string_get.c +++ b/common/src/gxe_widget_string_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_widget_string_get(GX_WIDGET *widget, GX_RESOURCE_ID resource_id, GX_CONST GX_CHAR **return_string) @@ -133,14 +126,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_string_get_ext(GX_WIDGET *widget, GX_RESOURCE_ID string_id, GX_STRING *return_string) { diff --git a/common/src/gxe_widget_style_add.c b/common/src/gxe_widget_style_add.c index 667a04f6..79438586 100644 --- a/common/src/gxe_widget_style_add.c +++ b/common/src/gxe_widget_style_add.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_style_add(GX_WIDGET *widget, ULONG style) { diff --git a/common/src/gxe_widget_style_get.c b/common/src/gxe_widget_style_get.c index 48c41a50..dc32ecd1 100644 --- a/common/src/gxe_widget_style_get.c +++ b/common/src/gxe_widget_style_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_style_get(GX_WIDGET *widget, ULONG *return_style) { diff --git a/common/src/gxe_widget_style_remove.c b/common/src/gxe_widget_style_remove.c index 5b75bc91..b4b9f38c 100644 --- a/common/src/gxe_widget_style_remove.c +++ b/common/src/gxe_widget_style_remove.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_style_remove(GX_WIDGET *widget, ULONG style) { diff --git a/common/src/gxe_widget_style_set.c b/common/src/gxe_widget_style_set.c index 7cf00703..ee6ccb27 100644 --- a/common/src/gxe_widget_style_set.c +++ b/common/src/gxe_widget_style_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_style_set(GX_WIDGET *widget, ULONG style) { diff --git a/common/src/gxe_widget_text_blend.c b/common/src/gxe_widget_text_blend.c index 78de7d70..c9942810 100644 --- a/common/src/gxe_widget_text_blend.c +++ b/common/src/gxe_widget_text_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #if defined(GX_ENABLE_DEPRECATED_STRING_API) UINT _gxe_widget_text_blend(GX_WIDGET *widget, @@ -145,14 +138,6 @@ UINT status; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_text_blend_ext(GX_WIDGET *widget, UINT tColor, UINT font_id, GX_CONST GX_STRING *string, INT x_offset, INT y_offset, UCHAR alpha) diff --git a/common/src/gxe_widget_top_visible_child_find.c b/common/src/gxe_widget_top_visible_child_find.c index 6e623750..14c7b2c2 100644 --- a/common/src/gxe_widget_top_visible_child_find.c +++ b/common/src/gxe_widget_top_visible_child_find.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_top_visible_child_find(GX_WIDGET *parent, GX_WIDGET **return_widget) { diff --git a/common/src/gxe_widget_type_find.c b/common/src/gxe_widget_type_find.c index 0472a380..54f45a1e 100644 --- a/common/src/gxe_widget_type_find.c +++ b/common/src/gxe_widget_type_find.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_type_find(GX_WIDGET *parent, USHORT widget_id, GX_WIDGET **return_widget) { diff --git a/common/src/gxe_widget_width_get.c b/common/src/gxe_widget_width_get.c index b70ba36a..eeff388e 100644 --- a/common/src/gxe_widget_width_get.c +++ b/common/src/gxe_widget_width_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,14 +64,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_widget_width_get(GX_WIDGET *widget, GX_VALUE *return_width) { diff --git a/common/src/gxe_window_client_height_get.c b/common/src/gxe_window_client_height_get.c index a4abf8b9..61f65f5b 100644 --- a/common/src/gxe_window_client_height_get.c +++ b/common/src/gxe_window_client_height_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_window_client_height_get(GX_WINDOW *window, GX_VALUE *return_height) { diff --git a/common/src/gxe_window_client_scroll.c b/common/src/gxe_window_client_scroll.c index 3533fb5a..dd8998de 100644 --- a/common/src/gxe_window_client_scroll.c +++ b/common/src/gxe_window_client_scroll.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,14 +65,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_window_client_scroll(GX_WINDOW *window, GX_VALUE x_scroll, GX_VALUE y_scroll) { diff --git a/common/src/gxe_window_client_width_get.c b/common/src/gxe_window_client_width_get.c index c914a46d..1b66c830 100644 --- a/common/src/gxe_window_client_width_get.c +++ b/common/src/gxe_window_client_width_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_window_client_width_get(GX_WINDOW *window, GX_VALUE *return_width) { diff --git a/common/src/gxe_window_close.c b/common/src/gxe_window_close.c index b2f44f87..315d15cf 100644 --- a/common/src/gxe_window_close.c +++ b/common/src/gxe_window_close.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_window_close(GX_WINDOW *window) { diff --git a/common/src/gxe_window_create.c b/common/src/gxe_window_create.c index 06b6d38a..06d3ec5b 100644 --- a/common/src/gxe_window_create.c +++ b/common/src/gxe_window_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,14 +69,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_window_create(GX_WINDOW *window, GX_CONST GX_CHAR *name, GX_WIDGET *parent, ULONG style, USHORT window_id, GX_CONST GX_RECTANGLE *size, diff --git a/common/src/gxe_window_event_process.c b/common/src/gxe_window_event_process.c index 5ef0a386..be04eabf 100644 --- a/common/src/gxe_window_event_process.c +++ b/common/src/gxe_window_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_window_event_process(GX_WINDOW *window, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_window_execute.c b/common/src/gxe_window_execute.c index 4652b12d..801c03b0 100644 --- a/common/src/gxe_window_execute.c +++ b/common/src/gxe_window_execute.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_window_execute(GX_WINDOW *window, ULONG *return_ptr) { diff --git a/common/src/gxe_window_root_create.c b/common/src/gxe_window_root_create.c index 550b1545..6dd836a4 100644 --- a/common/src/gxe_window_root_create.c +++ b/common/src/gxe_window_root_create.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_window_root_create(GX_WINDOW_ROOT *root_window, GX_CONST GX_CHAR *name, GX_CANVAS *canvas, diff --git a/common/src/gxe_window_root_delete.c b/common/src/gxe_window_root_delete.c index c499a5d4..a4a9b29c 100644 --- a/common/src/gxe_window_root_delete.c +++ b/common/src/gxe_window_root_delete.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_window_root_delete(GX_WINDOW_ROOT *root_window) { diff --git a/common/src/gxe_window_root_event_process.c b/common/src/gxe_window_root_event_process.c index 0f924f12..be470075 100644 --- a/common/src/gxe_window_root_event_process.c +++ b/common/src/gxe_window_root_event_process.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_window_root_event_process(GX_WINDOW_ROOT *root_window, GX_EVENT *event_ptr) { diff --git a/common/src/gxe_window_root_find.c b/common/src/gxe_window_root_find.c index 1ad1c669..b5875cba 100644 --- a/common/src/gxe_window_root_find.c +++ b/common/src/gxe_window_root_find.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,14 +62,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_window_root_find(GX_WIDGET *widget, GX_WINDOW_ROOT **return_root_window) { diff --git a/common/src/gxe_window_scroll_info_get.c b/common/src/gxe_window_scroll_info_get.c index cfe0fddd..b19f8b06 100644 --- a/common/src/gxe_window_scroll_info_get.c +++ b/common/src/gxe_window_scroll_info_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_window_scroll_info_get(GX_WINDOW *window, ULONG type, GX_SCROLL_INFO *return_scroll_info) { diff --git a/common/src/gxe_window_scrollbar_find.c b/common/src/gxe_window_scrollbar_find.c index 088151d4..acc50dda 100644 --- a/common/src/gxe_window_scrollbar_find.c +++ b/common/src/gxe_window_scrollbar_find.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,14 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_window_scrollbar_find(GX_WINDOW *window, USHORT type, GX_SCROLLBAR **return_scrollbar) { diff --git a/common/src/gxe_window_wallpaper_get.c b/common/src/gxe_window_wallpaper_get.c index 635bd336..f818ac2a 100644 --- a/common/src/gxe_window_wallpaper_get.c +++ b/common/src/gxe_window_wallpaper_get.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,14 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_window_wallpaper_get(GX_WINDOW *window, GX_RESOURCE_ID *return_wallpaper_id) { diff --git a/common/src/gxe_window_wallpaper_set.c b/common/src/gxe_window_wallpaper_set.c index cf9589a6..ba1b7c89 100644 --- a/common/src/gxe_window_wallpaper_set.c +++ b/common/src/gxe_window_wallpaper_set.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,14 +66,6 @@ GX_CALLER_CHECKING_EXTERNS /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ UINT _gxe_window_wallpaper_set(GX_WINDOW *window, GX_RESOURCE_ID wallpaper_id, GX_BOOL tile) { diff --git a/guix_studio/StudioXProject.h b/guix_studio/StudioXProject.h index eb6c5b0d..7e60d5ac 100644 --- a/guix_studio/StudioXProject.h +++ b/guix_studio/StudioXProject.h @@ -149,7 +149,7 @@ typedef struct { // ** IMPORTANT NOTE TO SELF ** // // If you modify the members of this class in any way, make SURE you initialize them -// in the default constructor, and even more important make SURE you copy the new +// in the default constructor, and even more important make SURE you copy the new // members in the copy constructur!! /***************************************************************************************/ class res_info { @@ -388,7 +388,7 @@ struct animation_info_struct; // ** IMPORTANT NOTE TO SELF ** // // If you modify the members of this class in any way, make SURE you initialize them -// in the default constructor, and even more important make SURE you copy the new +// in the default constructor, and even more important make SURE you copy the new // members in the copy constructur!! /***************************************************************************************/ class widget_info { diff --git a/guix_studio/dummy_app.c b/guix_studio/dummy_app.c index ac205fcc..edda9a78 100644 --- a/guix_studio/dummy_app.c +++ b/guix_studio/dummy_app.c @@ -235,7 +235,7 @@ void dummy_app_create(void) /* KGM this is broken, remove for now. gx_utility_rectangle_define(&size, 300, 50, 420, 80); - gx_single_line_text_input_create(&text_input_ptr, "text input", &demo_root_window, size, 1, + gx_single_line_text_input_create(&text_input_ptr, "text input", &demo_root_window, size, 1, "zero one TWO Three for five",27, GX_ECHO, GX_SOLID_LINE, GX_VERTICAL_BLINKING_CURSOR, 0, 0); */ /* create demo window d */ diff --git a/guix_studio/gx_studio_font_util.h b/guix_studio/gx_studio_font_util.h index 59f3fe6f..7d7bc9f7 100644 --- a/guix_studio/gx_studio_font_util.h +++ b/guix_studio/gx_studio_font_util.h @@ -21,7 +21,7 @@ typedef struct int width; int height; int pitch; - unsigned char *gx_glyph_data; /* pointer to Glyph bitmap data. + unsigned char *gx_glyph_data; /* pointer to Glyph bitmap data. The size of the bitmap is width * height */ } GXS_FONT_DATA; diff --git a/guix_studio/image_reader.h b/guix_studio/image_reader.h index 0f381b7f..a35e25f7 100644 --- a/guix_studio/image_reader.h +++ b/guix_studio/image_reader.h @@ -125,7 +125,7 @@ class image_reader static void ReadPixel24(image_reader *reader, int Index, Pixel *pPut); static void ReadPixel32(image_reader *reader, int Index, Pixel *pPut); - // Pixel data writers- + // Pixel data writers- // A group of functions for writing Pixelmap output data in the requested // format. Only supporting 16, 24, and 32 bit formats at first. // FIXME: Need to add 1bpp to 8bpp formats. @@ -155,7 +155,7 @@ class image_reader static Pixel WritePixel32Bit_BGRA(image_reader *reader, Pixel pPixel); - // Pixel data readers- + // Pixel data readers- // A group of functions for reading Pixelmap output data back into // a Pixel structure. Only supporting 16, 24, and 32 bit formats at first. // FIXME: Need to add 1bpp to 8bpp formats. @@ -204,7 +204,7 @@ class image_reader Pixel (*mpReadOutputPixel)(image_reader *reader, int); // pointer to function to write out output data format - // + // // The function must increment the data and aux ptr appropriately, // and return the actual value written (used for dithering error) diff --git a/guix_studio/libs/libgit2/include/git2/global.h b/guix_studio/libs/libgit2/include/git2/global.h index 2a87e10c..7db20c67 100644 --- a/guix_studio/libs/libgit2/include/git2/global.h +++ b/guix_studio/libs/libgit2/include/git2/global.h @@ -32,7 +32,7 @@ GIT_EXTERN(int) git_libgit2_init(void); * many times as `git_libgit2_init()` was called - it will return the * number of remainining initializations that have not been shutdown * (after this one). - * + * * @return the number of remaining initializations of the library, or an * error code. */ diff --git a/guix_studio/libs/libgit2/include/git2/refspec.h b/guix_studio/libs/libgit2/include/git2/refspec.h index eaf77474..6b521e5b 100644 --- a/guix_studio/libs/libgit2/include/git2/refspec.h +++ b/guix_studio/libs/libgit2/include/git2/refspec.h @@ -79,7 +79,7 @@ GIT_EXTERN(int) git_refspec_force(const git_refspec *refspec); GIT_EXTERN(git_direction) git_refspec_direction(const git_refspec *spec); /** - * Check if a refspec's source descriptor matches a reference + * Check if a refspec's source descriptor matches a reference * * @param refspec the refspec * @param refname the name of the reference to check diff --git a/guix_studio/libs/libgit2/include/git2/repository.h b/guix_studio/libs/libgit2/include/git2/repository.h index 9ddcd340..94fec115 100644 --- a/guix_studio/libs/libgit2/include/git2/repository.h +++ b/guix_studio/libs/libgit2/include/git2/repository.h @@ -482,7 +482,7 @@ GIT_EXTERN(const char *) git_repository_workdir(const git_repository *repo); /** * Get the path of the shared common directory for this repository. - * + * * If the repository is bare, it is the root directory for the repository. * If the repository is a worktree, it is the parent repo's gitdir. * Otherwise, it is the gitdir. diff --git a/guix_studio/ports/gx_port.h b/guix_studio/ports/gx_port.h index 33bbc1bb..91746e43 100644 --- a/guix_studio/ports/gx_port.h +++ b/guix_studio/ports/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,12 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H @@ -110,7 +105,7 @@ typedef SHORT GX_VALUE; #define GX_VALUE_MAX 0x7FFF -/* For the win32 port, the entry point is WinMain, which is defined +/* For the win32 port, the entry point is WinMain, which is defined in the win32 driver file. The entry point for GUIX demo is gx_main(). */ #define main(a, b) gx_main(a, b) diff --git a/guix_studio/ports/gx_win32_studio_display_driver.c b/guix_studio/ports/gx_win32_studio_display_driver.c index 0775bb7a..843c5c3f 100644 --- a/guix_studio/ports/gx_win32_studio_display_driver.c +++ b/guix_studio/ports/gx_win32_studio_display_driver.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/guix_studio/ports/gx_win32_studio_display_driver.h b/guix_studio/ports/gx_win32_studio_display_driver.h index 92bce8ad..d5f9a370 100644 --- a/guix_studio/ports/gx_win32_studio_display_driver.h +++ b/guix_studio/ports/gx_win32_studio_display_driver.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/guix_studio/resource.h b/guix_studio/resource.h index f3d86664..a1c8dd93 100644 --- a/guix_studio/resource.h +++ b/guix_studio/resource.h @@ -746,7 +746,7 @@ #define ID_FONTSUBMENU_GENERATEXML 33113 // Next default values for new objects -// +// #ifdef APSTUDIO_INVOKED #ifndef APSTUDIO_READONLY_SYMBOLS #define _APS_NEXT_RESOURCE_VALUE 325 diff --git a/guix_studio/stdafx.h b/guix_studio/stdafx.h index 42cffbe8..c9210697 100644 --- a/guix_studio/stdafx.h +++ b/guix_studio/stdafx.h @@ -18,7 +18,7 @@ #define WINVER 0x0602 // Change this to the appropriate value to target other versions of Windows. #endif -#ifndef _WIN32_WINNT // Allow use of features specific to Windows 8 or later. +#ifndef _WIN32_WINNT // Allow use of features specific to Windows 8 or later. #define _WIN32_WINNT 0x0602 // Change this to the appropriate value to target other versions of Windows. #endif diff --git a/guix_studio/studiox_constants.h b/guix_studio/studiox_constants.h index ceeeefcb..ae63954e 100644 --- a/guix_studio/studiox_constants.h +++ b/guix_studio/studiox_constants.h @@ -88,9 +88,9 @@ enum TARGET_TOOLS { #define GX_VERSION_WITH_GENERIC_SCROLL_WHEEL 60107 -// The 6.1.6 GUIX release is decided as official +// The 6.1.6 GUIX release is decided as official // ssp 2.0 release. For this release we no longer -// require synergy custom fonts when running at +// require synergy custom fonts when running at // 8bpp palette mode, just use standard system fonts. #define GX_VERSION_SYNERGY_GLYPH_GEN_CHANGE 60106 // stop using custom synergy fonts, just use software glyph drawing diff --git a/guix_studio/studiox_screen_driver.c b/guix_studio/studiox_screen_driver.c index 1345a16b..e2dd52f2 100644 --- a/guix_studio/studiox_screen_driver.c +++ b/guix_studio/studiox_screen_driver.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/ports/arc_em/metaware/inc/gx_port.h b/ports/arc_em/metaware/inc/gx_port.h index 53b38fdc..2aacdca3 100644 --- a/ports/arc_em/metaware/inc/gx_port.h +++ b/ports/arc_em/metaware/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2010 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/arc_hs/metaware/inc/gx_port.h b/ports/arc_hs/metaware/inc/gx_port.h index 95fb22a6..fd7b9538 100644 --- a/ports/arc_hs/metaware/inc/gx_port.h +++ b/ports/arc_hs/metaware/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/arm9/ac5/inc/gx_port.h b/ports/arm9/ac5/inc/gx_port.h index 56b184ca..19d1f61f 100644 --- a/ports/arm9/ac5/inc/gx_port.h +++ b/ports/arm9/ac5/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/arm9/gnu/inc/gx_port.h b/ports/arm9/gnu/inc/gx_port.h index 6bf12553..b629c2e3 100644 --- a/ports/arm9/gnu/inc/gx_port.h +++ b/ports/arm9/gnu/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/arm9/iar/inc/gx_port.h b/ports/arm9/iar/inc/gx_port.h index 0b8d2d16..8901da22 100644 --- a/ports/arm9/iar/inc/gx_port.h +++ b/ports/arm9/iar/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/c667x/ccs/inc/gx_port.h b/ports/c667x/ccs/inc/gx_port.h index 1a1d8a9e..667c62a5 100644 --- a/ports/c667x/ccs/inc/gx_port.h +++ b/ports/c667x/ccs/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/ccrx/inc/gx_port.h b/ports/ccrx/inc/gx_port.h index 4f1c59eb..0df99a17 100644 --- a/ports/ccrx/inc/gx_port.h +++ b/ports/ccrx/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,12 +34,6 @@ /* This file contains data type definitions and constants that work */ /* with the Renesas CCRX compiler. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 10-15-2021 Kenneth Maxwell Initial Version 6.1.9 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_a15/gnu/inc/gx_port.h b/ports/cortex_a15/gnu/inc/gx_port.h index b2d89e58..99d01553 100644 --- a/ports/cortex_a15/gnu/inc/gx_port.h +++ b/ports/cortex_a15/gnu/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_a5/ac5/inc/gx_port.h b/ports/cortex_a5/ac5/inc/gx_port.h index 3ab2be5b..fb97572c 100644 --- a/ports/cortex_a5/ac5/inc/gx_port.h +++ b/ports/cortex_a5/ac5/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_a5/gnu/inc/gx_port.h b/ports/cortex_a5/gnu/inc/gx_port.h index eff97c0f..9df7c2de 100644 --- a/ports/cortex_a5/gnu/inc/gx_port.h +++ b/ports/cortex_a5/gnu/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_a5/iar/inc/gx_port.h b/ports/cortex_a5/iar/inc/gx_port.h index 33994b05..09402b16 100644 --- a/ports/cortex_a5/iar/inc/gx_port.h +++ b/ports/cortex_a5/iar/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_a5x/ac6/inc/gx_port.h b/ports/cortex_a5x/ac6/inc/gx_port.h index 3f9eaef7..a9575c0c 100644 --- a/ports/cortex_a5x/ac6/inc/gx_port.h +++ b/ports/cortex_a5x/ac6/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_a7/ac5/inc/gx_port.h b/ports/cortex_a7/ac5/inc/gx_port.h index d6562a33..3f66626c 100644 --- a/ports/cortex_a7/ac5/inc/gx_port.h +++ b/ports/cortex_a7/ac5/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_a7/gnu/inc/gx_port.h b/ports/cortex_a7/gnu/inc/gx_port.h index d0237aea..41cb5a52 100644 --- a/ports/cortex_a7/gnu/inc/gx_port.h +++ b/ports/cortex_a7/gnu/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_a7/iar/inc/gx_port.h b/ports/cortex_a7/iar/inc/gx_port.h index 0423b49a..467f28a3 100644 --- a/ports/cortex_a7/iar/inc/gx_port.h +++ b/ports/cortex_a7/iar/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_a8/ac5/inc/gx_port.h b/ports/cortex_a8/ac5/inc/gx_port.h index 53ab5b7d..9524c8c1 100644 --- a/ports/cortex_a8/ac5/inc/gx_port.h +++ b/ports/cortex_a8/ac5/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_a8/gnu/inc/gx_port.h b/ports/cortex_a8/gnu/inc/gx_port.h index 7e2f118f..60f4e9b5 100644 --- a/ports/cortex_a8/gnu/inc/gx_port.h +++ b/ports/cortex_a8/gnu/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,16 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_a8/iar/inc/gx_port.h b/ports/cortex_a8/iar/inc/gx_port.h index b91a9f7e..2475b28f 100644 --- a/ports/cortex_a8/iar/inc/gx_port.h +++ b/ports/cortex_a8/iar/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,16 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_a9/ac5/inc/gx_port.h b/ports/cortex_a9/ac5/inc/gx_port.h index 6064e573..02e0da3e 100644 --- a/ports/cortex_a9/ac5/inc/gx_port.h +++ b/ports/cortex_a9/ac5/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_a9/gnu/inc/gx_port.h b/ports/cortex_a9/gnu/inc/gx_port.h index 7dea2403..049a710e 100644 --- a/ports/cortex_a9/gnu/inc/gx_port.h +++ b/ports/cortex_a9/gnu/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_a9/iar/inc/gx_port.h b/ports/cortex_a9/iar/inc/gx_port.h index 40df899a..541ca90a 100644 --- a/ports/cortex_a9/iar/inc/gx_port.h +++ b/ports/cortex_a9/iar/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_m0/ac5/inc/gx_port.h b/ports/cortex_m0/ac5/inc/gx_port.h index 8e4bf4f3..5327926f 100644 --- a/ports/cortex_m0/ac5/inc/gx_port.h +++ b/ports/cortex_m0/ac5/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_m0/gnu/inc/gx_port.h b/ports/cortex_m0/gnu/inc/gx_port.h index ba974356..041b6d74 100644 --- a/ports/cortex_m0/gnu/inc/gx_port.h +++ b/ports/cortex_m0/gnu/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,22 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 06-02-2021 Ting Zhu Modified comment(s), */ -/* resulting in version 6.1.7 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_m0/iar/inc/gx_port.h b/ports/cortex_m0/iar/inc/gx_port.h index 95fc4dc8..b279011f 100644 --- a/ports/cortex_m0/iar/inc/gx_port.h +++ b/ports/cortex_m0/iar/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_m3/ac5/inc/gx_port.h b/ports/cortex_m3/ac5/inc/gx_port.h index fbb026ab..69783ef1 100644 --- a/ports/cortex_m3/ac5/inc/gx_port.h +++ b/ports/cortex_m3/ac5/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_m3/gnu/inc/gx_port.h b/ports/cortex_m3/gnu/inc/gx_port.h index e5d0659e..d72f6a51 100644 --- a/ports/cortex_m3/gnu/inc/gx_port.h +++ b/ports/cortex_m3/gnu/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,22 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 06-02-2021 Ting Zhu Modified comment(s), */ -/* resulting in version 6.1.7 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_m3/iar/inc/gx_port.h b/ports/cortex_m3/iar/inc/gx_port.h index 67d04b80..66de3767 100644 --- a/ports/cortex_m3/iar/inc/gx_port.h +++ b/ports/cortex_m3/iar/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_m3/keil/inc/gx_port.h b/ports/cortex_m3/keil/inc/gx_port.h index 989ee94e..1562105d 100644 --- a/ports/cortex_m3/keil/inc/gx_port.h +++ b/ports/cortex_m3/keil/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_m4/ac5/inc/gx_port.h b/ports/cortex_m4/ac5/inc/gx_port.h index 88346c0d..8f91e3f6 100644 --- a/ports/cortex_m4/ac5/inc/gx_port.h +++ b/ports/cortex_m4/ac5/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_m4/gnu/inc/gx_port.h b/ports/cortex_m4/gnu/inc/gx_port.h index 883bc878..13863100 100644 --- a/ports/cortex_m4/gnu/inc/gx_port.h +++ b/ports/cortex_m4/gnu/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,22 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 06-02-2021 Ting Zhu Modified comment(s), */ -/* resulting in version 6.1.7 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_m4/iar/inc/gx_port.h b/ports/cortex_m4/iar/inc/gx_port.h index 4790d2e2..0642e8cb 100644 --- a/ports/cortex_m4/iar/inc/gx_port.h +++ b/ports/cortex_m4/iar/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,16 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_m4/keil/inc/gx_port.h b/ports/cortex_m4/keil/inc/gx_port.h index 6aa4fbca..afa24b49 100644 --- a/ports/cortex_m4/keil/inc/gx_port.h +++ b/ports/cortex_m4/keil/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_m7/ac5/inc/gx_port.h b/ports/cortex_m7/ac5/inc/gx_port.h index 2a4188fe..e03f432a 100644 --- a/ports/cortex_m7/ac5/inc/gx_port.h +++ b/ports/cortex_m7/ac5/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,16 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_m7/gnu/inc/gx_port.h b/ports/cortex_m7/gnu/inc/gx_port.h index 026f70ae..3f400555 100644 --- a/ports/cortex_m7/gnu/inc/gx_port.h +++ b/ports/cortex_m7/gnu/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,22 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ -/* 09-30-2020 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 06-02-2021 Ting Zhu Modified comment(s), */ -/* resulting in version 6.1.7 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_m7/iar/inc/gx_port.h b/ports/cortex_m7/iar/inc/gx_port.h index 576ea44c..e0443cb2 100644 --- a/ports/cortex_m7/iar/inc/gx_port.h +++ b/ports/cortex_m7/iar/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_r4/ac5/inc/gx_port.h b/ports/cortex_r4/ac5/inc/gx_port.h index dae40d4e..b266b681 100644 --- a/ports/cortex_r4/ac5/inc/gx_port.h +++ b/ports/cortex_r4/ac5/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_r4/ac6/inc/gx_port.h b/ports/cortex_r4/ac6/inc/gx_port.h index beaab227..463941f3 100644 --- a/ports/cortex_r4/ac6/inc/gx_port.h +++ b/ports/cortex_r4/ac6/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_r4/gnu/inc/gx_port.h b/ports/cortex_r4/gnu/inc/gx_port.h index 1abebe4d..8f9d5cad 100644 --- a/ports/cortex_r4/gnu/inc/gx_port.h +++ b/ports/cortex_r4/gnu/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_r4/iar/inc/gx_port.h b/ports/cortex_r4/iar/inc/gx_port.h index c1416934..a427f933 100644 --- a/ports/cortex_r4/iar/inc/gx_port.h +++ b/ports/cortex_r4/iar/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,16 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_r5/ac5/inc/gx_port.h b/ports/cortex_r5/ac5/inc/gx_port.h index 64145da8..40f2b764 100644 --- a/ports/cortex_r5/ac5/inc/gx_port.h +++ b/ports/cortex_r5/ac5/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_r5/gnu/inc/gx_port.h b/ports/cortex_r5/gnu/inc/gx_port.h index 1448ab46..57f287aa 100644 --- a/ports/cortex_r5/gnu/inc/gx_port.h +++ b/ports/cortex_r5/gnu/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/cortex_r5/iar/inc/gx_port.h b/ports/cortex_r5/iar/inc/gx_port.h index 8fa71041..e6154b18 100644 --- a/ports/cortex_r5/iar/inc/gx_port.h +++ b/ports/cortex_r5/iar/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/generic/inc/gx_port.h b/ports/generic/inc/gx_port.h index 365d5ea1..1aa1674a 100644 --- a/ports/generic/inc/gx_port.h +++ b/ports/generic/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,18 +34,6 @@ /* This file contains data type definitions and constants that work */ /* generically on most compiler and processor architectures. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* resulting in version 6.1.6 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/linux/gnu/inc/gx_port.h b/ports/linux/gnu/inc/gx_port.h index a63fd7ee..c56aaa3a 100644 --- a/ports/linux/gnu/inc/gx_port.h +++ b/ports/linux/gnu/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,16 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/win32/inc/gx_port.h b/ports/win32/inc/gx_port.h index 23548741..7d58359b 100644 --- a/ports/win32/inc/gx_port.h +++ b/ports/win32/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,29 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 12-31-2020 Kenneth Maxwell Modified comment(s), */ -/* added new defines, */ -/* resulting in version 6.1.3 */ -/* 04-02-2021 Kenneth Maxwell Modified comment(s), */ -/* added new defines, */ -/* resulting in version 6.1.6 */ -/* 06-02-2021 Kenneth Maxwell Modified comment(s), */ -/* defined GX_DISABLE_THREADX_ */ -/* TIMER_SOURCE, */ -/* resulting in version 6.1.7 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* 01-31-2022 Ting Zhu Modified comment(s), modified */ -/* event thread create logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/ports/win32/inc/gx_win32_display_driver.h b/ports/win32/inc/gx_win32_display_driver.h index 8b2c0e27..29bb8d4d 100644 --- a/ports/win32/inc/gx_win32_display_driver.h +++ b/ports/win32/inc/gx_win32_display_driver.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -34,23 +35,6 @@ /* */ /* This file defines the GUIX Win32 display drivers. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 02-02-2021 Kenneth Maxwell Modified comment(s), */ -/* added 8bpp/24bpp rotated */ -/* display driver declarations,*/ -/* resulting in version 6.1.4 */ -/* 06-02-2021 Ting Zhu Modified comment(s), */ -/* declared gx_win32_driver_ */ -/* thread_initialize, */ -/* resulting in version 6.1.7 */ -/* 01-31-2022 Ting Zhu Modified comment(s), modified */ -/* driver data structure, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ #ifndef GX_WIN32_DRIVER_H diff --git a/ports/win32/lib/vs_2019/tx_api.h b/ports/win32/lib/vs_2019/tx_api.h index 770e3588..dcf09ff5 100644 --- a/ports/win32/lib/vs_2019/tx_api.h +++ b/ports/win32/lib/vs_2019/tx_api.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -38,19 +39,6 @@ /* Please note that basic data type definitions and other architecture-*/ /* specific information is contained in the file tx_port.h. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 05-19-2020 William E. Lamie Initial Version 6.0 */ -/* 09-30-2020 William E. Lamie Modified comment(s), and */ -/* updated product constants, */ -/* added new thread execution */ -/* state TX_PRIORITY_CHANGE, */ -/* added macros for casting */ -/* pointers to ALIGN_TYPE, */ -/* resulting in version 6.1 */ -/* */ /**************************************************************************/ #ifndef TX_API_H @@ -76,7 +64,7 @@ extern "C" { /* Define basic constants for the ThreadX kernel. */ -/* Define the major/minor version information that can be used by the application +/* Define the major/minor version information that can be used by the application and the ThreadX source as well. */ #define AZURE_RTOS_THREADX @@ -189,16 +177,16 @@ extern "C" { #endif -/* Event numbers 0 through 4095 are reserved by Azure RTOS. Specific event assignments are: - - ThreadX events: 1-199 +/* Event numbers 0 through 4095 are reserved by Azure RTOS. Specific event assignments are: + + ThreadX events: 1-199 FileX events: 200-299 NetX events: 300-599 USBX events: 600-999 GUIX events: 1000-1500 - - User-defined event numbers start at 4096 and continue through 65535, as defined by the constants - TX_TRACE_USER_EVENT_START and TX_TRACE_USER_EVENT_END, respectively. User events should be based + + User-defined event numbers start at 4096 and continue through 65535, as defined by the constants + TX_TRACE_USER_EVENT_START and TX_TRACE_USER_EVENT_END, respectively. User events should be based on these constants in case the user event number assignment is changed in future releases. */ #define TX_TRACE_USER_EVENT_START 4096 /* I1, I2, I3, I4 are user defined */ @@ -233,10 +221,10 @@ extern "C" { /* Define the control block definitions for all system objects. */ -/* Define the basic timer management structures. These are the structures +/* Define the basic timer management structures. These are the structures used to manage thread sleep, timeout, and user timer requests. */ -/* Determine if the internal timer control block has an extension defined. If not, +/* Determine if the internal timer control block has an extension defined. If not, define the extension to whitespace. */ #ifndef TX_TIMER_INTERNAL_EXTENSION @@ -274,7 +262,7 @@ typedef struct TX_TIMER_INTERNAL_STRUCT } TX_TIMER_INTERNAL; -/* Determine if the timer control block has an extension defined. If not, +/* Determine if the timer control block has an extension defined. If not, define the extension to whitespace. */ #ifndef TX_TIMER_EXTENSION @@ -333,7 +321,7 @@ typedef struct TX_TIMER_STRUCT typedef struct TX_THREAD_STRUCT { /* The first section of the control block contains critical - information that is referenced by the port-specific + information that is referenced by the port-specific assembly language code. Any changes in this section could necessitate changes in the assembly language. */ @@ -353,7 +341,7 @@ typedef struct TX_THREAD_STRUCT /***************************************************************/ - /* Define the first port extension in the thread control block. This + /* Define the first port extension in the thread control block. This is typically defined to whitespace or a pointer type in tx_port.h. */ TX_THREAD_EXTENSION_0 @@ -364,27 +352,27 @@ typedef struct TX_THREAD_STRUCT UINT tx_thread_suspending; /* Thread suspending flag */ UINT tx_thread_preempt_threshold; /* Preemption threshold */ - /* Define the thread schedule hook. The usage of this is port/application specific, + /* Define the thread schedule hook. The usage of this is port/application specific, but when used, the function pointer designated is called whenever the thread is scheduled and unscheduled. */ VOID (*tx_thread_schedule_hook)(struct TX_THREAD_STRUCT *thread_ptr, ULONG id); /* Nothing after this point is referenced by the target-specific - assembly language. Hence, information after this point can - be added to the control block providing the complete system + assembly language. Hence, information after this point can + be added to the control block providing the complete system is recompiled. */ /* Define the thread's entry point and input parameter. */ VOID (*tx_thread_entry)(ULONG id); ULONG tx_thread_entry_parameter; - /* Define the thread's timer block. This is used for thread + /* Define the thread's timer block. This is used for thread sleep and timeout requests. */ TX_TIMER_INTERNAL tx_thread_timer; /* Define the thread's cleanup function and associated data. This - is used to cleanup various data structures when a thread - suspension is lifted or terminated either by the user or + is used to cleanup various data structures when a thread + suspension is lifted or terminated either by the user or a timeout. */ VOID (*tx_thread_suspend_cleanup)(struct TX_THREAD_STRUCT *thread_ptr, ULONG suspension_sequence); VOID *tx_thread_suspend_control_block; @@ -396,17 +384,17 @@ typedef struct TX_THREAD_STRUCT UINT tx_thread_suspend_option; UINT tx_thread_suspend_status; - /* Define the second port extension in the thread control block. This + /* Define the second port extension in the thread control block. This is typically defined to whitespace or a pointer type in tx_port.h. */ TX_THREAD_EXTENSION_1 - /* Define pointers to the next and previous threads in the + /* Define pointers to the next and previous threads in the created list. */ struct TX_THREAD_STRUCT *tx_thread_created_next, *tx_thread_created_previous; - /* Define the third port extension in the thread control block. This + /* Define the third port extension in the thread control block. This is typically defined to whitespace in tx_port.h. */ TX_THREAD_EXTENSION_2 @@ -414,7 +402,7 @@ typedef struct TX_THREAD_STRUCT VOID *tx_thread_filex_ptr; /* Define the priority inheritance variables. These will be used - to manage priority inheritance changes applied to this thread + to manage priority inheritance changes applied to this thread as a result of mutex get operations. */ UINT tx_thread_user_priority; UINT tx_thread_user_preempt_threshold; @@ -433,7 +421,7 @@ typedef struct TX_THREAD_STRUCT /* Define the number of times this thread suspends. */ ULONG tx_thread_performance_suspend_count; - /* Define the number of times this thread is preempted by calling + /* Define the number of times this thread is preempted by calling a ThreadX API service. */ ULONG tx_thread_performance_solicited_preemption_count; @@ -468,22 +456,22 @@ typedef struct TX_THREAD_STRUCT #ifndef TX_DISABLE_NOTIFY_CALLBACKS - /* Define the application callback routine used to notify the application when + /* Define the application callback routine used to notify the application when the thread is entered or exits. */ VOID (*tx_thread_entry_exit_notify)(struct TX_THREAD_STRUCT *thread_ptr, UINT type); #endif - /* Define the fourth port extension in the thread control block. This + /* Define the fourth port extension in the thread control block. This is typically defined to whitespace in tx_port.h. */ TX_THREAD_EXTENSION_3 - /* Define suspension sequence number. This is used to ensure suspension is still valid when + /* Define suspension sequence number. This is used to ensure suspension is still valid when cleanup routine executes. */ ULONG tx_thread_suspension_sequence; - /* Define the user extension field. This typically is defined - to white space, but some ports of ThreadX may need to have - additional fields in the thread control block. This is + /* Define the user extension field. This typically is defined + to white space, but some ports of ThreadX may need to have + additional fields in the thread control block. This is defined in the file tx_port.h. */ TX_THREAD_USER_EXTENSION @@ -545,14 +533,14 @@ typedef struct TX_BLOCK_POOL_STRUCT ULONG tx_block_pool_performance_timeout_count; #endif - /* Define the port extension in the block pool control block. This + /* Define the port extension in the block pool control block. This is typically defined to whitespace in tx_port.h. */ TX_BLOCK_POOL_EXTENSION } TX_BLOCK_POOL; -/* Determine if the byte allocate extension is defined. If not, define the +/* Determine if the byte allocate extension is defined. If not, define the extension to whitespace. */ #ifndef TX_BYTE_ALLOCATE_EXTENSION @@ -560,7 +548,7 @@ typedef struct TX_BLOCK_POOL_STRUCT #endif -/* Determine if the byte release extension is defined. If not, define the +/* Determine if the byte release extension is defined. If not, define the extension to whitespace. */ #ifndef TX_BYTE_RELEASE_EXTENSION @@ -640,7 +628,7 @@ typedef struct TX_BYTE_POOL_STRUCT ULONG tx_byte_pool_performance_timeout_count; #endif - /* Define the port extension in the byte pool control block. This + /* Define the port extension in the byte pool control block. This is typically defined to whitespace in tx_port.h. */ TX_BYTE_POOL_EXTENSION @@ -658,7 +646,7 @@ typedef struct TX_EVENT_FLAGS_GROUP_STRUCT /* Define the event flags group's name. */ CHAR *tx_event_flags_group_name; - /* Define the actual current event flags in this group. A zero in a + /* Define the actual current event flags in this group. A zero in a particular bit indicates the event flag is not set. */ ULONG tx_event_flags_group_current; @@ -697,19 +685,19 @@ typedef struct TX_EVENT_FLAGS_GROUP_STRUCT #ifndef TX_DISABLE_NOTIFY_CALLBACKS - /* Define the application callback routine used to notify the application when + /* Define the application callback routine used to notify the application when an event flag is set. */ VOID (*tx_event_flags_group_set_notify)(struct TX_EVENT_FLAGS_GROUP_STRUCT *group_ptr); #endif - /* Define the port extension in the event flags group control block. This + /* Define the port extension in the event flags group control block. This is typically defined to whitespace in tx_port.h. */ TX_EVENT_FLAGS_GROUP_EXTENSION } TX_EVENT_FLAGS_GROUP; -/* Determine if the mutex put extension 1 is defined. If not, define the +/* Determine if the mutex put extension 1 is defined. If not, define the extension to whitespace. */ #ifndef TX_MUTEX_PUT_EXTENSION_1 @@ -717,7 +705,7 @@ typedef struct TX_EVENT_FLAGS_GROUP_STRUCT #endif -/* Determine if the mutex put extension 2 is defined. If not, define the +/* Determine if the mutex put extension 2 is defined. If not, define the extension to whitespace. */ #ifndef TX_MUTEX_PUT_EXTENSION_2 @@ -725,7 +713,7 @@ typedef struct TX_EVENT_FLAGS_GROUP_STRUCT #endif -/* Determine if the mutex priority change extension is defined. If not, define the +/* Determine if the mutex priority change extension is defined. If not, define the extension to whitespace. */ #ifndef TX_MUTEX_PRIORITY_CHANGE_EXTENSION @@ -799,7 +787,7 @@ typedef struct TX_MUTEX_STRUCT ULONG tx_mutex_performance__priority_inheritance_count; #endif - /* Define the port extension in the mutex control block. This + /* Define the port extension in the mutex control block. This is typically defined to whitespace in tx_port.h. */ TX_MUTEX_EXTENSION @@ -828,7 +816,7 @@ typedef struct TX_QUEUE_STRUCT UINT tx_queue_enqueued; UINT tx_queue_available_storage; - /* Define pointers that represent the start and end for the queue's + /* Define pointers that represent the start and end for the queue's message area. */ ULONG *tx_queue_start; ULONG *tx_queue_end; @@ -873,12 +861,12 @@ typedef struct TX_QUEUE_STRUCT #ifndef TX_DISABLE_NOTIFY_CALLBACKS - /* Define the application callback routine used to notify the application when + /* Define the application callback routine used to notify the application when the a message is sent to the queue. */ VOID (*tx_queue_send_notify)(struct TX_QUEUE_STRUCT *queue_ptr); #endif - /* Define the port extension in the queue control block. This + /* Define the port extension in the queue control block. This is typically defined to whitespace in tx_port.h. */ TX_QUEUE_EXTENSION @@ -928,29 +916,29 @@ typedef struct TX_SEMAPHORE_STRUCT #ifndef TX_DISABLE_NOTIFY_CALLBACKS - /* Define the application callback routine used to notify the application when + /* Define the application callback routine used to notify the application when the a semaphore is put. */ VOID (*tx_semaphore_put_notify)(struct TX_SEMAPHORE_STRUCT *semaphore_ptr); #endif - /* Define the port extension in the semaphore control block. This + /* Define the port extension in the semaphore control block. This is typically defined to whitespace in tx_port.h. */ TX_SEMAPHORE_EXTENSION } TX_SEMAPHORE; -/* Define the system API mappings based on the error checking - selected by the user. Note: this section is only applicable to +/* Define the system API mappings based on the error checking + selected by the user. Note: this section is only applicable to application source code, hence the conditional that turns off this stuff when the include file is processed by the ThreadX source. */ #ifndef TX_SOURCE_CODE -/* Determine if error checking is desired. If so, map API functions +/* Determine if error checking is desired. If so, map API functions to the appropriate error checking front-ends. Otherwise, map API - functions to the core functions that actually perform the work. + functions to the core functions that actually perform the work. Note: error checking is enabled by default. */ #ifdef TX_DISABLE_ERROR_CHECKING @@ -1336,7 +1324,7 @@ UINT _tx_block_pool_prioritize(TX_BLOCK_POOL *pool_ptr); UINT _tx_block_release(VOID *block_ptr); -/* Define error checking shells for API services. These are only referenced by the +/* Define error checking shells for API services. These are only referenced by the application. */ UINT _txe_block_allocate(TX_BLOCK_POOL *pool_ptr, VOID **block_ptr, ULONG wait_option); @@ -1379,7 +1367,7 @@ UINT _tx_byte_pool_prioritize(TX_BYTE_POOL *pool_ptr); UINT _tx_byte_release(VOID *memory_ptr); -/* Define error checking shells for API services. These are only referenced by the +/* Define error checking shells for API services. These are only referenced by the application. */ UINT _txe_byte_allocate(TX_BYTE_POOL *pool_ptr, VOID **memory_ptr, ULONG memory_size, @@ -1424,7 +1412,7 @@ UINT _tx_event_flags_set(TX_EVENT_FLAGS_GROUP *group_ptr, ULONG flags_to_ UINT _tx_event_flags_set_notify(TX_EVENT_FLAGS_GROUP *group_ptr, VOID (*events_set_notify)(TX_EVENT_FLAGS_GROUP *notify_group_ptr)); -/* Define error checking shells for API services. These are only referenced by the +/* Define error checking shells for API services. These are only referenced by the application. */ UINT _txe_event_flags_create(TX_EVENT_FLAGS_GROUP *group_ptr, CHAR *name_ptr, UINT event_control_block_size); @@ -1472,7 +1460,7 @@ UINT _tx_mutex_prioritize(TX_MUTEX *mutex_ptr); UINT _tx_mutex_put(TX_MUTEX *mutex_ptr); -/* Define error checking shells for API services. These are only referenced by the +/* Define error checking shells for API services. These are only referenced by the application. */ UINT _txe_mutex_create(TX_MUTEX *mutex_ptr, CHAR *name_ptr, UINT inherit, UINT mutex_control_block_size); @@ -1514,7 +1502,7 @@ UINT _tx_queue_send_notify(TX_QUEUE *queue_ptr, VOID (*queue_send_notify) UINT _tx_queue_front_send(TX_QUEUE *queue_ptr, VOID *source_ptr, ULONG wait_option); -/* Define error checking shells for API services. These are only referenced by the +/* Define error checking shells for API services. These are only referenced by the application. */ UINT _txe_queue_create(TX_QUEUE *queue_ptr, CHAR *name_ptr, UINT message_size, @@ -1560,7 +1548,7 @@ UINT _tx_semaphore_put(TX_SEMAPHORE *semaphore_ptr); UINT _tx_semaphore_put_notify(TX_SEMAPHORE *semaphore_ptr, VOID (*semaphore_put_notify)(TX_SEMAPHORE *notify_semaphore_ptr)); -/* Define error checking shells for API services. These are only referenced by the +/* Define error checking shells for API services. These are only referenced by the application. */ UINT _txe_semaphore_ceiling_put(TX_SEMAPHORE *semaphore_ptr, ULONG ceiling); @@ -1625,7 +1613,7 @@ UINT _tx_thread_time_slice_change(TX_THREAD *thread_ptr, ULONG new_time_s UINT _tx_thread_wait_abort(TX_THREAD *thread_ptr); -/* Define error checking shells for API services. These are only referenced by the +/* Define error checking shells for API services. These are only referenced by the application. */ UINT _txe_thread_create(TX_THREAD *thread_ptr, CHAR *name_ptr, @@ -1693,7 +1681,7 @@ ULONG _tx_time_get(VOID); VOID _tx_time_set(ULONG new_time); -/* Define error checking shells for API services. These are only referenced by the +/* Define error checking shells for API services. These are only referenced by the application. */ UINT _txe_timer_activate(TX_TIMER *timer_ptr); @@ -1740,7 +1728,7 @@ UINT _tx_trace_interrupt_control(UINT new_posture); #endif -/* Add a default macro that can be re-defined in tx_port.h to add processing to the thread stack analyze function. +/* Add a default macro that can be re-defined in tx_port.h to add processing to the thread stack analyze function. By default, this is simply defined as whitespace. */ #ifndef TX_THREAD_STACK_ANALYZE_EXTENSION @@ -1748,7 +1736,7 @@ UINT _tx_trace_interrupt_control(UINT new_posture); #endif -/* Add a default macro that can be re-defined in tx_port.h to add processing to the initialize kernel enter function. +/* Add a default macro that can be re-defined in tx_port.h to add processing to the initialize kernel enter function. By default, this is simply defined as whitespace. */ #ifndef TX_INITIALIZE_KERNEL_ENTER_EXTENSION diff --git a/ports/win32/lib/vs_2019/tx_port.h b/ports/win32/lib/vs_2019/tx_port.h index 9c9e6fb4..60632996 100644 --- a/ports/win32/lib/vs_2019/tx_port.h +++ b/ports/win32/lib/vs_2019/tx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -42,12 +43,6 @@ /* own special types that can be mapped to actual data types by this */ /* file to guarantee consistency in the interface and functionality. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 William E. Lamie Initial Version 6.1 */ -/* */ /**************************************************************************/ #ifndef TX_PORT_H @@ -59,7 +54,7 @@ #ifdef TX_INCLUDE_USER_DEFINE_FILE -/* Yes, include the user defines in tx_user.h. The defines in this file may +/* Yes, include the user defines in tx_user.h. The defines in this file may alternately be defined on the command line. */ #include "tx_user.h" @@ -196,8 +191,8 @@ void _tx_win32_debug_entry_insert(char *action, char *file, unsigned long lin #define TX_INT_ENABLE 0 /* Enable interrupts */ -/* Define the clock source for trace event entry time stamp. The following two item are port specific. - For example, if the time source is at the address 0x0a800024 and is 16-bits in size, the clock +/* Define the clock source for trace event entry time stamp. The following two item are port specific. + For example, if the time source is at the address 0x0a800024 and is 16-bits in size, the clock source constants would be: #define TX_TRACE_TIME_SOURCE *((ULONG *) 0x0a800024) @@ -238,7 +233,7 @@ void _tx_initialize_start_interrupts(void); #define TX_PORT_SPECIFIC_PRE_SCHEDULER_INITIALIZATION _tx_initialize_start_interrupts(); -/* Determine whether or not stack checking is enabled. By default, ThreadX stack checking is +/* Determine whether or not stack checking is enabled. By default, ThreadX stack checking is disabled. When the following is defined, ThreadX thread stack checking is enabled. If stack checking is enabled (TX_ENABLE_STACK_CHECKING is defined), the TX_DISABLE_STACK_FILLING define is negated, thereby forcing the stack fill which is necessary for the stack checking @@ -250,7 +245,7 @@ void _tx_initialize_start_interrupts(void); /* Define the TX_THREAD control block extensions for this port. The main reason - for the multiple macros is so that backward compatibility can be maintained with + for the multiple macros is so that backward compatibility can be maintained with existing ThreadX kernel awareness modules. */ #define TX_THREAD_EXTENSION_0 HANDLE tx_thread_win32_thread_handle; \ @@ -274,7 +269,7 @@ void _tx_initialize_start_interrupts(void); #define TX_TIMER_EXTENSION -/* Define the user extension field of the thread control block. Nothing +/* Define the user extension field of the thread control block. Nothing additional is needed for this port so it is defined as white space. */ #ifndef TX_THREAD_USER_EXTENSION @@ -387,9 +382,9 @@ HANDLE threadhandle; } -/* Define ThreadX interrupt lockout and restore macros for protection on - access of critical kernel information. The restore interrupt macro must - restore the interrupt posture of the running thread prior to the value +/* Define ThreadX interrupt lockout and restore macros for protection on + access of critical kernel information. The restore interrupt macro must + restore the interrupt posture of the running thread prior to the value present prior to the disable macro. In most cases, the save area macro is used to define a local function save area for the disable and restore macros. */ diff --git a/ports/win32/src/gx_win32_display_driver.c b/ports/win32/src/gx_win32_display_driver.c index a65fe4de..6cedb0bd 100644 --- a/ports/win32/src/gx_win32_display_driver.c +++ b/ports/win32/src/gx_win32_display_driver.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -277,12 +278,6 @@ extern ULONG _tx_thread_system_state; /* */ /* None */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 01-31-2022 Ting Zhu Initial Version 6.1.10 */ -/* */ /**************************************************************************/ static void CALLBACK gx_win32_timer_expiration(UINT wTimerID, UINT msg, DWORD dwUser, DWORD dw1, DWORD dw2) { @@ -324,12 +319,6 @@ static void CALLBACK gx_win32_timer_expiration(UINT wTimerID, UINT msg, DWORD dw /* */ /* gx_win32_driver_thread_initialize */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 01-31-2022 Ting Zhu Initial Version 6.1.10 */ -/* */ /**************************************************************************/ static void gx_win32_start_multimedia_timer(GX_WIN32_DISPLAY_DRIVER_DATA *instance) { @@ -379,12 +368,6 @@ static void gx_win32_start_multimedia_timer(GX_WIN32_DISPLAY_DRIVER_DATA *instan /* */ /* gx_win32_input_driver */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 01-31-2022 Ting Zhu Initial Version 6.1.10 */ -/* */ /**************************************************************************/ static void gx_win32_stop_multimedia_timer() { @@ -430,12 +413,6 @@ static void gx_win32_stop_multimedia_timer() /* */ /* gx_win32_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static ULONG gx_win32_map_key_to_guix_event(USHORT wParam, int shift, int ctrl) { @@ -496,12 +473,6 @@ KEY_EVENT_ENTRY *pEntry; /* */ /* gx_win32_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static USHORT gx_win32_map_key_to_guix_key(USHORT wParam) { @@ -569,12 +540,6 @@ KEY_MAP_ENTRY *pEntry = win32_key_table; /* */ /* gx_win32_window_create */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static void gx_win32_get_icon_path() { @@ -633,12 +598,6 @@ LONG status; /* gx_win32_message_to_guix */ /* gx_win32_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 01-31-2022 Ting Zhu Initial Version 6.1.10 */ -/* */ /**************************************************************************/ void gx_win32_event_to_guix(GX_EVENT *event_ptr) { @@ -685,15 +644,6 @@ void gx_win32_event_to_guix(GX_EVENT *event_ptr) /* gx_win32_input_driver */ /* gx_win32_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 01-31-2022 Ting Zhu Modified comment(s), modified */ -/* GUIX event send logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ void gx_win32_message_to_guix(USHORT event_type) { @@ -738,12 +688,6 @@ GX_EVENT myevent; /* */ /* Win32 display driver set up functions. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ GX_WIN32_DISPLAY_DRIVER_DATA *gx_win32_get_free_data_instance(void) { @@ -800,12 +744,6 @@ GX_WIN32_DISPLAY_DRIVER_DATA *data = win32_instance_data; /* */ /* gx_win32_event_process */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ GX_WIN32_DISPLAY_DRIVER_DATA *gx_win32_get_data_instance_by_win_handle(HWND winHandle) { @@ -862,12 +800,6 @@ int index; /* */ /* win32_canvas_memory_prepare */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static void gx_win32_rotate_canvas_to_bmp_32bpp(GX_CANVAS *canvas) { @@ -951,12 +883,6 @@ INT write_sign; /* */ /* win32_canvas_memory_prepare */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial version 6.1.3 */ -/* */ /**************************************************************************/ static void gx_win32_rotate_canvas_to_bmp_16bpp(GX_CANVAS *canvas) { @@ -1046,12 +972,6 @@ INT write_stride; /* */ /* win32_canvas_memory_prepare */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* */ /**************************************************************************/ static void gx_win32_rotate_canvas_to_bmp_8bpp(GX_CANVAS *canvas) { @@ -1140,19 +1060,6 @@ INT write_stride; /* */ /* gx_win32_display_buffer_toggle */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 02-02-2021 Kenneth Maxwell Modified comment(s), */ -/* added 8bpp and 32bpp canvas */ -/* rotate logic, */ -/* resulting in version 6.1.4 */ -/* 03-02-2021 Ting Zhu Modified comment(s), added */ -/* flip rotation support, */ -/* resulting in version 6.1.5 */ -/* */ /**************************************************************************/ VOID *_win32_canvas_memory_prepare(GX_CANVAS *canvas, GX_RECTANGLE *dirty) { @@ -1267,15 +1174,6 @@ INT row; /* */ /* None */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 02-02-2021 Kenneth Maxwell Modified comment(s), */ -/* fixed logic, */ -/* resulting in version 6.1.4 */ -/* */ /**************************************************************************/ VOID gx_win32_display_buffer_toggle(GX_CANVAS *canvas, GX_RECTANGLE *dirty) { @@ -1382,15 +1280,6 @@ VOID *memptr; /* */ /* gx_win32_driver_thread_entry */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* corrected window size, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ HWND gx_win32_window_create(GX_WIN32_DISPLAY_DRIVER_DATA *gx_driver_ptr, WNDPROC event_process, INT xpos, INT ypos) { @@ -1475,18 +1364,6 @@ WNDCLASS wndclass; /* */ /* gx_win32_window_create */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 01-31-2022 Ting Zhu Modified comment(s), modified */ -/* GUIX event send logic, */ -/* resulting in version 6.1.10 */ -/* 04-25-2022 Ting Zhu Modified comment(s), improved */ -/* timer event send logic, */ -/* resulting in version 6.1.11 */ -/* */ /**************************************************************************/ LRESULT CALLBACK gx_win32_event_process(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) { @@ -1687,16 +1564,6 @@ GX_BOOL check_key_event; /* */ /* gx_win32_driver_thread_entry */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 01-31-2022 Ting Zhu Modified comment(s), added */ -/* timer stop and thread */ -/* handle close logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ void gx_win32_input_driver(GX_WIN32_DISPLAY_DRIVER_DATA *instance) { @@ -1766,15 +1633,6 @@ int exit_code = 0; /* */ /* win32 guix setup functions */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 06-02-2021 Ting Zhu Modified comment(s), */ -/* reorganized code, */ -/* resulting in version 6.1.7 */ -/* */ /**************************************************************************/ void gx_win32_driver_thread_entry(ULONG thread_input) { @@ -1828,18 +1686,6 @@ GX_WIN32_DISPLAY_DRIVER_DATA *instance = (GX_WIN32_DISPLAY_DRIVER_DATA *)thread_ /* */ /* win32 thread entry */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 06-02-2021 Ting Zhu Initial Version 6.1.7 */ -/* 01-31-2022 Ting Zhu Modified comment(s), modified */ -/* to use multi-media timer, */ -/* resulting in version 6.1.10 */ -/* 10-31-2022 Ting Zhu Modified comment(s), added */ -/* ThreadX system state check, */ -/* resulting in version 6.2.0 */ -/* */ /**************************************************************************/ void gx_win32_driver_thread_initialize(GX_WIN32_DISPLAY_DRIVER_DATA *instance) { @@ -1898,12 +1744,6 @@ void gx_win32_driver_thread_initialize(GX_WIN32_DISPLAY_DRIVER_DATA *instance) /* */ /* None */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ int WINAPI WinMain(HINSTANCE Instance, HINSTANCE PrevInstance, LPSTR pCmd, int CmdShow) diff --git a/ports/win32/src/gx_win32_display_driver_1555xrgb.c b/ports/win32/src/gx_win32_display_driver_1555xrgb.c index ed2f5a21..d8c16130 100644 --- a/ports/win32/src/gx_win32_display_driver_1555xrgb.c +++ b/ports/win32/src/gx_win32_display_driver_1555xrgb.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -56,12 +57,6 @@ /* */ /* win32_graphics_driver_setup_1555xrgb */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static void win32_1555xrgb_bitmap_header_create(GX_DISPLAY *display) { @@ -120,15 +115,6 @@ GX_WIN32_DISPLAY_DRIVER_DATA *instance = (GX_WIN32_DISPLAY_DRIVER_DATA *)display /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT win32_graphics_driver_setup_1555xrgb(GX_DISPLAY *display) { diff --git a/ports/win32/src/gx_win32_display_driver_24xrgb.c b/ports/win32/src/gx_win32_display_driver_24xrgb.c index 91c7f2e5..89c509e5 100644 --- a/ports/win32/src/gx_win32_display_driver_24xrgb.c +++ b/ports/win32/src/gx_win32_display_driver_24xrgb.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -55,15 +56,6 @@ /* */ /* win32_graphics_driver_setup_24xrgb */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 02-02-2021 Kenneth Maxwell Modified comment(s), */ -/* Renamed function, */ -/* resulting in version 6.1.4 */ -/* */ /**************************************************************************/ VOID win32_32bpp_bitmap_header_create(GX_DISPLAY *display) { @@ -123,18 +115,6 @@ DWORD *putmask; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 02-02-2021 Kenneth Maxwell Modified comment(s), */ -/* Updated function name, */ -/* resulting in version 6.1.4 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT win32_graphics_driver_setup_24xrgb(GX_DISPLAY *display) { diff --git a/ports/win32/src/gx_win32_display_driver_24xrgb_rotated.c b/ports/win32/src/gx_win32_display_driver_24xrgb_rotated.c index 3fdc4cbc..cd883c13 100644 --- a/ports/win32/src/gx_win32_display_driver_24xrgb_rotated.c +++ b/ports/win32/src/gx_win32_display_driver_24xrgb_rotated.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,15 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT win32_graphics_driver_setup_24xrgb_rotated(GX_DISPLAY* display) { diff --git a/ports/win32/src/gx_win32_display_driver_32argb.c b/ports/win32/src/gx_win32_display_driver_32argb.c index 7925069b..d65a86fd 100644 --- a/ports/win32/src/gx_win32_display_driver_32argb.c +++ b/ports/win32/src/gx_win32_display_driver_32argb.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,19 +59,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 02-02-2021 Kenneth Maxwell Modified comment(s), */ -/* Updated bitmap header */ -/* create function call, */ -/* resulting in version 6.1.4 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT win32_graphics_driver_setup_32argb(GX_DISPLAY *display) { diff --git a/ports/win32/src/gx_win32_display_driver_32argb_rotated.c b/ports/win32/src/gx_win32_display_driver_32argb_rotated.c index 0bfaeab1..b613026a 100644 --- a/ports/win32/src/gx_win32_display_driver_32argb_rotated.c +++ b/ports/win32/src/gx_win32_display_driver_32argb_rotated.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -59,15 +60,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT win32_graphics_driver_setup_32argb_rotated(GX_DISPLAY *display) { diff --git a/ports/win32/src/gx_win32_display_driver_332rgb.c b/ports/win32/src/gx_win32_display_driver_332rgb.c index 833a87d5..0a8042ab 100644 --- a/ports/win32/src/gx_win32_display_driver_332rgb.c +++ b/ports/win32/src/gx_win32_display_driver_332rgb.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -55,12 +56,6 @@ /* */ /* win32_graphics_driver_setup_332rgb */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static void win32_332rgb_bitmap_header_create(GX_DISPLAY *display) { @@ -148,15 +143,6 @@ GX_WIN32_DISPLAY_DRIVER_DATA *instance = (GX_WIN32_DISPLAY_DRIVER_DATA *)display /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT win32_graphics_driver_setup_332rgb(GX_DISPLAY *display) { diff --git a/ports/win32/src/gx_win32_display_driver_4444argb.c b/ports/win32/src/gx_win32_display_driver_4444argb.c index 355d6764..1ca63d92 100644 --- a/ports/win32/src/gx_win32_display_driver_4444argb.c +++ b/ports/win32/src/gx_win32_display_driver_4444argb.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -55,12 +56,6 @@ /* */ /* win32_graphics_driver_setup_4444argb */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static void win32_4444argb_bitmap_header_create(GX_DISPLAY *display) { @@ -118,15 +113,6 @@ GX_WIN32_DISPLAY_DRIVER_DATA *instance = (GX_WIN32_DISPLAY_DRIVER_DATA *)display /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT win32_graphics_driver_setup_4444argb(GX_DISPLAY* display) { diff --git a/ports/win32/src/gx_win32_display_driver_4bpp_grayscale.c b/ports/win32/src/gx_win32_display_driver_4bpp_grayscale.c index a9461b6c..a2707b8e 100644 --- a/ports/win32/src/gx_win32_display_driver_4bpp_grayscale.c +++ b/ports/win32/src/gx_win32_display_driver_4bpp_grayscale.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -55,12 +56,6 @@ /* */ /* win32_graphics_driver_setup_4bpp_grayscale */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID win32_4bpp_grayscale_bitmap_header_create(GX_DISPLAY *display) { @@ -121,15 +116,6 @@ GX_WIN32_DISPLAY_DRIVER_DATA *instance = (GX_WIN32_DISPLAY_DRIVER_DATA *)display /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT win32_graphics_driver_setup_4bpp_grayscale(GX_DISPLAY *display) { diff --git a/ports/win32/src/gx_win32_display_driver_565bgr.c b/ports/win32/src/gx_win32_display_driver_565bgr.c index a4150986..37fe4ecf 100644 --- a/ports/win32/src/gx_win32_display_driver_565bgr.c +++ b/ports/win32/src/gx_win32_display_driver_565bgr.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -55,12 +56,6 @@ /* */ /* win32_graphics_driver_setup_565bgr */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static void win32_565bgr_bitmap_header_create(GX_DISPLAY *display) { @@ -119,15 +114,6 @@ GX_WIN32_DISPLAY_DRIVER_DATA *instance = (GX_WIN32_DISPLAY_DRIVER_DATA *)display /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT win32_graphics_driver_setup_565bgr(GX_DISPLAY *display) { diff --git a/ports/win32/src/gx_win32_display_driver_565rgb.c b/ports/win32/src/gx_win32_display_driver_565rgb.c index 7f61da45..2147dfc6 100644 --- a/ports/win32/src/gx_win32_display_driver_565rgb.c +++ b/ports/win32/src/gx_win32_display_driver_565rgb.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -55,12 +56,6 @@ /* */ /* win32_graphics_driver_setup_565rgb */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static void win32_565rgb_bitmap_header_create(GX_DISPLAY *display) { @@ -119,15 +114,6 @@ GX_WIN32_DISPLAY_DRIVER_DATA *instance = (GX_WIN32_DISPLAY_DRIVER_DATA *)display /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT win32_graphics_driver_setup_565rgb(GX_DISPLAY *display) { diff --git a/ports/win32/src/gx_win32_display_driver_565rgb_rotated.c b/ports/win32/src/gx_win32_display_driver_565rgb_rotated.c index 60f29351..9e6205b4 100644 --- a/ports/win32/src/gx_win32_display_driver_565rgb_rotated.c +++ b/ports/win32/src/gx_win32_display_driver_565rgb_rotated.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -55,12 +56,6 @@ /* */ /* win32_graphics_driver_setup_565rgb */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static void win32_565rgb_rotated_bitmap_header_create(GX_DISPLAY *display) { @@ -121,15 +116,6 @@ GX_WIN32_DISPLAY_DRIVER_DATA *instance = (GX_WIN32_DISPLAY_DRIVER_DATA *)display /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT win32_graphics_driver_setup_565rgb_rotated(GX_DISPLAY *display) { diff --git a/ports/win32/src/gx_win32_display_driver_8bit_palette.c b/ports/win32/src/gx_win32_display_driver_8bit_palette.c index 597b951a..f7b80447 100644 --- a/ports/win32/src/gx_win32_display_driver_8bit_palette.c +++ b/ports/win32/src/gx_win32_display_driver_8bit_palette.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,15 +58,6 @@ /* */ /* win32_graphics_driver_setup_8bit_palette */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 02-02-2021 Kenneth Maxwell Modified comment(s), */ -/* made the function public, */ -/* resulting in version 6.1.4 */ -/* */ /**************************************************************************/ VOID win32_display_driver_8bit_palette_set(GX_DISPLAY *display, GX_COLOR *palette, INT count) { @@ -117,12 +109,6 @@ GX_WIN32_DISPLAY_DRIVER_DATA *instance; /* */ /* win32_graphics_driver_setup_8bit_palette */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID win32_8bit_palette_bitmap_header_create(GX_DISPLAY *display) { @@ -176,15 +162,6 @@ GX_WIN32_DISPLAY_DRIVER_DATA *instance = (GX_WIN32_DISPLAY_DRIVER_DATA *)display /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT win32_graphics_driver_setup_8bit_palette(GX_DISPLAY *display) { diff --git a/ports/win32/src/gx_win32_display_driver_8bit_palette_rotated.c b/ports/win32/src/gx_win32_display_driver_8bit_palette_rotated.c index 9caa8904..22dba375 100644 --- a/ports/win32/src/gx_win32_display_driver_8bit_palette_rotated.c +++ b/ports/win32/src/gx_win32_display_driver_8bit_palette_rotated.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,15 +61,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 02-02-2021 Kenneth Maxwell Initial Version 6.1.4 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT win32_graphics_driver_setup_8bit_palette_rotated(GX_DISPLAY* display) { diff --git a/ports/win32/src/gx_win32_display_driver_monochrome.c b/ports/win32/src/gx_win32_display_driver_monochrome.c index 6c81e02a..ed172428 100644 --- a/ports/win32/src/gx_win32_display_driver_monochrome.c +++ b/ports/win32/src/gx_win32_display_driver_monochrome.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -56,12 +57,6 @@ /* */ /* win32_graphics_driver_setup_monochrome */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static void win32_monochrome_bitmap_header_create(GX_DISPLAY *display) { @@ -115,15 +110,6 @@ GX_WIN32_DISPLAY_DRIVER_DATA *instance = (GX_WIN32_DISPLAY_DRIVER_DATA *)display /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT win32_graphics_driver_setup_monochrome(GX_DISPLAY *display) { diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver.h b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver.h index 8f39813d..3b744d73 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver.h +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -35,12 +36,6 @@ /* Define drivers for Synergy Win32 simulation. */ /* */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ #ifndef GX_DAVE2D_SIMULATION_DISPLAY_H diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_compressed_glyph_1bit_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_compressed_glyph_1bit_draw.c index 98ff8305..d854b192 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_compressed_glyph_1bit_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_compressed_glyph_1bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -74,12 +75,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_16bpp_compressed_glyph_1bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_glyph_1bit_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_glyph_1bit_draw.c index d5a9471d..76c1aece 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_glyph_1bit_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_glyph_1bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -82,12 +83,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_16bpp_glyph_1bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_pixelmap_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_pixelmap_draw.c index 8bd4fdcb..159363c3 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_pixelmap_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_pixelmap_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,12 +65,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ static VOID _gx_dave2d_simulation_display_driver_565rgb_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -217,12 +212,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ static VOID _gx_dave2d_simulation_display_driver_16bpp_4444argb_pixelmap_compressed_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -408,12 +397,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ static VOID _gx_dave2d_simulation_display_driver_16bpp_4444bgra_pixelmap_compressed_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -601,12 +584,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ static VOID _gx_dave2d_simulation_display_driver_16bpp_32argb_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -778,12 +755,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ static VOID _gx_dave2d_simulation_display_driver_16bpp_32argb_pixelmap_raw_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -890,12 +861,6 @@ GX_UBYTE b; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_565rgb_pixelmap_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -1007,12 +972,6 @@ GX_BOOL drawn = GX_FALSE; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_16bpp_pixelmap_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_rotated_compressed_glyph_1bit_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_rotated_compressed_glyph_1bit_draw.c index 90f3506e..02736fb3 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_rotated_compressed_glyph_1bit_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_rotated_compressed_glyph_1bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,12 +70,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_16bpp_rotated_compressed_glyph_1bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_rotated_glyph_1bit_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_rotated_glyph_1bit_draw.c index ff57fba5..3c812d5f 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_rotated_glyph_1bit_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_rotated_glyph_1bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,12 +69,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_16bpp_rotated_glyph_1bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_rotated_pixelmap_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_rotated_pixelmap_draw.c index 4a8bc1ab..0edf513f 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_rotated_pixelmap_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_16bpp_rotated_pixelmap_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,12 +66,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ static VOID _gx_dave2d_simulation_display_driver_565rgb_rotated_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -246,12 +241,6 @@ GX_RECTANGLE rotated_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ static VOID _gx_dave2d_simulation_display_driver_565rgb_4444argb_rotated_pixelmap_compressed_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -468,12 +457,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ static VOID _gx_dave2d_simulation_display_driver_565rgb_4444bgra_rotated_pixelmap_compressed_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -688,12 +671,6 @@ GX_RECTANGLE rotated_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ static VOID _gx_dave2d_simulation_display_driver_565rgb_32argb_rotated_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -891,12 +868,6 @@ GX_RECTANGLE rotated_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ static VOID _gx_dave2d_simulation_display_driver_565rgb_32argb_rotated_pixelmap_raw_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -1025,12 +996,6 @@ GX_RECTANGLE rotated_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_565rgb_rotated_pixelmap_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -1147,12 +1112,6 @@ GX_BOOL drawn = GX_FALSE; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_565rgb_rotated_pixelmap_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_pixelmap_blend.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_pixelmap_blend.c index 3b0d444b..639543a8 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_pixelmap_blend.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_pixelmap_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,12 +63,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ static VOID _gx_dave2d_simulation_display_driver_24xrgb_pixelmap_compressed_alpha_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -203,12 +198,6 @@ GX_RECTANGLE *clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ static VOID _gx_dave2d_simulation_display_driver_24xrgb_pixelmap_compressed_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) @@ -327,12 +316,6 @@ GX_RECTANGLE *clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_24xrgb_pixelmap_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_pixelmap_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_pixelmap_draw.c index ae427c59..c05079ee 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_pixelmap_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_pixelmap_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,12 +62,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ static VOID _gx_dave2d_simulation_display_driver_24xrgb_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -248,12 +243,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ static VOID _gx_dave2d_simulation_display_driver_32bpp_4444argb_pixelmap_compressed_alpha_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -418,12 +407,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ static VOID _gx_dave2d_simulation_display_driver_32bpp_4444bgra_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -587,12 +570,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ static VOID _gx_dave2d_simulation_display_driver_24xrgb_565rgb_pixelmap_compressed_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -780,15 +757,6 @@ GX_RECTANGLE *clip = context -> gx_draw_context_clip; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* 10-31-2022 Kenneth Maxwell Modify comments, change */ -/* function name, */ -/* resulting in Version 6.2.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_24xrgb_pixelmap_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_rotated_pixelmap_blend.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_rotated_pixelmap_blend.c index 1eef6f8e..5865e9f6 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_rotated_pixelmap_blend.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_rotated_pixelmap_blend.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,12 +63,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_24xrgb_rotated_pixelmap_blend(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap, GX_UBYTE alpha) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_rotated_pixelmap_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_rotated_pixelmap_draw.c index 9020359c..09d6d664 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_rotated_pixelmap_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_rotated_pixelmap_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,12 +66,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_24xrgb_rotated_pixelmap_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_rotated_setup.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_rotated_setup.c index 4ec7d870..6a6e52a0 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_rotated_setup.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_rotated_setup.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,12 +61,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_24xrgb_rotated_setup(GX_DISPLAY *display, VOID *aux_data, VOID (*toggle_function)(struct GX_CANVAS_STRUCT *canvas, diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_setup.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_setup.c index cf1f1439..6a0d5e4f 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_setup.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_24xrgb_setup.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,12 +58,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_24xrgb_setup(GX_DISPLAY *display, VOID *aux_data, VOID (*toggle_function)(struct GX_CANVAS_STRUCT *canvas, diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_compressed_glyph_1bit_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_compressed_glyph_1bit_draw.c index a487c175..4afd1c41 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_compressed_glyph_1bit_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_compressed_glyph_1bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -75,12 +76,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_32bpp_compressed_glyph_1bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_glyph_1bit_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_glyph_1bit_draw.c index c5e224ec..caaef71d 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_glyph_1bit_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_glyph_1bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -84,12 +85,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_32bpp_glyph_1bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_horizontal_pixelmap_line_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_horizontal_pixelmap_line_draw.c index 0e45cc02..c642f813 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_horizontal_pixelmap_line_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_horizontal_pixelmap_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,12 +67,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ static VOID _gx_dave2d_simulation_display_driver_32bpp_horizontal_pixelmap_line_compressed_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -245,12 +240,6 @@ VOID (*blend_func)(GX_DRAW_CONTEXT *context, INT x, INT y, GX_COLO /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_32bpp_horizontal_pixelmap_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_rotated_compressed_glyph_1bit_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_rotated_compressed_glyph_1bit_draw.c index 1be2fd40..865f41ec 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_rotated_compressed_glyph_1bit_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_rotated_compressed_glyph_1bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,12 +69,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_32bpp_rotated_compressed_glyph_1bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_rotated_glyph_1bit_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_rotated_glyph_1bit_draw.c index ba4dbbb0..db4e5085 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_rotated_glyph_1bit_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_rotated_glyph_1bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -75,12 +76,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_32bpp_rotated_glyph_1bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_rotated_horizontal_pixelmap_line_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_rotated_horizontal_pixelmap_line_draw.c index ed22a995..c7a879f8 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_rotated_horizontal_pixelmap_line_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_32bpp_rotated_horizontal_pixelmap_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -67,12 +68,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_32bpp_rotated_horizontal_pixelmap_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT x, GX_FILL_PIXELMAP_INFO *info) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_565rgb_horizontal_pixelmap_line_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_565rgb_horizontal_pixelmap_line_draw.c index c5816c0b..fb4c2fab 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_565rgb_horizontal_pixelmap_line_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_565rgb_horizontal_pixelmap_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -64,12 +65,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ static VOID _gx_dave2d_simulation_display_driver_565rgb_horizontal_pixelmap_line_compressed_write(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) @@ -201,12 +196,6 @@ GX_PIXELMAP *pixelmap; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_565rgb_horizontal_pixelmap_line_draw(GX_DRAW_CONTEXT *context, INT xstart, INT xend, INT y, GX_FILL_PIXELMAP_INFO *info) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_565rgb_rotated_horizontal_pixelmap_line_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_565rgb_rotated_horizontal_pixelmap_line_draw.c index 7498c629..e41237e9 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_565rgb_rotated_horizontal_pixelmap_line_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_565rgb_rotated_horizontal_pixelmap_line_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -65,12 +66,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ static VOID _gx_dave2d_simulation_display_driver_565rgb_rotated_horizontal_pixelmap_line_compressed_write(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT x, GX_FILL_PIXELMAP_INFO *info) @@ -226,12 +221,6 @@ INT y; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_565rgb_rotated_horizontal_pixelmap_line_draw(GX_DRAW_CONTEXT *context, INT ystart, INT yend, INT x, GX_FILL_PIXELMAP_INFO *info) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_565rgb_rotated_setup.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_565rgb_rotated_setup.c index b5610db4..28b91ba8 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_565rgb_rotated_setup.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_565rgb_rotated_setup.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,12 +58,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_565rgb_rotated_setup(GX_DISPLAY *display, VOID *aux_data, diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_565rgb_setup.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_565rgb_setup.c index 4aa852e7..caf0e8f4 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_565rgb_setup.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_565rgb_setup.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,12 +58,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_565rgb_setup(GX_DISPLAY *display, VOID *aux_data, diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_8bit_palette_setup.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_8bit_palette_setup.c index f067f591..fda8de27 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_8bit_palette_setup.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_8bit_palette_setup.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -63,12 +64,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_8bit_palette_setup(GX_DISPLAY *display, VOID *aux_data, VOID (*toggle_function)(struct GX_CANVAS_STRUCT *canvas, GX_RECTANGLE *dirty_area)) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_8bpp_glyph_1bit_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_8bpp_glyph_1bit_draw.c index 13f45812..d614cf8c 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_8bpp_glyph_1bit_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_8bpp_glyph_1bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -73,12 +74,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_8bpp_glyph_1bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) { diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_8bpp_glyph_4bit_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_8bpp_glyph_4bit_draw.c index e450167e..a13d5703 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_8bpp_glyph_4bit_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_8bpp_glyph_4bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -66,12 +67,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_8bpp_glyph_4bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_compressed_glyph_4bit_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_compressed_glyph_4bit_draw.c index e97927bc..27aa9009 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_compressed_glyph_4bit_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_compressed_glyph_4bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,12 +69,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_compressed_glyph_4bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_compressed_glyph_8bit_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_compressed_glyph_8bit_draw.c index f0e3f848..0ccf5694 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_compressed_glyph_8bit_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_compressed_glyph_8bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,12 +69,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_compressed_glyph_8bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_glyph_4bit_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_glyph_4bit_draw.c index 0f89350a..332ffb09 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_glyph_4bit_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_glyph_4bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,12 +70,6 @@ /* */ /* _gx_dave2d_simulation_display_driver_glyph_4bit_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_glyph_4bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_rotated_compressed_glyph_4bit_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_rotated_compressed_glyph_4bit_draw.c index 5c1bf383..21db6cda 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_rotated_compressed_glyph_4bit_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_rotated_compressed_glyph_4bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,12 +69,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_rotated_compressed_glyph_4bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_rotated_compressed_glyph_8bit_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_rotated_compressed_glyph_8bit_draw.c index 66bcf531..c443cdf6 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_rotated_compressed_glyph_8bit_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_rotated_compressed_glyph_8bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -68,12 +69,6 @@ /* */ /* GUIX internal code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_rotated_compressed_glyph_8bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) diff --git a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_rotated_glyph_4bit_draw.c b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_rotated_glyph_4bit_draw.c index 60319122..d1f5698a 100644 --- a/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_rotated_glyph_4bit_draw.c +++ b/ports/win32/src/renesas/gx_dave2d_simulation_display_driver_rotated_glyph_4bit_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -69,12 +70,6 @@ /* */ /* _gx_dave2d_simulation_display_driver_glyph_4bit_draw */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID _gx_dave2d_simulation_display_driver_rotated_glyph_4bit_draw(GX_DRAW_CONTEXT *context, GX_RECTANGLE *draw_area, GX_POINT *map_offset, GX_CONST GX_GLYPH *glyph) diff --git a/ports/win32/src/renesas/gx_win32_dave2d_display_driver_24xrgb.c b/ports/win32/src/renesas/gx_win32_dave2d_display_driver_24xrgb.c index 27d47d62..af89340b 100644 --- a/ports/win32/src/renesas/gx_win32_dave2d_display_driver_24xrgb.c +++ b/ports/win32/src/renesas/gx_win32_dave2d_display_driver_24xrgb.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -58,12 +59,6 @@ /* */ /* win32_dave2d_graphics_driver_setup_24xrgb */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ VOID win32_dave2d_simulation_24xrgb_bitmap_header_create(GX_DISPLAY *display) { @@ -127,15 +122,6 @@ DWORD *putmask; /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* 10-31-2022 Kenneth Maxwell Modify comments, change */ -/* function name, */ -/* resulting in Version 6.2.0 */ -/* */ /**************************************************************************/ UINT win32_dave2d_graphics_driver_setup_24xrgb(GX_DISPLAY *display) { diff --git a/ports/win32/src/renesas/gx_win32_dave2d_display_driver_24xrgb_rotated.c b/ports/win32/src/renesas/gx_win32_dave2d_display_driver_24xrgb_rotated.c index 575e1682..455d9b97 100644 --- a/ports/win32/src/renesas/gx_win32_dave2d_display_driver_24xrgb_rotated.c +++ b/ports/win32/src/renesas/gx_win32_dave2d_display_driver_24xrgb_rotated.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,12 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ UINT win32_dave2d_graphics_driver_setup_24xrgb_rotated(GX_DISPLAY* display) { diff --git a/ports/win32/src/renesas/gx_win32_dave2d_display_driver_565rgb.c b/ports/win32/src/renesas/gx_win32_dave2d_display_driver_565rgb.c index f860bde4..38587f8b 100644 --- a/ports/win32/src/renesas/gx_win32_dave2d_display_driver_565rgb.c +++ b/ports/win32/src/renesas/gx_win32_dave2d_display_driver_565rgb.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -57,12 +58,6 @@ /* */ /* win32_dave2d_graphics_driver_setup_565rgb */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ static void win32_dave2d_simulation_565rgb_bitmap_header_create(GX_DISPLAY *display) { @@ -124,15 +119,6 @@ GX_WIN32_DISPLAY_DRIVER_DATA *instance = (GX_WIN32_DISPLAY_DRIVER_DATA *)display /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* 10-31-2022 Kenneth Maxwell Modify comments, change */ -/* function name, */ -/* resulting in Version 6.2.0 */ -/* */ /**************************************************************************/ UINT win32_dave2d_graphics_driver_setup_565rgb(GX_DISPLAY *display) { diff --git a/ports/win32/src/renesas/gx_win32_dave2d_display_driver_565rgb_rotated.c b/ports/win32/src/renesas/gx_win32_dave2d_display_driver_565rgb_rotated.c index c8103db3..4f254a8c 100644 --- a/ports/win32/src/renesas/gx_win32_dave2d_display_driver_565rgb_rotated.c +++ b/ports/win32/src/renesas/gx_win32_dave2d_display_driver_565rgb_rotated.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -56,12 +57,6 @@ /* */ /* win32_graphics_driver_setup_565rgb */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ static void win32_dave2d_simulation_565rgb_rotated_bitmap_header_create(GX_DISPLAY *display) { @@ -122,12 +117,6 @@ GX_WIN32_DISPLAY_DRIVER_DATA *instance = (GX_WIN32_DISPLAY_DRIVER_DATA *)display /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ UINT win32_dave2d_graphics_driver_setup_565rgb_rotated(GX_DISPLAY *display) { diff --git a/ports/win32/src/renesas/gx_win32_dave2d_display_driver_8bit_palette.c b/ports/win32/src/renesas/gx_win32_dave2d_display_driver_8bit_palette.c index c80c9606..12e35c95 100644 --- a/ports/win32/src/renesas/gx_win32_dave2d_display_driver_8bit_palette.c +++ b/ports/win32/src/renesas/gx_win32_dave2d_display_driver_8bit_palette.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,12 +63,6 @@ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2023 Ting Zhu Initial Version 6.4.0 */ -/* */ /**************************************************************************/ UINT win32_dave2d_graphics_driver_setup_8bit_palette(GX_DISPLAY *display) { diff --git a/ports/win32/src/st/gx_chromart_simulation_display_driver_565rgb_pixelmap_draw.c b/ports/win32/src/st/gx_chromart_simulation_display_driver_565rgb_pixelmap_draw.c index 52b56140..3693d47a 100644 --- a/ports/win32/src/st/gx_chromart_simulation_display_driver_565rgb_pixelmap_draw.c +++ b/ports/win32/src/st/gx_chromart_simulation_display_driver_565rgb_pixelmap_draw.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -62,12 +63,6 @@ /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static VOID _gx_chromart_simulation_display_driver_565rgb_pixelmap_32argb_write(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) @@ -161,12 +156,6 @@ GX_UBYTE b; /* */ /* GUIX Internal Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_chromart_simulation_display_driver_565rgb_pixelmap_draw(GX_DRAW_CONTEXT *context, INT xpos, INT ypos, GX_PIXELMAP *pixelmap) diff --git a/ports/win32/src/st/gx_chromart_simulation_display_driver_565rgb_setup.c b/ports/win32/src/st/gx_chromart_simulation_display_driver_565rgb_setup.c index da64a769..892e50f2 100644 --- a/ports/win32/src/st/gx_chromart_simulation_display_driver_565rgb_setup.c +++ b/ports/win32/src/st/gx_chromart_simulation_display_driver_565rgb_setup.c @@ -1,11 +1,12 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -61,12 +62,6 @@ extern VOID _gx_chromart_simulation_display_driver_565rgb_pixelmap_draw(GX_DRAW_ /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ VOID _gx_chromart_simulation_display_driver_565rgb_setup(GX_DISPLAY *display, VOID *aux_data, VOID (*toggle_function)(struct GX_CANVAS_STRUCT *canvas, diff --git a/ports/win32/src/st/gx_win32_chromart_display_driver_565rgb.c b/ports/win32/src/st/gx_win32_chromart_display_driver_565rgb.c index 962cbb76..787c362e 100644 --- a/ports/win32/src/st/gx_win32_chromart_display_driver_565rgb.c +++ b/ports/win32/src/st/gx_win32_chromart_display_driver_565rgb.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -60,12 +61,6 @@ extern VOID _gx_chromart_simulation_display_driver_565rgb_setup(GX_DISPLAY *disp /* */ /* win32_chromart_graphics_driver_setup_565rgb */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* */ /**************************************************************************/ static void win32_565rgb_bitmap_header_create(GX_DISPLAY *display) { @@ -126,15 +121,6 @@ GX_WIN32_DISPLAY_DRIVER_DATA *instance = (GX_WIN32_DISPLAY_DRIVER_DATA *)display /* */ /* Application Code */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-31-2020 Kenneth Maxwell Initial Version 6.1.3 */ -/* 01-31-2022 Ting Zhu Modified comment(s), */ -/* improved logic, */ -/* resulting in version 6.1.10 */ -/* */ /**************************************************************************/ UINT win32_chromeart_graphics_driver_setup_565rgb(GX_DISPLAY *display) { diff --git a/ports/win32/vs_2019_standalone/inc/gx_port.h b/ports/win32/vs_2019_standalone/inc/gx_port.h index e41408d1..f927edb4 100644 --- a/ports/win32/vs_2019_standalone/inc/gx_port.h +++ b/ports/win32/vs_2019_standalone/inc/gx_port.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ @@ -33,16 +34,6 @@ /* This file contains data type definitions and constants specific */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 09-30-2020 Kenneth Maxwell Initial Version 6.1 */ -/* 08-02-2021 Kenneth Maxwell Modified comment(s), removed */ -/* GX_SYSTEM_TIMER_TICKS and */ -/* GX_TICKS_SECOND definitions,*/ -/* resulting in version 6.1.8 */ -/* */ /**************************************************************************/ #ifndef GX_PORT_H diff --git a/samples/demo_guix_calculator/evaluate.c b/samples/demo_guix_calculator/evaluate.c index 03e3e65f..fca3b9a1 100644 --- a/samples/demo_guix_calculator/evaluate.c +++ b/samples/demo_guix_calculator/evaluate.c @@ -171,7 +171,7 @@ GX_VALUE index = 0; } else { - /* Pop out two operands and one operation and push the calculate result to stack_operand, + /* Pop out two operands and one operation and push the calculate result to stack_operand, then push the current operation to the stack_operation. */ if (stack_operand.top < 1) { diff --git a/samples/demo_guix_home_automation/demo_guix_home_automation.c b/samples/demo_guix_home_automation/demo_guix_home_automation.c index 39015af1..6a7d8b50 100644 --- a/samples/demo_guix_home_automation/demo_guix_home_automation.c +++ b/samples/demo_guix_home_automation/demo_guix_home_automation.c @@ -248,7 +248,7 @@ VOID main_screen_draw(GX_WINDOW *window) decode_main_screen_jpeg(); } - /* unless something went wrong, the pixelmap data should now be populated in + /* unless something went wrong, the pixelmap data should now be populated in GUIX pixelmap format */ if (main_screen_bg.gx_pixelmap_data) diff --git a/samples/demo_guix_industrial/demo_guix_industrial.c b/samples/demo_guix_industrial/demo_guix_industrial.c index 8749d6a4..42481901 100644 --- a/samples/demo_guix_industrial/demo_guix_industrial.c +++ b/samples/demo_guix_industrial/demo_guix_industrial.c @@ -165,7 +165,7 @@ VOID main_screen_draw(GX_WINDOW *window) decode_main_screen_jpeg(); } - /* Unless something went wrong, the pixelmap data should now be populated in + /* Unless something went wrong, the pixelmap data should now be populated in GUIX pixelmap format. */ if (main_screen_bg.gx_pixelmap_data) { diff --git a/test/example_internal/all_widgets_defined_5_4_0_compatibility/gx_user.h b/test/example_internal/all_widgets_defined_5_4_0_compatibility/gx_user.h index caa0b2d3..ba92f4ce 100644 --- a/test/example_internal/all_widgets_defined_5_4_0_compatibility/gx_user.h +++ b/test/example_internal/all_widgets_defined_5_4_0_compatibility/gx_user.h @@ -47,36 +47,6 @@ /* GUIX features by commenting out or including the definitions below */ /* to the implementation of high-performance GUIX UI framework. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 11-24-2014 William E. Lamie Initial Version 5.2 */ -/* 01-16-2015 William E. Lamie Modified comment(s), */ -/* resulting in version 5.2.1 */ -/* 01-26-2015 William E. Lamie Modified comment(s), */ -/* resulting in version 5.2.2 */ -/* 03-01-2015 William E. Lamie Modified comment(s), */ -/* resulting in version 5.2.3 */ -/* 04-15-2015 William E. Lamie Modified comment(s), */ -/* resulting in version 5.2.4 */ -/* 08-21-2015 William E. Lamie Modified comment(s), added */ -/* GX_SYSTEM_TIMER_MS so GUIX */ -/* timer value can be modified,*/ -/* resulting in version 5.2.5 */ -/* 09-21-2015 William E. Lamie Modified comment(s), */ -/* resulting in version 5.2.6 */ -/* 02-22-2016 William E. Lamie Modified comment(s), */ -/* resulting in version 5.3 */ -/* 04-05-2016 William E. Lamie Modified comment(s), */ -/* resulting in version 5.3.1 */ -/* 06-15-2016 William E. Lamie Modified comment(s), */ -/* resulting in version 5.3.2 */ -/* 03-01-2017 William E. Lamie Modified comment(s), */ -/* resulting in version 5.3.3 */ -/* 11-06-2017 William E. Lamie Modified comment(s), */ -/* resulting in version 5.4 */ -/* */ /**************************************************************************/ #ifndef GX_USER_H @@ -96,7 +66,7 @@ change GUIX System Timer value. */ /* #define GX_SYSTEM_TIMER_MS 20 */ -/* This can be defined to insert an application specific data +/* This can be defined to insert an application specific data field into the GX_WIDGET control block */ /* #define GX_WIDGET_USER_DATA */ #endif diff --git a/test/example_internal/binres_theme_static_language/demo_guix_binres_theme_static_language.c b/test/example_internal/binres_theme_static_language/demo_guix_binres_theme_static_language.c index b7f57bc7..d716e02a 100644 --- a/test/example_internal/binres_theme_static_language/demo_guix_binres_theme_static_language.c +++ b/test/example_internal/binres_theme_static_language/demo_guix_binres_theme_static_language.c @@ -202,9 +202,9 @@ VOID *load_binary_resource_data_to_ram() { UCHAR *address = GX_NULL; - /* If generated resource is stored in a FAT filesystem, it must be + /* If generated resource is stored in a FAT filesystem, it must be loaded into memory before it can be used. This memory could be - RAM or FLASH, but for the purpose of this example will simply + RAM or FLASH, but for the purpose of this example will simply read the file to RAM. */ FILE *p_file; size_t total_length; diff --git a/test/example_internal/guix_medical_mouse_support/vitals.c b/test/example_internal/guix_medical_mouse_support/vitals.c index 97d702a7..b4aa1f85 100644 --- a/test/example_internal/guix_medical_mouse_support/vitals.c +++ b/test/example_internal/guix_medical_mouse_support/vitals.c @@ -111,7 +111,7 @@ GX_ICON *heart_icon; ekg_value = ekg_values[ekg_index]; line_y_coords[0] = CHART_Y_CENTER - ekg_value; - // the slider scale is 0 to 100, so convert ekg value to + // the slider scale is 0 to 100, so convert ekg value to // approximate slider value: slider_value = ekg_value + 45; diff --git a/test/example_internal/helloworld/helloworld.c b/test/example_internal/helloworld/helloworld.c index c0c341bf..cb27bb76 100644 --- a/test/example_internal/helloworld/helloworld.c +++ b/test/example_internal/helloworld/helloworld.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/test/example_internal/keyboard_8bpp/demo_guix_keyboard_8bpp.c b/test/example_internal/keyboard_8bpp/demo_guix_keyboard_8bpp.c index 190a86be..6fbeafee 100644 --- a/test/example_internal/keyboard_8bpp/demo_guix_keyboard_8bpp.c +++ b/test/example_internal/keyboard_8bpp/demo_guix_keyboard_8bpp.c @@ -119,7 +119,7 @@ VOID demo_thread_entry(ULONG thread_input) PopulateKeyboardButtons(&keyboard_screen.keyboard_screen_keyboard_frame, key_layout_1); -// gx_single_line_text_input_cursor_flag_set(&keyboard_screen.keyboard_screen_keyboard_input_field, +// gx_single_line_text_input_cursor_flag_set(&keyboard_screen.keyboard_screen_keyboard_input_field, // GX_STYLE_CURSOR_BLINK | GX_STYLE_CURSOR_ALWAYS); diff --git a/test/example_internal/progress_bar/progress_bar.c b/test/example_internal/progress_bar/progress_bar.c index 9f782e55..00df17b8 100644 --- a/test/example_internal/progress_bar/progress_bar.c +++ b/test/example_internal/progress_bar/progress_bar.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_1555xrgb/fx_api.h b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_1555xrgb/fx_api.h index ba10d464..a0b0b180 100644 --- a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_1555xrgb/fx_api.h +++ b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_1555xrgb/fx_api.h @@ -50,49 +50,6 @@ /* All service prototypes and data structure definitions are defined */ /* in this file. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-12-2005 William E. Lamie Initial Version 5.0 */ -/* 07-18-2007 William E. Lamie Modified comment(s), changed */ -/* the default file and path */ -/* length to 256, added burst */ -/* cache disable flags to the */ -/* media and file structures, */ -/* added boot signature offset */ -/* for FAT32, added volume ID */ -/* offset for FAT32, changed */ -/* size of rename buffer, and */ -/* changed UL to ULONG cast, */ -/* resulting in version 5.1 */ -/* 03-01-2009 William E. Lamie Modified comment(s), added */ -/* logic for trace support, */ -/* added macros to override */ -/* interrupt protection in */ -/* port files to simply use */ -/* ThreadX interrupt macros, */ -/* resulting in version 5.2 */ -/* 11-01-2015 William E. Lamie Modified comment(s), added */ -/* major/minor release defines,*/ -/* added support for exFAT, */ -/* added fault tolerant */ -/* support, changed the initial*/ -/* date, and added new APIs, */ -/* resulting in version 5.3 */ -/* 04-15-2016 William E. Lamie Modified comment(s), */ -/* defined the update rate of */ -/* system timer, */ -/* resulting in version 5.4 */ -/* 04-03-2017 William E. Lamie Modified comment(s), added */ -/* conditional around maximum */ -/* path define, and added */ -/* default defines for */ -/* port-specific macros, added */ -/* a macro to disable warning */ -/* of parameter not used, */ -/* resulting in version 5.5 */ -/* */ /**************************************************************************/ #ifndef FX_API_H diff --git a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_1555xrgb/fx_port.h b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_1555xrgb/fx_port.h index 16d1729a..727f5321 100644 --- a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_1555xrgb/fx_port.h +++ b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_1555xrgb/fx_port.h @@ -52,13 +52,6 @@ /* various entries in the boot record, and directory entries are */ /* defined in this file. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-12-2011 William E. Lamie Initial Cortex-M4/IAR */ -/* Support Version 5.0 */ -/* */ /**************************************************************************/ #ifndef FX_PORT_H @@ -70,7 +63,7 @@ #ifdef FX_INCLUDE_USER_DEFINE_FILE -/* Yes, include the user defines in fx_user.h. The defines in this file may +/* Yes, include the user defines in fx_user.h. The defines in this file may alternately be defined on the command line. */ #include "fx_user.h" @@ -84,7 +77,7 @@ /* Define FileX internal protection macros. If FX_SINGLE_THREAD is defined, these protection macros are effectively disabled. However, for multi-thread - uses, the macros are setup to utilize a ThreadX mutex for multiple thread + uses, the macros are setup to utilize a ThreadX mutex for multiple thread access control into an open media. */ #ifdef FX_SINGLE_THREAD @@ -105,8 +98,8 @@ #define FX_RESTORE_INTS tx_interrupt_control(old_interrupt_posture); -/* Define the error checking logic to determine if there is a caller error in the FileX API. - The default definitions assume ThreadX is being used. This code can be completely turned +/* Define the error checking logic to determine if there is a caller error in the FileX API. + The default definitions assume ThreadX is being used. This code can be completely turned off by just defining these macros to white space. */ #ifndef TX_TIMER_PROCESS_IN_ISR diff --git a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_16bpp/fx_api.h b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_16bpp/fx_api.h index ba10d464..a0b0b180 100644 --- a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_16bpp/fx_api.h +++ b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_16bpp/fx_api.h @@ -50,49 +50,6 @@ /* All service prototypes and data structure definitions are defined */ /* in this file. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-12-2005 William E. Lamie Initial Version 5.0 */ -/* 07-18-2007 William E. Lamie Modified comment(s), changed */ -/* the default file and path */ -/* length to 256, added burst */ -/* cache disable flags to the */ -/* media and file structures, */ -/* added boot signature offset */ -/* for FAT32, added volume ID */ -/* offset for FAT32, changed */ -/* size of rename buffer, and */ -/* changed UL to ULONG cast, */ -/* resulting in version 5.1 */ -/* 03-01-2009 William E. Lamie Modified comment(s), added */ -/* logic for trace support, */ -/* added macros to override */ -/* interrupt protection in */ -/* port files to simply use */ -/* ThreadX interrupt macros, */ -/* resulting in version 5.2 */ -/* 11-01-2015 William E. Lamie Modified comment(s), added */ -/* major/minor release defines,*/ -/* added support for exFAT, */ -/* added fault tolerant */ -/* support, changed the initial*/ -/* date, and added new APIs, */ -/* resulting in version 5.3 */ -/* 04-15-2016 William E. Lamie Modified comment(s), */ -/* defined the update rate of */ -/* system timer, */ -/* resulting in version 5.4 */ -/* 04-03-2017 William E. Lamie Modified comment(s), added */ -/* conditional around maximum */ -/* path define, and added */ -/* default defines for */ -/* port-specific macros, added */ -/* a macro to disable warning */ -/* of parameter not used, */ -/* resulting in version 5.5 */ -/* */ /**************************************************************************/ #ifndef FX_API_H diff --git a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_16bpp/fx_port.h b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_16bpp/fx_port.h index 16d1729a..727f5321 100644 --- a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_16bpp/fx_port.h +++ b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_16bpp/fx_port.h @@ -52,13 +52,6 @@ /* various entries in the boot record, and directory entries are */ /* defined in this file. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-12-2011 William E. Lamie Initial Cortex-M4/IAR */ -/* Support Version 5.0 */ -/* */ /**************************************************************************/ #ifndef FX_PORT_H @@ -70,7 +63,7 @@ #ifdef FX_INCLUDE_USER_DEFINE_FILE -/* Yes, include the user defines in fx_user.h. The defines in this file may +/* Yes, include the user defines in fx_user.h. The defines in this file may alternately be defined on the command line. */ #include "fx_user.h" @@ -84,7 +77,7 @@ /* Define FileX internal protection macros. If FX_SINGLE_THREAD is defined, these protection macros are effectively disabled. However, for multi-thread - uses, the macros are setup to utilize a ThreadX mutex for multiple thread + uses, the macros are setup to utilize a ThreadX mutex for multiple thread access control into an open media. */ #ifdef FX_SINGLE_THREAD @@ -105,8 +98,8 @@ #define FX_RESTORE_INTS tx_interrupt_control(old_interrupt_posture); -/* Define the error checking logic to determine if there is a caller error in the FileX API. - The default definitions assume ThreadX is being used. This code can be completely turned +/* Define the error checking logic to determine if there is a caller error in the FileX API. + The default definitions assume ThreadX is being used. This code can be completely turned off by just defining these macros to white space. */ #ifndef TX_TIMER_PROCESS_IN_ISR diff --git a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_32bpp/fx_api.h b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_32bpp/fx_api.h index ba10d464..a0b0b180 100644 --- a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_32bpp/fx_api.h +++ b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_32bpp/fx_api.h @@ -50,49 +50,6 @@ /* All service prototypes and data structure definitions are defined */ /* in this file. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-12-2005 William E. Lamie Initial Version 5.0 */ -/* 07-18-2007 William E. Lamie Modified comment(s), changed */ -/* the default file and path */ -/* length to 256, added burst */ -/* cache disable flags to the */ -/* media and file structures, */ -/* added boot signature offset */ -/* for FAT32, added volume ID */ -/* offset for FAT32, changed */ -/* size of rename buffer, and */ -/* changed UL to ULONG cast, */ -/* resulting in version 5.1 */ -/* 03-01-2009 William E. Lamie Modified comment(s), added */ -/* logic for trace support, */ -/* added macros to override */ -/* interrupt protection in */ -/* port files to simply use */ -/* ThreadX interrupt macros, */ -/* resulting in version 5.2 */ -/* 11-01-2015 William E. Lamie Modified comment(s), added */ -/* major/minor release defines,*/ -/* added support for exFAT, */ -/* added fault tolerant */ -/* support, changed the initial*/ -/* date, and added new APIs, */ -/* resulting in version 5.3 */ -/* 04-15-2016 William E. Lamie Modified comment(s), */ -/* defined the update rate of */ -/* system timer, */ -/* resulting in version 5.4 */ -/* 04-03-2017 William E. Lamie Modified comment(s), added */ -/* conditional around maximum */ -/* path define, and added */ -/* default defines for */ -/* port-specific macros, added */ -/* a macro to disable warning */ -/* of parameter not used, */ -/* resulting in version 5.5 */ -/* */ /**************************************************************************/ #ifndef FX_API_H diff --git a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_32bpp/fx_port.h b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_32bpp/fx_port.h index 16d1729a..727f5321 100644 --- a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_32bpp/fx_port.h +++ b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_32bpp/fx_port.h @@ -52,13 +52,6 @@ /* various entries in the boot record, and directory entries are */ /* defined in this file. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-12-2011 William E. Lamie Initial Cortex-M4/IAR */ -/* Support Version 5.0 */ -/* */ /**************************************************************************/ #ifndef FX_PORT_H @@ -70,7 +63,7 @@ #ifdef FX_INCLUDE_USER_DEFINE_FILE -/* Yes, include the user defines in fx_user.h. The defines in this file may +/* Yes, include the user defines in fx_user.h. The defines in this file may alternately be defined on the command line. */ #include "fx_user.h" @@ -84,7 +77,7 @@ /* Define FileX internal protection macros. If FX_SINGLE_THREAD is defined, these protection macros are effectively disabled. However, for multi-thread - uses, the macros are setup to utilize a ThreadX mutex for multiple thread + uses, the macros are setup to utilize a ThreadX mutex for multiple thread access control into an open media. */ #ifdef FX_SINGLE_THREAD @@ -105,8 +98,8 @@ #define FX_RESTORE_INTS tx_interrupt_control(old_interrupt_posture); -/* Define the error checking logic to determine if there is a caller error in the FileX API. - The default definitions assume ThreadX is being used. This code can be completely turned +/* Define the error checking logic to determine if there is a caller error in the FileX API. + The default definitions assume ThreadX is being used. This code can be completely turned off by just defining these macros to white space. */ #ifndef TX_TIMER_PROCESS_IN_ISR diff --git a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_332rgb/fx_api.h b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_332rgb/fx_api.h index ba10d464..a0b0b180 100644 --- a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_332rgb/fx_api.h +++ b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_332rgb/fx_api.h @@ -50,49 +50,6 @@ /* All service prototypes and data structure definitions are defined */ /* in this file. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-12-2005 William E. Lamie Initial Version 5.0 */ -/* 07-18-2007 William E. Lamie Modified comment(s), changed */ -/* the default file and path */ -/* length to 256, added burst */ -/* cache disable flags to the */ -/* media and file structures, */ -/* added boot signature offset */ -/* for FAT32, added volume ID */ -/* offset for FAT32, changed */ -/* size of rename buffer, and */ -/* changed UL to ULONG cast, */ -/* resulting in version 5.1 */ -/* 03-01-2009 William E. Lamie Modified comment(s), added */ -/* logic for trace support, */ -/* added macros to override */ -/* interrupt protection in */ -/* port files to simply use */ -/* ThreadX interrupt macros, */ -/* resulting in version 5.2 */ -/* 11-01-2015 William E. Lamie Modified comment(s), added */ -/* major/minor release defines,*/ -/* added support for exFAT, */ -/* added fault tolerant */ -/* support, changed the initial*/ -/* date, and added new APIs, */ -/* resulting in version 5.3 */ -/* 04-15-2016 William E. Lamie Modified comment(s), */ -/* defined the update rate of */ -/* system timer, */ -/* resulting in version 5.4 */ -/* 04-03-2017 William E. Lamie Modified comment(s), added */ -/* conditional around maximum */ -/* path define, and added */ -/* default defines for */ -/* port-specific macros, added */ -/* a macro to disable warning */ -/* of parameter not used, */ -/* resulting in version 5.5 */ -/* */ /**************************************************************************/ #ifndef FX_API_H diff --git a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_332rgb/fx_port.h b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_332rgb/fx_port.h index 16d1729a..727f5321 100644 --- a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_332rgb/fx_port.h +++ b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_332rgb/fx_port.h @@ -52,13 +52,6 @@ /* various entries in the boot record, and directory entries are */ /* defined in this file. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-12-2011 William E. Lamie Initial Cortex-M4/IAR */ -/* Support Version 5.0 */ -/* */ /**************************************************************************/ #ifndef FX_PORT_H @@ -70,7 +63,7 @@ #ifdef FX_INCLUDE_USER_DEFINE_FILE -/* Yes, include the user defines in fx_user.h. The defines in this file may +/* Yes, include the user defines in fx_user.h. The defines in this file may alternately be defined on the command line. */ #include "fx_user.h" @@ -84,7 +77,7 @@ /* Define FileX internal protection macros. If FX_SINGLE_THREAD is defined, these protection macros are effectively disabled. However, for multi-thread - uses, the macros are setup to utilize a ThreadX mutex for multiple thread + uses, the macros are setup to utilize a ThreadX mutex for multiple thread access control into an open media. */ #ifdef FX_SINGLE_THREAD @@ -105,8 +98,8 @@ #define FX_RESTORE_INTS tx_interrupt_control(old_interrupt_posture); -/* Define the error checking logic to determine if there is a caller error in the FileX API. - The default definitions assume ThreadX is being used. This code can be completely turned +/* Define the error checking logic to determine if there is a caller error in the FileX API. + The default definitions assume ThreadX is being used. This code can be completely turned off by just defining these macros to white space. */ #ifndef TX_TIMER_PROCESS_IN_ISR diff --git a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_4444argb/fx_api.h b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_4444argb/fx_api.h index ba10d464..a0b0b180 100644 --- a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_4444argb/fx_api.h +++ b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_4444argb/fx_api.h @@ -50,49 +50,6 @@ /* All service prototypes and data structure definitions are defined */ /* in this file. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-12-2005 William E. Lamie Initial Version 5.0 */ -/* 07-18-2007 William E. Lamie Modified comment(s), changed */ -/* the default file and path */ -/* length to 256, added burst */ -/* cache disable flags to the */ -/* media and file structures, */ -/* added boot signature offset */ -/* for FAT32, added volume ID */ -/* offset for FAT32, changed */ -/* size of rename buffer, and */ -/* changed UL to ULONG cast, */ -/* resulting in version 5.1 */ -/* 03-01-2009 William E. Lamie Modified comment(s), added */ -/* logic for trace support, */ -/* added macros to override */ -/* interrupt protection in */ -/* port files to simply use */ -/* ThreadX interrupt macros, */ -/* resulting in version 5.2 */ -/* 11-01-2015 William E. Lamie Modified comment(s), added */ -/* major/minor release defines,*/ -/* added support for exFAT, */ -/* added fault tolerant */ -/* support, changed the initial*/ -/* date, and added new APIs, */ -/* resulting in version 5.3 */ -/* 04-15-2016 William E. Lamie Modified comment(s), */ -/* defined the update rate of */ -/* system timer, */ -/* resulting in version 5.4 */ -/* 04-03-2017 William E. Lamie Modified comment(s), added */ -/* conditional around maximum */ -/* path define, and added */ -/* default defines for */ -/* port-specific macros, added */ -/* a macro to disable warning */ -/* of parameter not used, */ -/* resulting in version 5.5 */ -/* */ /**************************************************************************/ #ifndef FX_API_H diff --git a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_4444argb/fx_port.h b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_4444argb/fx_port.h index 16d1729a..727f5321 100644 --- a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_4444argb/fx_port.h +++ b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_4444argb/fx_port.h @@ -52,13 +52,6 @@ /* various entries in the boot record, and directory entries are */ /* defined in this file. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-12-2011 William E. Lamie Initial Cortex-M4/IAR */ -/* Support Version 5.0 */ -/* */ /**************************************************************************/ #ifndef FX_PORT_H @@ -70,7 +63,7 @@ #ifdef FX_INCLUDE_USER_DEFINE_FILE -/* Yes, include the user defines in fx_user.h. The defines in this file may +/* Yes, include the user defines in fx_user.h. The defines in this file may alternately be defined on the command line. */ #include "fx_user.h" @@ -84,7 +77,7 @@ /* Define FileX internal protection macros. If FX_SINGLE_THREAD is defined, these protection macros are effectively disabled. However, for multi-thread - uses, the macros are setup to utilize a ThreadX mutex for multiple thread + uses, the macros are setup to utilize a ThreadX mutex for multiple thread access control into an open media. */ #ifdef FX_SINGLE_THREAD @@ -105,8 +98,8 @@ #define FX_RESTORE_INTS tx_interrupt_control(old_interrupt_posture); -/* Define the error checking logic to determine if there is a caller error in the FileX API. - The default definitions assume ThreadX is being used. This code can be completely turned +/* Define the error checking logic to determine if there is a caller error in the FileX API. + The default definitions assume ThreadX is being used. This code can be completely turned off by just defining these macros to white space. */ #ifndef TX_TIMER_PROCESS_IN_ISR diff --git a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_4bpp/fx_api.h b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_4bpp/fx_api.h index ba10d464..a0b0b180 100644 --- a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_4bpp/fx_api.h +++ b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_4bpp/fx_api.h @@ -50,49 +50,6 @@ /* All service prototypes and data structure definitions are defined */ /* in this file. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-12-2005 William E. Lamie Initial Version 5.0 */ -/* 07-18-2007 William E. Lamie Modified comment(s), changed */ -/* the default file and path */ -/* length to 256, added burst */ -/* cache disable flags to the */ -/* media and file structures, */ -/* added boot signature offset */ -/* for FAT32, added volume ID */ -/* offset for FAT32, changed */ -/* size of rename buffer, and */ -/* changed UL to ULONG cast, */ -/* resulting in version 5.1 */ -/* 03-01-2009 William E. Lamie Modified comment(s), added */ -/* logic for trace support, */ -/* added macros to override */ -/* interrupt protection in */ -/* port files to simply use */ -/* ThreadX interrupt macros, */ -/* resulting in version 5.2 */ -/* 11-01-2015 William E. Lamie Modified comment(s), added */ -/* major/minor release defines,*/ -/* added support for exFAT, */ -/* added fault tolerant */ -/* support, changed the initial*/ -/* date, and added new APIs, */ -/* resulting in version 5.3 */ -/* 04-15-2016 William E. Lamie Modified comment(s), */ -/* defined the update rate of */ -/* system timer, */ -/* resulting in version 5.4 */ -/* 04-03-2017 William E. Lamie Modified comment(s), added */ -/* conditional around maximum */ -/* path define, and added */ -/* default defines for */ -/* port-specific macros, added */ -/* a macro to disable warning */ -/* of parameter not used, */ -/* resulting in version 5.5 */ -/* */ /**************************************************************************/ #ifndef FX_API_H diff --git a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_4bpp/fx_port.h b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_4bpp/fx_port.h index 16d1729a..727f5321 100644 --- a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_4bpp/fx_port.h +++ b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_4bpp/fx_port.h @@ -52,13 +52,6 @@ /* various entries in the boot record, and directory entries are */ /* defined in this file. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-12-2011 William E. Lamie Initial Cortex-M4/IAR */ -/* Support Version 5.0 */ -/* */ /**************************************************************************/ #ifndef FX_PORT_H @@ -70,7 +63,7 @@ #ifdef FX_INCLUDE_USER_DEFINE_FILE -/* Yes, include the user defines in fx_user.h. The defines in this file may +/* Yes, include the user defines in fx_user.h. The defines in this file may alternately be defined on the command line. */ #include "fx_user.h" @@ -84,7 +77,7 @@ /* Define FileX internal protection macros. If FX_SINGLE_THREAD is defined, these protection macros are effectively disabled. However, for multi-thread - uses, the macros are setup to utilize a ThreadX mutex for multiple thread + uses, the macros are setup to utilize a ThreadX mutex for multiple thread access control into an open media. */ #ifdef FX_SINGLE_THREAD @@ -105,8 +98,8 @@ #define FX_RESTORE_INTS tx_interrupt_control(old_interrupt_posture); -/* Define the error checking logic to determine if there is a caller error in the FileX API. - The default definitions assume ThreadX is being used. This code can be completely turned +/* Define the error checking logic to determine if there is a caller error in the FileX API. + The default definitions assume ThreadX is being used. This code can be completely turned off by just defining these macros to white space. */ #ifndef TX_TIMER_PROCESS_IN_ISR diff --git a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_8bit_palette/fx_api.h b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_8bit_palette/fx_api.h index ba10d464..a0b0b180 100644 --- a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_8bit_palette/fx_api.h +++ b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_8bit_palette/fx_api.h @@ -50,49 +50,6 @@ /* All service prototypes and data structure definitions are defined */ /* in this file. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-12-2005 William E. Lamie Initial Version 5.0 */ -/* 07-18-2007 William E. Lamie Modified comment(s), changed */ -/* the default file and path */ -/* length to 256, added burst */ -/* cache disable flags to the */ -/* media and file structures, */ -/* added boot signature offset */ -/* for FAT32, added volume ID */ -/* offset for FAT32, changed */ -/* size of rename buffer, and */ -/* changed UL to ULONG cast, */ -/* resulting in version 5.1 */ -/* 03-01-2009 William E. Lamie Modified comment(s), added */ -/* logic for trace support, */ -/* added macros to override */ -/* interrupt protection in */ -/* port files to simply use */ -/* ThreadX interrupt macros, */ -/* resulting in version 5.2 */ -/* 11-01-2015 William E. Lamie Modified comment(s), added */ -/* major/minor release defines,*/ -/* added support for exFAT, */ -/* added fault tolerant */ -/* support, changed the initial*/ -/* date, and added new APIs, */ -/* resulting in version 5.3 */ -/* 04-15-2016 William E. Lamie Modified comment(s), */ -/* defined the update rate of */ -/* system timer, */ -/* resulting in version 5.4 */ -/* 04-03-2017 William E. Lamie Modified comment(s), added */ -/* conditional around maximum */ -/* path define, and added */ -/* default defines for */ -/* port-specific macros, added */ -/* a macro to disable warning */ -/* of parameter not used, */ -/* resulting in version 5.5 */ -/* */ /**************************************************************************/ #ifndef FX_API_H diff --git a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_8bit_palette/fx_port.h b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_8bit_palette/fx_port.h index 16d1729a..727f5321 100644 --- a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_8bit_palette/fx_port.h +++ b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_8bit_palette/fx_port.h @@ -52,13 +52,6 @@ /* various entries in the boot record, and directory entries are */ /* defined in this file. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-12-2011 William E. Lamie Initial Cortex-M4/IAR */ -/* Support Version 5.0 */ -/* */ /**************************************************************************/ #ifndef FX_PORT_H @@ -70,7 +63,7 @@ #ifdef FX_INCLUDE_USER_DEFINE_FILE -/* Yes, include the user defines in fx_user.h. The defines in this file may +/* Yes, include the user defines in fx_user.h. The defines in this file may alternately be defined on the command line. */ #include "fx_user.h" @@ -84,7 +77,7 @@ /* Define FileX internal protection macros. If FX_SINGLE_THREAD is defined, these protection macros are effectively disabled. However, for multi-thread - uses, the macros are setup to utilize a ThreadX mutex for multiple thread + uses, the macros are setup to utilize a ThreadX mutex for multiple thread access control into an open media. */ #ifdef FX_SINGLE_THREAD @@ -105,8 +98,8 @@ #define FX_RESTORE_INTS tx_interrupt_control(old_interrupt_posture); -/* Define the error checking logic to determine if there is a caller error in the FileX API. - The default definitions assume ThreadX is being used. This code can be completely turned +/* Define the error checking logic to determine if there is a caller error in the FileX API. + The default definitions assume ThreadX is being used. This code can be completely turned off by just defining these macros to white space. */ #ifndef TX_TIMER_PROCESS_IN_ISR diff --git a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_monochrome/fx_api.h b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_monochrome/fx_api.h index ba10d464..a0b0b180 100644 --- a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_monochrome/fx_api.h +++ b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_monochrome/fx_api.h @@ -50,49 +50,6 @@ /* All service prototypes and data structure definitions are defined */ /* in this file. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-12-2005 William E. Lamie Initial Version 5.0 */ -/* 07-18-2007 William E. Lamie Modified comment(s), changed */ -/* the default file and path */ -/* length to 256, added burst */ -/* cache disable flags to the */ -/* media and file structures, */ -/* added boot signature offset */ -/* for FAT32, added volume ID */ -/* offset for FAT32, changed */ -/* size of rename buffer, and */ -/* changed UL to ULONG cast, */ -/* resulting in version 5.1 */ -/* 03-01-2009 William E. Lamie Modified comment(s), added */ -/* logic for trace support, */ -/* added macros to override */ -/* interrupt protection in */ -/* port files to simply use */ -/* ThreadX interrupt macros, */ -/* resulting in version 5.2 */ -/* 11-01-2015 William E. Lamie Modified comment(s), added */ -/* major/minor release defines,*/ -/* added support for exFAT, */ -/* added fault tolerant */ -/* support, changed the initial*/ -/* date, and added new APIs, */ -/* resulting in version 5.3 */ -/* 04-15-2016 William E. Lamie Modified comment(s), */ -/* defined the update rate of */ -/* system timer, */ -/* resulting in version 5.4 */ -/* 04-03-2017 William E. Lamie Modified comment(s), added */ -/* conditional around maximum */ -/* path define, and added */ -/* default defines for */ -/* port-specific macros, added */ -/* a macro to disable warning */ -/* of parameter not used, */ -/* resulting in version 5.5 */ -/* */ /**************************************************************************/ #ifndef FX_API_H diff --git a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_monochrome/fx_port.h b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_monochrome/fx_port.h index 16d1729a..727f5321 100644 --- a/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_monochrome/fx_port.h +++ b/test/example_internal/screenshot_to_bitmap/screenshot_to_bitmap_monochrome/fx_port.h @@ -52,13 +52,6 @@ /* various entries in the boot record, and directory entries are */ /* defined in this file. */ /* */ -/* RELEASE HISTORY */ -/* */ -/* DATE NAME DESCRIPTION */ -/* */ -/* 12-12-2011 William E. Lamie Initial Cortex-M4/IAR */ -/* Support Version 5.0 */ -/* */ /**************************************************************************/ #ifndef FX_PORT_H @@ -70,7 +63,7 @@ #ifdef FX_INCLUDE_USER_DEFINE_FILE -/* Yes, include the user defines in fx_user.h. The defines in this file may +/* Yes, include the user defines in fx_user.h. The defines in this file may alternately be defined on the command line. */ #include "fx_user.h" @@ -84,7 +77,7 @@ /* Define FileX internal protection macros. If FX_SINGLE_THREAD is defined, these protection macros are effectively disabled. However, for multi-thread - uses, the macros are setup to utilize a ThreadX mutex for multiple thread + uses, the macros are setup to utilize a ThreadX mutex for multiple thread access control into an open media. */ #ifdef FX_SINGLE_THREAD @@ -105,8 +98,8 @@ #define FX_RESTORE_INTS tx_interrupt_control(old_interrupt_posture); -/* Define the error checking logic to determine if there is a caller error in the FileX API. - The default definitions assume ThreadX is being used. This code can be completely turned +/* Define the error checking logic to determine if there is a caller error in the FileX API. + The default definitions assume ThreadX is being used. This code can be completely turned off by just defining these macros to white space. */ #ifndef TX_TIMER_PROCESS_IN_ISR diff --git a/test/guix_test/display_driver/gx_validation_display_driver_1555xrgb.c b/test/guix_test/display_driver/gx_validation_display_driver_1555xrgb.c index 14b12fb3..95667515 100644 --- a/test/guix_test/display_driver/gx_validation_display_driver_1555xrgb.c +++ b/test/guix_test/display_driver/gx_validation_display_driver_1555xrgb.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/test/guix_test/display_driver/gx_validation_display_driver_16bpp.c b/test/guix_test/display_driver/gx_validation_display_driver_16bpp.c index 73072247..a81dbb8d 100644 --- a/test/guix_test/display_driver/gx_validation_display_driver_16bpp.c +++ b/test/guix_test/display_driver/gx_validation_display_driver_16bpp.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/test/guix_test/display_driver/gx_validation_display_driver_1bpp.c b/test/guix_test/display_driver/gx_validation_display_driver_1bpp.c index 3b651955..56af17c3 100644 --- a/test/guix_test/display_driver/gx_validation_display_driver_1bpp.c +++ b/test/guix_test/display_driver/gx_validation_display_driver_1bpp.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/test/guix_test/display_driver/gx_validation_display_driver_32bpp.c b/test/guix_test/display_driver/gx_validation_display_driver_32bpp.c index 4ae43797..7b89b102 100644 --- a/test/guix_test/display_driver/gx_validation_display_driver_32bpp.c +++ b/test/guix_test/display_driver/gx_validation_display_driver_32bpp.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/test/guix_test/display_driver/gx_validation_display_driver_332rgb.c b/test/guix_test/display_driver/gx_validation_display_driver_332rgb.c index b8e3b451..3e642389 100644 --- a/test/guix_test/display_driver/gx_validation_display_driver_332rgb.c +++ b/test/guix_test/display_driver/gx_validation_display_driver_332rgb.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/test/guix_test/display_driver/gx_validation_display_driver_4444argb.c b/test/guix_test/display_driver/gx_validation_display_driver_4444argb.c index 74e9161b..9daa7465 100644 --- a/test/guix_test/display_driver/gx_validation_display_driver_4444argb.c +++ b/test/guix_test/display_driver/gx_validation_display_driver_4444argb.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/test/guix_test/display_driver/gx_validation_display_driver_4bpp_grayscale.c b/test/guix_test/display_driver/gx_validation_display_driver_4bpp_grayscale.c index e1361525..88034c77 100644 --- a/test/guix_test/display_driver/gx_validation_display_driver_4bpp_grayscale.c +++ b/test/guix_test/display_driver/gx_validation_display_driver_4bpp_grayscale.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/test/guix_test/display_driver/gx_validation_display_driver_8bpp.c b/test/guix_test/display_driver/gx_validation_display_driver_8bpp.c index 4032cc14..c241a74f 100644 --- a/test/guix_test/display_driver/gx_validation_display_driver_8bpp.c +++ b/test/guix_test/display_driver/gx_validation_display_driver_8bpp.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/test/guix_test/display_driver/gx_validation_synergy_display_driver_16bpp.c b/test/guix_test/display_driver/gx_validation_synergy_display_driver_16bpp.c index 48e72cd1..018e200d 100644 --- a/test/guix_test/display_driver/gx_validation_synergy_display_driver_16bpp.c +++ b/test/guix_test/display_driver/gx_validation_synergy_display_driver_16bpp.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/test/guix_test/display_driver/gx_validation_synergy_display_driver_32bpp.c b/test/guix_test/display_driver/gx_validation_synergy_display_driver_32bpp.c index b8a4355c..697d6acd 100644 --- a/test/guix_test/display_driver/gx_validation_synergy_display_driver_32bpp.c +++ b/test/guix_test/display_driver/gx_validation_synergy_display_driver_32bpp.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/drivers/gx_display_driver_hardware.h b/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/drivers/gx_display_driver_hardware.h index 6f9dd278..2c84c2d6 100644 --- a/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/drivers/gx_display_driver_hardware.h +++ b/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/drivers/gx_display_driver_hardware.h @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/drivers/gx_display_driver_hardware_24xrgb.c b/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/drivers/gx_display_driver_hardware_24xrgb.c index 104ff44f..6526b640 100644 --- a/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/drivers/gx_display_driver_hardware_24xrgb.c +++ b/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/drivers/gx_display_driver_hardware_24xrgb.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/drivers/gx_display_driver_hardware_565rgb.c b/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/drivers/gx_display_driver_hardware_565rgb.c index 7062190b..151e8ebf 100644 --- a/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/drivers/gx_display_driver_hardware_565rgb.c +++ b/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/drivers/gx_display_driver_hardware_565rgb.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/drivers/gx_touch_driver_hardware_capacitive.c b/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/drivers/gx_touch_driver_hardware_capacitive.c index fdf3cf61..161cb5a7 100644 --- a/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/drivers/gx_touch_driver_hardware_capacitive.c +++ b/test/guix_test/regression_test/tests/iar/9.30.1/validaion_guix_jpeg_decoding/drivers/gx_touch_driver_hardware_capacitive.c @@ -69,8 +69,8 @@ VOID SendPenUpEvent(VOID) } /* - * ReadBuffer [0]: The Byte count (0x0A) - * ReadBuffer [1]: X1 coordinate [15,8] + * ReadBuffer [0]: The Byte count (0x0A) + * ReadBuffer [1]: X1 coordinate [15,8] * ReadBuffer [2]: X1 coordinate [7,0] * ReadBuffer [3]: Y1 coordinate [15,8] * ReadBuffer [4]: Y1 coordinate [7,0] @@ -78,7 +78,7 @@ VOID SendPenUpEvent(VOID) * ReadBuffer [6]: X2 coordinate [7,0] * ReadBuffer [7]: Y2 coordinate [15,8] * ReadBuffer [8]: Y2 coordinate [7,0] - * ReadBuffer [9]: Gesture command (01: Zoom In 02: Zoom out) + * ReadBuffer [9]: Gesture command (01: Zoom In 02: Zoom out) * ReadBuffer [10]: unused byte */ VOID touch_thread_entry(ULONG thread_input) diff --git a/test/guix_test/regression_test/tests/validation_guix_16bpp_horizontal_pixelmap_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_16bpp_horizontal_pixelmap_line_draw.c index dca88da1..323f3986 100644 --- a/test/guix_test/regression_test/tests/validation_guix_16bpp_horizontal_pixelmap_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_16bpp_horizontal_pixelmap_line_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -102,7 +102,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_1bpp_glyph_draw.c b/test/guix_test/regression_test/tests/validation_guix_1bpp_glyph_draw.c index 1e3cfc7e..e31d9237 100644 --- a/test/guix_test/regression_test/tests/validation_guix_1bpp_glyph_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_1bpp_glyph_draw.c @@ -40,7 +40,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_1bpp_horizontal_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_1bpp_horizontal_line_draw.c index 3bead0c9..5f3f11de 100644 --- a/test/guix_test/regression_test/tests/validation_guix_1bpp_horizontal_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_1bpp_horizontal_line_draw.c @@ -40,7 +40,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_1bpp_horizontal_pixelmap_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_1bpp_horizontal_pixelmap_line_draw.c index 7ff0e699..65ba09a8 100644 --- a/test/guix_test/regression_test/tests/validation_guix_1bpp_horizontal_pixelmap_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_1bpp_horizontal_pixelmap_line_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -76,7 +76,7 @@ VOID test_graphics_draw(GX_WINDOW *window) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_1bpp_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_1bpp_pixelmap_draw.c index b0ee3898..d88c1172 100644 --- a/test/guix_test/regression_test/tests/validation_guix_1bpp_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_1bpp_pixelmap_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -89,7 +89,7 @@ GX_PIXELMAP invalid_map; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_1bpp_pixelmap_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_1bpp_pixelmap_line_draw.c index 65a338e6..0fc4dfd8 100644 --- a/test/guix_test/regression_test/tests/validation_guix_1bpp_pixelmap_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_1bpp_pixelmap_line_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -76,7 +76,7 @@ VOID test_graphics_draw(GX_WINDOW *window) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_1bpp_simple_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_1bpp_simple_line_draw.c index bbe6a9bc..eaac1aeb 100644 --- a/test/guix_test/regression_test/tests/validation_guix_1bpp_simple_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_1bpp_simple_line_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_32bpp_horizontal_pixelmap_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_32bpp_horizontal_pixelmap_line_draw.c index 0cc61d41..b45c11c0 100644 --- a/test/guix_test/regression_test/tests/validation_guix_32bpp_horizontal_pixelmap_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_32bpp_horizontal_pixelmap_line_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -75,7 +75,7 @@ char *map_string_list[]= }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_32bpp_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_32bpp_pixelmap_draw.c index 6816c984..a7b9bbb4 100644 --- a/test/guix_test/regression_test/tests/validation_guix_32bpp_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_32bpp_pixelmap_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -134,7 +134,7 @@ GX_BRUSH *brush; gx_canvas_pixelmap_draw(xpos, ypos, map); } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_32bpp_simple_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_32bpp_simple_line_draw.c index e9b67018..da58a758 100644 --- a/test/guix_test/regression_test/tests/validation_guix_32bpp_simple_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_32bpp_simple_line_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -88,7 +88,7 @@ GX_DRAW_CONTEXT context; root->gx_window_root_canvas->gx_canvas_display->gx_display_driver_horizontal_pixelmap_line_draw(&context, 34, 200, 1, &info); } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_332rgb_glyph_1bit_draw.c b/test/guix_test/regression_test/tests/validation_guix_332rgb_glyph_1bit_draw.c index 3070cae1..4b9e3f34 100644 --- a/test/guix_test/regression_test/tests/validation_guix_332rgb_glyph_1bit_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_332rgb_glyph_1bit_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -57,7 +57,7 @@ VOID tx_application_define(void *first_unused_memory) #include "demo_all_widgets_332rgb.c" /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_332rgb_glyph_4bit_draw.c b/test/guix_test/regression_test/tests/validation_guix_332rgb_glyph_4bit_draw.c index 9e14e37e..177150a8 100644 --- a/test/guix_test/regression_test/tests/validation_guix_332rgb_glyph_4bit_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_332rgb_glyph_4bit_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -57,7 +57,7 @@ VOID tx_application_define(void *first_unused_memory) #include "demo_all_widgets_332rgb.c" /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_332rgb_horizontal_pixelmap_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_332rgb_horizontal_pixelmap_line_draw.c index 2349bb7f..70cc4d0c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_332rgb_horizontal_pixelmap_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_332rgb_horizontal_pixelmap_line_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -101,7 +101,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_332rgb_pixelmap_blend.c b/test/guix_test/regression_test/tests/validation_guix_332rgb_pixelmap_blend.c index b4634874..de3db037 100644 --- a/test/guix_test/regression_test/tests/validation_guix_332rgb_pixelmap_blend.c +++ b/test/guix_test/regression_test/tests/validation_guix_332rgb_pixelmap_blend.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -88,7 +88,7 @@ GX_PIXELMAP *map; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_332rgb_simple_line_alpha_draw.c b/test/guix_test/regression_test/tests/validation_guix_332rgb_simple_line_alpha_draw.c index 2ac5f94b..7e2f857f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_332rgb_simple_line_alpha_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_332rgb_simple_line_alpha_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -92,7 +92,7 @@ VOID test_line_win_draw(GX_WINDOW *window) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_4444argb_horizontal_pixelmap_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_4444argb_horizontal_pixelmap_line_draw.c index 181b75f1..9f450f9a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_4444argb_horizontal_pixelmap_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_4444argb_horizontal_pixelmap_line_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -99,7 +99,7 @@ VOID test_graphics_draw(GX_WINDOW *window) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_4444argb_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_4444argb_pixelmap_draw.c index e7a9f32d..dfc7aad0 100644 --- a/test/guix_test/regression_test/tests/validation_guix_4444argb_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_4444argb_pixelmap_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -105,7 +105,7 @@ GX_PIXELMAP *map; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_4bpp_canvas_copy.c b/test/guix_test/regression_test/tests/validation_guix_4bpp_canvas_copy.c index 75fe7600..0c9367c3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_4bpp_canvas_copy.c +++ b/test/guix_test/regression_test/tests/validation_guix_4bpp_canvas_copy.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_4bpp_glyph_1bit_draw.c b/test/guix_test/regression_test/tests/validation_guix_4bpp_glyph_1bit_draw.c index c39c6e24..5c69ca5e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_4bpp_glyph_1bit_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_4bpp_glyph_1bit_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_4bpp_glyph_4bit_draw.c b/test/guix_test/regression_test/tests/validation_guix_4bpp_glyph_4bit_draw.c index 8f910c0f..6991c4d2 100644 --- a/test/guix_test/regression_test/tests/validation_guix_4bpp_glyph_4bit_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_4bpp_glyph_4bit_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_4bpp_horizontal_pixelmap_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_4bpp_horizontal_pixelmap_line_draw.c index 775d7db2..a29a02f9 100644 --- a/test/guix_test/regression_test/tests/validation_guix_4bpp_horizontal_pixelmap_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_4bpp_horizontal_pixelmap_line_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ VOID test_graphics_draw(GX_WINDOW *window) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_4bpp_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_4bpp_pixelmap_draw.c index a481a567..f9fe9ff0 100644 --- a/test/guix_test/regression_test/tests/validation_guix_4bpp_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_4bpp_pixelmap_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -101,7 +101,7 @@ GX_PIXELMAP invalid_map; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_4bpp_pixelmap_rotate.c b/test/guix_test/regression_test/tests/validation_guix_4bpp_pixelmap_rotate.c index 06a6d4ab..e91d5044 100644 --- a/test/guix_test/regression_test/tests/validation_guix_4bpp_pixelmap_rotate.c +++ b/test/guix_test/regression_test/tests/validation_guix_4bpp_pixelmap_rotate.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -94,7 +94,7 @@ GX_RESOURCE_ID pixelmap_id_list[]={ char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_4bpp_simple_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_4bpp_simple_line_draw.c index 6db3c257..00c11532 100644 --- a/test/guix_test/regression_test/tests/validation_guix_4bpp_simple_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_4bpp_simple_line_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -85,7 +85,7 @@ VOID test_line_win_draw(GX_WINDOW *window) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_565rgb_palette_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_565rgb_palette_pixelmap_draw.c index 31f695ef..e24aa5e8 100644 --- a/test/guix_test/regression_test/tests/validation_guix_565rgb_palette_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_565rgb_palette_pixelmap_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -120,7 +120,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_565rgb_simple_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_565rgb_simple_line_draw.c index 77afa3f3..c034ff6f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_565rgb_simple_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_565rgb_simple_line_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -101,7 +101,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_8bit_palette_glyph_1bit_draw.c b/test/guix_test/regression_test/tests/validation_guix_8bit_palette_glyph_1bit_draw.c index bd9ad187..536cb7a3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_8bit_palette_glyph_1bit_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_8bit_palette_glyph_1bit_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) extern GX_STUDIO_DISPLAY_INFO all_widgets_8bpp_display_table[]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_8bpp_horizontal_pixelmap_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_8bpp_horizontal_pixelmap_line_draw.c index 03eb9f7a..363062d7 100644 --- a/test/guix_test/regression_test/tests/validation_guix_8bpp_horizontal_pixelmap_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_8bpp_horizontal_pixelmap_line_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -88,7 +88,7 @@ VOID test_graphics_draw(GX_WINDOW *window) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) diff --git a/test/guix_test/regression_test/tests/validation_guix_8bpp_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_8bpp_pixelmap_draw.c index 6f034160..eb4c6229 100644 --- a/test/guix_test/regression_test/tests/validation_guix_8bpp_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_8bpp_pixelmap_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -103,7 +103,7 @@ int ypos; extern GX_STUDIO_DISPLAY_INFO pixelmap_8bpp_display_table[1]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_8bpp_simple_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_8bpp_simple_line_draw.c index 57419dca..c8186ee8 100644 --- a/test/guix_test/regression_test/tests/validation_guix_8bpp_simple_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_8bpp_simple_line_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -116,7 +116,7 @@ GX_BOOL palette_test_failed = GX_FALSE; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_accordion_menu_draw.c b/test/guix_test/regression_test/tests/validation_guix_accordion_menu_draw.c index cfa6f95c..86902db4 100644 --- a/test/guix_test/regression_test/tests/validation_guix_accordion_menu_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_accordion_menu_draw.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_accordion_menu_pen_down_event_process.c b/test/guix_test/regression_test/tests/validation_guix_accordion_menu_pen_down_event_process.c index ee33fbd5..3812eaff 100644 --- a/test/guix_test/regression_test/tests/validation_guix_accordion_menu_pen_down_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_accordion_menu_pen_down_event_process.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_accordion_menu_pen_up_event_process.c b/test/guix_test/regression_test/tests/validation_guix_accordion_menu_pen_up_event_process.c index 7d728774..747d36fb 100644 --- a/test/guix_test/regression_test/tests/validation_guix_accordion_menu_pen_up_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_accordion_menu_pen_up_event_process.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_accordion_menu_position.c b/test/guix_test/regression_test/tests/validation_guix_accordion_menu_position.c index 3aa6ce66..85ff168d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_accordion_menu_position.c +++ b/test/guix_test/regression_test/tests/validation_guix_accordion_menu_position.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_accordion_menu_shift_no_output.c b/test/guix_test/regression_test/tests/validation_guix_accordion_menu_shift_no_output.c index c36d94bb..32a8ff41 100644 --- a/test/guix_test/regression_test/tests/validation_guix_accordion_menu_shift_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_accordion_menu_shift_no_output.c @@ -23,7 +23,7 @@ static VOID control_thread_entry(ULONG); VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_canvas_copy_blend.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_canvas_copy_blend.c index 6113f0cd..642210bc 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_canvas_copy_blend.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_canvas_copy_blend.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ int blend_alpha; for(blend_alpha = 0; blend_alpha < 256 ; blend_alpha++ ) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_image_convert_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_image_convert_screen.c index 0b29bd98..f0dcf605 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_image_convert_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_image_convert_screen.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -68,7 +68,7 @@ extern GX_UBYTE output_color_format; extern GX_BOOL do_color_convert; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_jpeg_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_jpeg_draw.c index 420b4c8a..492ccfef 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_jpeg_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_jpeg_draw.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -90,7 +90,7 @@ GX_PIXELMAP *map; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_pixelmap_draw.c index ee0d348d..89d3aed7 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_pixelmap_draw.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -105,7 +105,7 @@ GX_DRAW_CONTEXT *context; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_png_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_png_draw.c index 7540cb8a..60f58048 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_png_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_png_draw.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -76,7 +76,7 @@ GX_PIXELMAP *map; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_resize_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_resize_screen.c index 2b696a62..998a5731 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_resize_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_resize_screen.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ extern float y_ratio; extern GX_RESOURCE_ID resize_pixelmap_id; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_rotate_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_rotate_screen.c index 5b4719d5..423e1338 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_rotate_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_rotate_screen.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -70,7 +70,7 @@ extern INT rotate_pixelmap_id; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -84,7 +84,7 @@ int id, index; for(angle = 1; angle < 360; angle++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_shapes_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_shapes_screen.c index d5fddd80..fa57ec67 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_shapes_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1555xrgb_shapes_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -63,7 +63,7 @@ extern GX_BOOL pixelmap_fill; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_block_move.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_block_move.c index b1725087..eb73cf0f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_block_move.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_block_move.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -78,7 +78,7 @@ TEST test_list[] = { }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_canvas_animation.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_canvas_animation.c index 308fe3fc..17edc9b8 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_canvas_animation.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_canvas_animation.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_canvas_offset_set.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_canvas_offset_set.c index d45c9560..86dadfff 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_canvas_offset_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_canvas_offset_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -57,7 +57,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_fill_text_color_test.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_fill_text_color_test.c index bf105bbf..15cbdad3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_fill_text_color_test.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_fill_text_color_test.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_generic_shape_fill.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_generic_shape_fill.c index fbab9b29..53400312 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_generic_shape_fill.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_generic_shape_fill.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ extern GX_RESOURCE_ID pixelmap_id[4]; char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_block_move.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_block_move.c index db8ed94d..abcb4468 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_block_move.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_block_move.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -78,7 +78,7 @@ TEST test_list[] = { }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_canvas_copy_blend.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_canvas_copy_blend.c index 5f780500..50c33082 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_canvas_copy_blend.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_canvas_copy_blend.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -69,7 +69,7 @@ int blend_alpha; for(blend_alpha = 0; blend_alpha < 256 ; blend_alpha++ ) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_line_draw.c index f3ee1599..4bd52372 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_line_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -119,7 +119,7 @@ extern int lines_screen_line_angle; extern int lines_screen_line_width; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_pixelmap_draw.c index 2cee65aa..2815f4f5 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_pixelmap_draw.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -142,7 +142,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_resize_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_resize_screen.c index 125dac87..7f7e2165 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_resize_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_resize_screen.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ extern float y_ratio; extern GX_RESOURCE_ID resize_pixelmap_id; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_rotate_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_rotate_screen.c index da347d86..254a8a94 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_rotate_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_rotate_screen.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -70,7 +70,7 @@ extern INT rotate_pixelmap_id; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -84,7 +84,7 @@ int id, index; for(angle = 1; angle < 360; angle++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_shapes_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_shapes_screen.c index 3fe4a596..88580b42 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_shapes_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_270_shapes_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ char test_comment[256]; int test_alpha_list[TEST_ALPHA_CASE] = {0, 100, 255}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_arc_fill.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_arc_fill.c index c5630847..6cfcd80c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_arc_fill.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_arc_fill.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -169,7 +169,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_block_move.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_block_move.c index 7aede899..73003e2d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_block_move.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_block_move.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -87,7 +87,7 @@ static VOID test_canvas_block_move_draw(GX_TEXT_BUTTON *button) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_canvas_copy_blend.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_canvas_copy_blend.c index f2deb352..cd018d5b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_canvas_copy_blend.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_canvas_copy_blend.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -69,7 +69,7 @@ int blend_alpha; for(blend_alpha = 0; blend_alpha < 256 ; blend_alpha++ ) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_ccw_binary.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_ccw_binary.c index 122f0c3a..7f49797b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_ccw_binary.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_ccw_binary.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_ccw_binary_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_ccw_binary_pixelmap_draw.c index 2ee5e00e..67cd747a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_ccw_binary_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_ccw_binary_pixelmap_draw.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -131,7 +131,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_ccw_binary_rotate_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_ccw_binary_rotate_screen.c index 0543fb0d..1bd9b65f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_ccw_binary_rotate_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_ccw_binary_rotate_screen.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -70,7 +70,7 @@ extern INT rotate_pixelmap_id; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -84,7 +84,7 @@ int id, index; for(angle = 1; angle < 360; angle+=10) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_circle_fill.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_circle_fill.c index d3b5edac..70426e97 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_circle_fill.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_circle_fill.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -118,7 +118,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_cw_binary.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_cw_binary.c index e72cd34d..e2023faa 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_cw_binary.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_cw_binary.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_cw_binary_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_cw_binary_pixelmap_draw.c index c659bba3..be60e0f4 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_cw_binary_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_cw_binary_pixelmap_draw.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -131,7 +131,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_cw_binary_rotate_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_cw_binary_rotate_screen.c index 3ce27c1e..69bd8efe 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_cw_binary_rotate_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_cw_binary_rotate_screen.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -70,7 +70,7 @@ extern INT rotate_pixelmap_id; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -84,7 +84,7 @@ int id, index; for(angle = 1; angle < 360; angle+=10) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_ellipse_fill.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_ellipse_fill.c index 008c8d70..8c15634b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_ellipse_fill.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_ellipse_fill.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -118,7 +118,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_glyph_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_glyph_draw.c index dc7dcf27..10febdc1 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_glyph_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_glyph_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -112,7 +112,7 @@ int yoffset; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_horizontal_pixelmap_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_horizontal_pixelmap_line_draw.c index 04e700f1..45ba4846 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_horizontal_pixelmap_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_horizontal_pixelmap_line_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -87,7 +87,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_line_draw.c index ea4f7340..426ab13f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_line_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -184,7 +184,7 @@ extern int lines_screen_line_angle; extern int lines_screen_line_width; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_pie_fill.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_pie_fill.c index cfde3316..d6a29c68 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_pie_fill.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_pie_fill.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -137,7 +137,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_pixelmap_draw.c index bde97bc7..7b4c1b4d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_pixelmap_draw.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -263,7 +263,7 @@ GX_PIXELMAP *pixelmap; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_polygon_fill.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_polygon_fill.c index 24b75f69..ae524250 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_polygon_fill.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_polygon_fill.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -84,7 +84,7 @@ GX_POINT star[11] = { } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_resize_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_resize_screen.c index 2eb9d0a3..a589c50a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_resize_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_resize_screen.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ extern float y_ratio; extern GX_RESOURCE_ID resize_pixelmap_id; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_rotate_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_rotate_screen.c index 51e1f06c..a8188551 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_rotate_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_rotate_screen.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -128,7 +128,7 @@ INT y_axis; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -142,7 +142,7 @@ int id, index; for(angle = 1; angle < 360; angle++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_scroll_wheel_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_scroll_wheel_screen.c index 616b0bd7..06d01493 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_scroll_wheel_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_scroll_wheel_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -57,7 +57,7 @@ VOID tx_application_define(void *first_unused_memory) #include "demo_guix_all_widgets_16bpp_rotated.c" /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_shapes_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_shapes_screen.c index 2f165ef7..20c37649 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_shapes_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_shapes_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ char test_comment[256]; int test_alpha_list[TEST_ALPHA_CASE] = {0, 100, 255}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_sprite.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_sprite.c index 72f260b3..7023a0b3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_sprite.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_sprite.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_vertical_list.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_vertical_list.c index 65e58116..38757fa6 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_vertical_list.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_vertical_list.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ static int test_scroll_values[]={ static char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_wide_line_fill.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_wide_line_fill.c index 035cd772..c442ad40 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_wide_line_fill.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_rotated_wide_line_fill.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -86,7 +86,7 @@ GX_FIXED_POINT *points; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_shapes_screen_pie.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_shapes_screen_pie.c index f9d6063e..3b667c30 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_shapes_screen_pie.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_shapes_screen_pie.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -104,7 +104,7 @@ extern GX_RESOURCE_ID pixelmap_id[4]; static INT brush_alpha_value[] = {0, 155, 255}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_sprite.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_sprite.c index 792a7a5a..134e9131 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_sprite.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_16bpp_sprite.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -57,7 +57,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_block_move.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_block_move.c index 6435eb4f..f895d034 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_block_move.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_block_move.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -78,7 +78,7 @@ TEST test_list[] = { }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_button_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_button_screen.c index 3717249a..605f8206 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_button_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_button_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -66,7 +66,7 @@ static int Mouse_event[] = {GX_EVENT_PEN_DOWN, GX_EVENT_PEN_UP}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -80,7 +80,7 @@ GX_EVENT my_event; { for(Mouse_index = 0; Mouse_index < 2; Mouse_index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_canvas_copy.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_canvas_copy.c index bf041aad..75930674 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_canvas_copy.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_canvas_copy.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ VOID tx_application_define(void *first_unused_memory) /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_image_convert_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_image_convert_screen.c index 9b48a2fa..093fa56b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_image_convert_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_image_convert_screen.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -63,7 +63,7 @@ extern void convert_start(); extern GX_UBYTE image_reader_mode; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_pic_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_pic_screen.c index 0bd15b92..779b32f1 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_pic_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_pic_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -68,7 +68,7 @@ int frame_id = 1; for(pixelmap_id_index = 0; pixelmap_id_index < (INT)(sizeof(pixelmap_id) / sizeof(int)); pixelmap_id_index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_resize_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_resize_screen.c index 8b17ff30..19a5744e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_resize_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_resize_screen.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ extern float y_ratio; extern GX_RESOURCE_ID resize_pixelmap_id; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_rotate_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_rotate_screen.c index a62474db..18d0555b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_rotate_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_rotate_screen.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -70,7 +70,7 @@ extern GX_BOOL direct; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -86,7 +86,7 @@ int direct_index; for(angle= 0; angle < 360; angle++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_shapes_screen_polygon.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_shapes_screen_polygon.c index 047c578b..822c7492 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_shapes_screen_polygon.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_shapes_screen_polygon.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -68,7 +68,7 @@ static INT value[2] = {GX_TRUE,GX_FALSE}; static INT brush_value[] = {0, 3, 10, 20}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -94,7 +94,7 @@ int frame_id = 1; solid_fill = value[b]; /*solid_fill is true or false*/ - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_sliders_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_sliders_screen.c index 94998523..17aa8c1b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_sliders_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_sliders_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -79,7 +79,7 @@ GX_EVENT my_event; { for(x = xpos; x <= xend ; x += increament) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -94,7 +94,7 @@ GX_EVENT my_event; gx_system_event_send(&my_event); - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_text_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_text_screen.c index 46995bf4..3ab71a1f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_text_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_text_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -78,7 +78,7 @@ USHORT key_value; for(pos_index = 0; pos_index < (INT)(sizeof(xpos_value) / sizeof(int)); pos_index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -99,7 +99,7 @@ USHORT key_value; { my_event.gx_event_payload.gx_event_ushortdata[0] = key_value; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_window_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_window_screen.c index 9c91fb56..2ce18aa0 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_window_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_1bpp_window_screen.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -68,7 +68,7 @@ static int Mouse_event[] = {GX_EVENT_PEN_DOWN, GX_EVENT_PEN_UP}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -91,7 +91,7 @@ GX_EVENT my_event; my_event.gx_event_display_handle = 1; gx_system_event_send(&my_event); GX_ENTER_CRITICAL - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw.c index fde90de1..03a71ace 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_binary.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_binary.c index 10fdfcde..8ee49838 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_binary.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_binary.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_block_move.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_block_move.c index 2a8f3725..31208952 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_block_move.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_block_move.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -78,7 +78,7 @@ TEST test_list[] = { }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_canvas_copy_blend.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_canvas_copy_blend.c index fe3e10b7..7220e3bf 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_canvas_copy_blend.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_canvas_copy_blend.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -69,7 +69,7 @@ int blend_alpha; for(blend_alpha = 0; blend_alpha < 256 ; blend_alpha++ ) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_glyph_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_glyph_draw.c index 1ed675b9..f551f533 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_glyph_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_glyph_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -78,7 +78,7 @@ GX_STRING string; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_line_draw.c index 18bc1b33..25a4e09e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_line_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -119,7 +119,7 @@ extern int lines_screen_line_angle; extern int lines_screen_line_width; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_pixelmap_draw.c index bde7b54e..c55879bd 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_pixelmap_draw.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -147,7 +147,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_resize_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_resize_screen.c index 83da2162..a354236f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_resize_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_resize_screen.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ extern float y_ratio; extern GX_RESOURCE_ID resize_pixelmap_id; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_rotate_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_rotate_screen.c index db9ddd63..09813a67 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_rotate_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_rotate_screen.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -70,7 +70,7 @@ extern INT rotate_pixelmap_id; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -84,7 +84,7 @@ int id, index; for(angle = 1; angle < 360; angle++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_shapes_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_shapes_screen.c index 8926cde5..c1d0af3c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_shapes_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_shapes_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -69,7 +69,7 @@ char test_comment[256]; int test_alpha_list[TEST_ALPHA_CASE] = {0, 100, 255}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_vertical_list.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_vertical_list.c index 81fb684a..aa658d84 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_vertical_list.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_ccw_vertical_list.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ static int test_scroll_values[]={ static char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw.c index 31fce2a4..af2e2f50 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_binary.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_binary.c index 3ed7eae0..8542260e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_binary.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_binary.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_block_move.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_block_move.c index 76b573c0..05201f4c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_block_move.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_block_move.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -87,7 +87,7 @@ static VOID test_canvas_block_move_draw(GX_TEXT_BUTTON *button) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_canvas_copy_blend.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_canvas_copy_blend.c index d350fad2..22ac8d31 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_canvas_copy_blend.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_canvas_copy_blend.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -69,7 +69,7 @@ int blend_alpha; for(blend_alpha = 0; blend_alpha < 256 ; blend_alpha++ ) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_glyph_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_glyph_draw.c index 35bddbc2..37283b4d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_glyph_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_glyph_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -111,7 +111,7 @@ int yoffset; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_horizontal_pixelmap_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_horizontal_pixelmap_line_draw.c index 675987a5..1def32bc 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_horizontal_pixelmap_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_horizontal_pixelmap_line_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -89,7 +89,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_line_draw.c index 31dcaf85..2b1bc0d2 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_line_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -184,7 +184,7 @@ extern int lines_screen_line_angle; extern int lines_screen_line_width; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_pixelmap_draw.c index f489b764..ef74885d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_pixelmap_draw.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -219,7 +219,7 @@ GX_PIXELMAP *pixelmap; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_resize_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_resize_screen.c index 77bfb806..53575140 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_resize_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_resize_screen.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ extern float y_ratio; extern GX_RESOURCE_ID resize_pixelmap_id; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_rotate_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_rotate_screen.c index e9230212..6416bd92 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_rotate_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_rotate_screen.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -70,7 +70,7 @@ extern INT rotate_pixelmap_id; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -84,7 +84,7 @@ int id, index; for(angle = 1; angle < 360; angle++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_shapes_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_shapes_screen.c index 2523217b..ed0be76b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_shapes_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_shapes_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -69,7 +69,7 @@ char test_comment[256]; int test_alpha_list[TEST_ALPHA_CASE] = {0, 100, 255}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_sprite.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_sprite.c index be5f91d3..03de37e6 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_sprite.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_sprite.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_vertical_list.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_vertical_list.c index 94466b10..a44be943 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_vertical_list.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_24xrgb_rotated_cw_vertical_list.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ static int test_scroll_values[]={ static char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_pixelmap_draw.c index d203b65f..d5a567d1 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_pixelmap_draw.c @@ -32,7 +32,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -181,7 +181,7 @@ GX_PIXELMAP canvas_map; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_ccw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_ccw.c index e91e14f8..575fa65a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_ccw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_ccw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw.c index 63d0194d..58b75915 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_canvas_copy_blend.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_canvas_copy_blend.c index c667648c..45ff00ad 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_canvas_copy_blend.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_canvas_copy_blend.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -68,7 +68,7 @@ int blend_alpha; for(blend_alpha = 0; blend_alpha < 256 ; blend_alpha++ ) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_glyph_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_glyph_draw.c index 617caa6c..4bdbfd76 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_glyph_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_glyph_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -78,7 +78,7 @@ GX_STRING string; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_line_draw.c index 04b6a88c..e191f492 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_line_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -118,7 +118,7 @@ extern int lines_screen_line_angle; extern int lines_screen_line_width; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_pixelmap_draw.c index 3c440816..0c561231 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_pixelmap_draw.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -144,7 +144,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_resize_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_resize_screen.c index d705b59e..45ae4578 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_resize_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_resize_screen.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ extern float y_ratio; extern GX_RESOURCE_ID resize_pixelmap_id; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_rotate_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_rotate_screen.c index 3a3328dc..8c4df744 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_rotate_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_rotate_screen.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -70,7 +70,7 @@ extern INT rotate_pixelmap_id; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -84,7 +84,7 @@ int id, index; for(angle = 1; angle < 360; angle++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_shapes_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_shapes_screen.c index 5cd5b0af..59658586 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_shapes_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_32argb_rotated_cw_shapes_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -69,7 +69,7 @@ char test_comment[256]; int test_alpha_list[TEST_ALPHA_CASE] = {0, 100, 255}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_button_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_button_screen.c index 579893a1..b4b27815 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_button_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_button_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -66,7 +66,7 @@ static int Mouse_event[] = {GX_EVENT_PEN_DOWN, GX_EVENT_PEN_UP}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -81,7 +81,7 @@ GX_EVENT my_event; { for(Mouse_index = 0; Mouse_index < 2; Mouse_index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_line_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_line_screen.c index 2a8da905..b764e020 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_line_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_line_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -66,7 +66,7 @@ extern VOID calculate_line_ends(VOID); extern GX_WINDOW *pLineWin; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -87,7 +87,7 @@ GX_RECTANGLE size; { if(pattern_index) line_pattern = 0x0f0f0f0f; else line_pattern = 0; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -122,7 +122,7 @@ GX_RECTANGLE size; for(round_end = 0; round_end <= 1; round_end ++) { rounded = round_end; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -157,7 +157,7 @@ GX_RECTANGLE size; for(round_end = 0; round_end <= 1; round_end ++) { rounded = round_end; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_pixelmap_blend.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_pixelmap_blend.c index 97f8107a..ec1851a0 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_pixelmap_blend.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_pixelmap_blend.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -116,7 +116,7 @@ void window_draw_func(GX_WINDOW *win) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -145,7 +145,7 @@ GX_RECTANGLE size; for(alpha_index = 0; alpha_index <= 255; alpha_index+=51) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_pixelmap_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_pixelmap_screen.c index 318aceb3..b92ef4c4 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_pixelmap_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_pixelmap_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -63,7 +63,7 @@ static int compressed_value[] = {GX_TRUE, GX_FALSE}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -77,7 +77,7 @@ int frame_id = 1; for(compressed_index = 0; compressed_index < 2; compressed_index++) { compress = compressed_value[compressed_index]; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_resize_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_resize_screen.c index e16f6a93..994e9c7a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_resize_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_resize_screen.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -71,7 +71,7 @@ extern float y_ratio; extern GX_RESOURCE_ID resize_pixelmap_id; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_rotate_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_rotate_screen.c index 182c4f34..bff722dd 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_rotate_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_rotate_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -68,7 +68,7 @@ extern GX_BOOL direct; /*rotate angles*/ char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_shapes_screen_circles.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_shapes_screen_circles.c index 8460fe1b..2fdc6af1 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_shapes_screen_circles.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_shapes_screen_circles.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -75,7 +75,7 @@ extern GX_RESOURCE_ID fill_pixelmap_id[4]; extern GX_UBYTE brush_alpha; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -112,7 +112,7 @@ int frame_id = 1; for(pixelmap_id_index = 0; pixelmap_id_index < (INT)(sizeof(fill_pixelmap_id)/sizeof(GX_RESOURCE_ID)); pixelmap_id_index++) { fill_pixelmap_index = pixelmap_id_index; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -139,7 +139,7 @@ int frame_id = 1; } else { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_shapes_screen_ellipse.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_shapes_screen_ellipse.c index 1dd7fa68..88c883df 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_shapes_screen_ellipse.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_shapes_screen_ellipse.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ extern INT fill_pixelmap_index; extern GX_RESOURCE_ID fill_pixelmap_id[4]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_sprite_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_sprite_screen.c index 6b2f4156..8622aa27 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_sprite_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_sprite_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ extern GX_UBYTE alpha_value; extern GX_RESOURCE_ID map_id; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -74,7 +74,7 @@ int frame_id = 1; for(alpha = 0; alpha <= 255; alpha+=51) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -98,7 +98,7 @@ int frame_id = 1; for(alpha = 0; alpha <= 255; alpha+=51) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_window_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_window_screen.c index 89762ce1..c1825cbd 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_window_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_332rgb_window_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ static int click_ypos[] = {280, 350, 300, 320}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -80,7 +80,7 @@ GX_EVENT my_event; for(index = 0; index < (INT)(sizeof(scroll_xvalue)/sizeof(int)); index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -109,7 +109,7 @@ GX_EVENT my_event; for(index = 0; index < (INT)(sizeof(click_xpos)/sizeof(int)); index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4444argb_image_convert_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4444argb_image_convert_screen.c index 87d3e18a..ae46c79d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4444argb_image_convert_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4444argb_image_convert_screen.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ extern GX_UBYTE image_reader_mode; extern GX_UBYTE output_color_format; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4444argb_resize_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4444argb_resize_screen.c index 1eccf74b..10534b4e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4444argb_resize_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4444argb_resize_screen.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ extern float y_ratio; extern GX_RESOURCE_ID resize_pixelmap_id; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4444argb_rotate_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4444argb_rotate_screen.c index 2bc04e60..00a4837d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4444argb_rotate_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4444argb_rotate_screen.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -70,7 +70,7 @@ extern INT rotate_pixelmap_id; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -95,7 +95,7 @@ int index; { direct = GX_FALSE; } - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4444argb_shapes_screen_arc.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4444argb_shapes_screen_arc.c index 70907ba7..87a8b09e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4444argb_shapes_screen_arc.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4444argb_shapes_screen_arc.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -97,7 +97,7 @@ char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_block_move.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_block_move.c index e8643ea5..dfd3063a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_block_move.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_block_move.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -77,7 +77,7 @@ TEST test_list[] = { {GX_NULL, 0, 0, 0} }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_button_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_button_screen.c index 1f6add21..038e960c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_button_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_button_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ static int Mouse_event[] = {GX_EVENT_PEN_DOWN, GX_EVENT_PEN_UP}; extern ULONG palette_4bpp_grayscale[16]; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -82,7 +82,7 @@ GX_EVENT my_event; { for(Mouse_index = 0; Mouse_index < 2; Mouse_index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_generic_arc_fill.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_generic_arc_fill.c index 8015c42b..8be337d7 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_generic_arc_fill.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_generic_arc_fill.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ extern GX_BOOL pixelmap_fill; extern INT draw_shape; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_horizontal_pixelmap_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_horizontal_pixelmap_line_draw.c index 31bedfd8..b1a7784f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_horizontal_pixelmap_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_horizontal_pixelmap_line_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -69,7 +69,7 @@ static INT value[2] = {GX_TRUE,GX_FALSE}; static INT radius_value[] = {0, 1, 10, 100, 300}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -97,7 +97,7 @@ int frame_id = 1; solid_fill = value[b]; /*solid_fill is true or false*/ - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_image_convert_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_image_convert_screen.c index 16b3f379..bf2ff0ed 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_image_convert_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_image_convert_screen.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -63,7 +63,7 @@ extern void convert_start(); extern GX_UBYTE image_reader_mode; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_line_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_line_screen.c index 809bb387..6e2ad9e1 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_line_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_line_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ extern VOID calculate_line_ends(VOID); extern GX_WINDOW *pLineWin; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -88,7 +88,7 @@ GX_RECTANGLE size; { if(pattern_index) line_pattern = 0x0f0f0f0f; else line_pattern = 0; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -121,7 +121,7 @@ GX_RECTANGLE size; { rounded = round_end; line_pattern = 0; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -154,7 +154,7 @@ GX_RECTANGLE size; { rounded = round_end; line_pattern = 0; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_resize_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_resize_screen.c index 15120fb1..a0e1a288 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_resize_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_resize_screen.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -73,7 +73,7 @@ extern float y_ratio; extern GX_RESOURCE_ID resize_pixelmap_id; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_rotate_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_rotate_screen.c index 48b9a504..c4e4f977 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_rotate_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_rotate_screen.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -71,7 +71,7 @@ extern GX_BOOL direct; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -88,7 +88,7 @@ int index; for(angle = 0; angle < 360; angle++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_shapes_screen_ellipse.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_shapes_screen_ellipse.c index 887a4f6d..99269349 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_shapes_screen_ellipse.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_shapes_screen_ellipse.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -71,7 +71,7 @@ static INT brush_value[] = {0, 3, 10, 20}; static INT radius_value[] = {1, 10, 100, 200}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -102,7 +102,7 @@ int frame_id = 1; solid_fill = value[b]; /*solid_fill is true or false*/ - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_sliders_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_sliders_screen.c index d6034b75..5533163c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_sliders_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_sliders_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -80,7 +80,7 @@ GX_EVENT my_event; { for(x = xpos; x <= xend ; x += increament) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -96,7 +96,7 @@ GX_EVENT my_event; gx_system_event_send(&my_event); - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_sprite.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_sprite.c index 1d179070..f43404a6 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_sprite.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_sprite.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -63,7 +63,7 @@ extern ULONG palette_4bpp_grayscale[16]; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_sprite_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_sprite_screen.c index 5c8455e2..2bf242cc 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_sprite_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_sprite_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ extern ULONG palette_4bpp_grayscale[16]; extern GX_UBYTE alpha_value; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -73,7 +73,7 @@ int i; for(i = 0; i <= 255; i+= 51) { alpha_value = i; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_text_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_text_draw.c index 1043b0ce..3b28bd0f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_text_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_text_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -62,7 +62,7 @@ VOID tx_application_define(void *first_unused_memory) extern ULONG palette_4bpp_grayscale[16]; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -71,7 +71,7 @@ int frame_id = 1; gx_validation_write_palette((ULONG *)palette_4bpp_grayscale, 16); ToggleScreen(pTextScreen, pSpriteScreen); - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_window_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_window_screen.c index be10dad3..031b847b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_window_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_4bpp_window_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ static int Mouse_event[] = {GX_EVENT_PEN_DOWN, GX_EVENT_PEN_UP}; extern ULONG palette_4bpp_grayscale[16]; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -91,7 +91,7 @@ GX_EVENT my_event; my_event.gx_event_display_handle = 1; gx_system_event_send(&my_event); } - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_565bgr.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_565bgr.c index 0cb64bdd..bac47ff5 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_565bgr.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_565bgr.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_565bgr_gauge_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_565bgr_gauge_screen.c index c4b0b867..2ab180ac 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_565bgr_gauge_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_565bgr_gauge_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_565bgr_resize_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_565bgr_resize_screen.c index d38d89bf..e15325ee 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_565bgr_resize_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_565bgr_resize_screen.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ extern float y_ratio; extern GX_RESOURCE_ID resize_pixelmap_id; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_565bgr_rotate_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_565bgr_rotate_screen.c index bec37cda..5d028474 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_565bgr_rotate_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_565bgr_rotate_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ extern GX_BOOL direct; extern INT angle; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_565rgb_pixelmap_rotate.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_565rgb_pixelmap_rotate.c index 7f6df922..168bd49d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_565rgb_pixelmap_rotate.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_565rgb_pixelmap_rotate.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -84,7 +84,7 @@ GX_RECTANGLE win_size; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -102,7 +102,7 @@ int frame_id = 1; for(angle = 30; angle <= 90; angle += 60) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_565rgb_rotate_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_565rgb_rotate_screen.c index 5e027668..07033662 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_565rgb_rotate_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_565rgb_rotate_screen.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -66,7 +66,7 @@ extern INT rotate_pixelmap_index; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -77,7 +77,7 @@ int index; for(rotate_pixelmap_index = 1; rotate_pixelmap_index < 3; rotate_pixelmap_index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_block_move.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_block_move.c index 05cf3457..7cfbfad4 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_block_move.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_block_move.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -80,7 +80,7 @@ TEST test_list[] = { extern GX_STUDIO_DISPLAY_INFO all_widgets_8bpp_display_table[]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotate_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotate_screen.c index ed2ac918..15494a1d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotate_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotate_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ char test_comment[255]; extern GX_STUDIO_DISPLAY_INFO all_widgets_8bpp_display_table[]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -86,7 +86,7 @@ static VOID control_thread_entry(ULONG input) for(rotate_angle = 1; rotate_angle < 360; rotate_angle++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw.c index ada5ebe4..188b8b7e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -73,7 +73,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_binary.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_binary.c index 81f5503c..a8fa3228 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_binary.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_binary.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -71,7 +71,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_block_move.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_block_move.c index 5ccbe1ea..8d94e0b4 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_block_move.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_block_move.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -80,7 +80,7 @@ TEST test_list[] = { }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_canvas_copy.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_canvas_copy.c index c58adaac..3f0becb6 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_canvas_copy.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_canvas_copy.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_line_draw.c index ef507ef1..838cbd48 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_line_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -116,7 +116,7 @@ GX_RECTANGLE *size = &window->gx_widget_size; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_pixelmap_draw.c index ed835a89..790f551e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_pixelmap_draw.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -123,7 +123,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_pixelmap_fill.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_pixelmap_fill.c index 934e9163..afccc5f0 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_pixelmap_fill.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_pixelmap_fill.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ extern INT end_angle; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_resize_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_resize_screen.c index ed13c6c5..b14c0c9c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_resize_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_resize_screen.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -74,7 +74,7 @@ extern float y_ratio; extern GX_RESOURCE_ID resize_pixelmap_id; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_rotate_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_rotate_screen.c index b099581e..1837c8c4 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_rotate_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_ccw_rotate_screen.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -71,7 +71,7 @@ extern INT rotate_pixelmap_id; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -90,7 +90,7 @@ GX_CONST GX_THEME *theme_ptr; for(angle = 1; angle < 360; angle++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw.c index f94f3fd2..05200fc9 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -73,7 +73,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_binary.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_binary.c index 3d451873..eb9f011e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_binary.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_binary.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -71,7 +71,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_block_move.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_block_move.c index f36ea0c8..87066fde 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_block_move.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_block_move.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -88,7 +88,7 @@ TEST test_list[] = { }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_canvas_copy.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_canvas_copy.c index 88da49b8..cd61b103 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_canvas_copy.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_canvas_copy.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_glyph_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_glyph_draw.c index 5cc58125..cba97014 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_glyph_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_glyph_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -99,7 +99,7 @@ int yoffset; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_horizontal_pixelmap_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_horizontal_pixelmap_line_draw.c index bb8af8e0..f5584f4a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_horizontal_pixelmap_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_horizontal_pixelmap_line_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -80,7 +80,7 @@ VOID test_graphics_draw(GX_WINDOW *window) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_line_draw.c index bc591414..8d1b253d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_line_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -181,7 +181,7 @@ int xstart, xend, ystart, yend; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_pixelmap_draw.c index b0233308..a7c3015f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_pixelmap_draw.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -151,7 +151,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_pixelmap_fill.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_pixelmap_fill.c index 27c97d7c..fa46e3bc 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_pixelmap_fill.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_pixelmap_fill.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ extern INT end_angle; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_resize_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_resize_screen.c index f7f6bb30..53120f12 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_resize_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_resize_screen.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -74,7 +74,7 @@ extern float y_ratio; extern GX_RESOURCE_ID resize_pixelmap_id; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_rotate_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_rotate_screen.c index 521fbcd2..afe59935 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_rotate_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_rotate_screen.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -71,7 +71,7 @@ extern INT rotate_pixelmap_id; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -90,7 +90,7 @@ GX_CONST GX_THEME *theme_ptr; for(angle = 1; angle < 360; angle++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_vertical_list.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_vertical_list.c index 6ad13473..a9efa892 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_vertical_list.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_8bpp_rotated_cw_vertical_list.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -69,7 +69,7 @@ static int test_scroll_values[]={ static char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_accordion_menu.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_accordion_menu.c index 6c3e9281..0178f274 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_accordion_menu.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_accordion_menu.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_block_move.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_block_move.c index f0e81f42..e4e1ff86 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_block_move.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_block_move.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -78,7 +78,7 @@ TEST test_list[] = { }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_button_event_process.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_button_event_process.c index 41bf813d..24ae080d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_button_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_button_event_process.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_button_repeat.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_button_repeat.c index fb776dc9..e1d1e2fb 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_button_repeat.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_button_repeat.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_button_toggle.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_button_toggle.c index 8ae63dc1..2065d034 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_button_toggle.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_button_toggle.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -69,7 +69,7 @@ TEST test_list[] = { }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_canvas_copy_8bit_palette.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_canvas_copy_8bit_palette.c index bbcc1414..ed85353e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_canvas_copy_8bit_palette.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_canvas_copy_8bit_palette.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ GX_CONST GX_THEME *theme_ptr; for(blend_alpha = 0; blend_alpha < 256 ; blend_alpha+=255) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_canvas_copy_blend.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_canvas_copy_blend.c index 400ffe89..4a97d699 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_canvas_copy_blend.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_canvas_copy_blend.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -65,7 +65,7 @@ int index; for(blend_alpha = 0; blend_alpha < 256 ; blend_alpha++ ) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_canvas_copy_blend_4444argb.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_canvas_copy_blend_4444argb.c index 80977a68..15d571a2 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_canvas_copy_blend_4444argb.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_canvas_copy_blend_4444argb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ int blend_alpha; for(blend_alpha = 0; blend_alpha < 256 ; blend_alpha++ ) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_canvas_copy_blend_565rgb.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_canvas_copy_blend_565rgb.c index 42c7ae5e..410f80fa 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_canvas_copy_blend_565rgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_canvas_copy_blend_565rgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ int blend_alpha; for(blend_alpha = 0; blend_alpha < 256 ; blend_alpha++ ) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_checkbox_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_checkbox_draw.c index 99ae15cf..e44df70c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_checkbox_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_checkbox_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_defined_5_4_0_compatibility.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_defined_5_4_0_compatibility.c index 159d43a9..e09f3b7d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_defined_5_4_0_compatibility.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_defined_5_4_0_compatibility.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_display_color_set.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_display_color_set.c index 245c6747..0fbb0a6e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_display_color_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_display_color_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_drop_list_background_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_drop_list_background_draw.c index 5a3e6e02..14820aae 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_drop_list_background_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_drop_list_background_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_drop_list_event_process.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_drop_list_event_process.c index 8c1111e6..38656768 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_drop_list_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_drop_list_event_process.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_drop_list_pixelmap_set.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_drop_list_pixelmap_set.c index 4a2f5fc7..60b48141 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_drop_list_pixelmap_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_drop_list_pixelmap_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_execute.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_execute.c index 30dc04c1..8e6fa4dc 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_execute.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_execute.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_fold_drag_event.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_fold_drag_event.c index 421aee33..d69bfa2f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_fold_drag_event.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_fold_drag_event.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -76,7 +76,7 @@ GX_WIDGET *searched_widget = GX_NULL; gx_system_widget_find(ID_WINDOW_SCREEN, 1, &searched_widget); // should return GX_SUCCESS gx_system_widget_find(ID_ANIMATION_CANVAS_ROOT_WINDOW + 1, 0, &searched_widget); // should return GX_SUCCESS gx_system_widget_find(ID_ANIMATION_CANVAS_ROOT_WINDOW, 0, &searched_widget); // should return GX_SUCCESS - gx_system_widget_find(ID_WINDOW_SCREEN, 1, &searched_widget); // should return GX_SUCCESS + gx_system_widget_find(ID_WINDOW_SCREEN, 1, &searched_widget); // should return GX_SUCCESS memset(&my_event, 0, sizeof(GX_EVENT)); my_event.gx_event_payload.gx_event_pointdata.gx_point_x = PEN_START_X; diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_gauge_animation.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_gauge_animation.c index 54a58d49..48be10e6 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_gauge_animation.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_gauge_animation.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -57,7 +57,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_gx_system_string_width_get_no_output.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_gx_system_string_width_get_no_output.c index c711c9c3..65008001 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_gx_system_string_width_get_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_gx_system_string_width_get_no_output.c @@ -22,7 +22,7 @@ static VOID control_thread_entry(ULONG); VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_h_pixelmap_slider_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_h_pixelmap_slider_16bpp.c index 2a523f04..c0b0c945 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_h_pixelmap_slider_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_h_pixelmap_slider_16bpp.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ int increment[] = {5, 10}; int new_pos; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -141,7 +141,7 @@ GX_RECTANGLE new_size; { for(pos = slider_left; pos <= slider_right; pos += 20) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_h_slider_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_h_slider_16bpp.c index 01f11fe8..1475c0f8 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_h_slider_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_h_slider_16bpp.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ int increment[] = {5, 10}; int new_pos; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -148,7 +148,7 @@ GX_RECTANGLE new_size; { for(pos = slider_left; pos <= slider_right; pos += 20) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_horizontal_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_horizontal_32bpp.c index c50c38f2..238a2aea 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_horizontal_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_horizontal_32bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -88,7 +88,7 @@ GX_EVENT my_event; ToggleScreen(pWindowScreen,pIndicatorScreen); gx_validation_screen_refresh(); - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation.*/ gx_validation_set_frame_id(frame_id); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_icon_alignment.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_icon_alignment.c index a7e2d159..a9ba6ed3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_icon_alignment.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_icon_alignment.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_icon_button_alignment.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_icon_button_alignment.c index cb466c4f..e44a39b5 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_icon_button_alignment.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_icon_button_alignment.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_ml_input_cursor_animation.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_ml_input_cursor_animation.c index 8c78807b..e79ba326 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_ml_input_cursor_animation.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_ml_input_cursor_animation.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_ml_text_button.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_ml_text_button.c index 3c6f3a61..9aab3df5 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_ml_text_button.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_ml_text_button.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_ml_text_input_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_ml_text_input_16bpp.c index 3f4c4fa7..eddf929e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_ml_text_input_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_ml_text_input_16bpp.c @@ -8,7 +8,7 @@ TEST_PARAM test_parameter = { "guix_all_widgets_ml_text_input_16bpp", /* Test name */ 311, 232, 582, 404 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -63,7 +63,7 @@ static USHORT noprint_key_value[] = {GX_KEY_SPACE, GX_KEY_SELECT}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -101,7 +101,7 @@ USHORT key_value; { my_event.gx_event_payload.gx_event_ushortdata[0] = key_value; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_ml_text_input_cursor_draw_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_ml_text_input_cursor_draw_16bpp.c index 66b3c047..4384777f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_ml_text_input_cursor_draw_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_ml_text_input_cursor_draw_16bpp.c @@ -8,7 +8,7 @@ TEST_PARAM test_parameter = { "guix_all_widgets_ml_text_input_cursor_draw_16bpp", /* Test name */ 311, 232, 582, 404 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -77,7 +77,7 @@ GX_KEY_RIGHT_ARROW, GX_KEY_DOWN_ARROW, GX_KEY_END}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_ml_text_view_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_ml_text_view_16bpp.c index 5458ebcd..1f373ff9 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_ml_text_view_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_ml_text_view_16bpp.c @@ -8,7 +8,7 @@ TEST_PARAM test_parameter = { "guix_all_widgets_ml_text_view_16bpp", /* Test name */ 46, 232, 316, 404 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text view drawing area. */ }; @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text view example. These operations simulate + on the multi line text view example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ static char *text_array[] = {text_1, text_2, text_3, text_4, text_5, text_6, tex char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -88,7 +88,7 @@ TEXT_SCREEN_CONTROL_BLOCK *text_screen; gx_multi_line_text_view_text_color_set(&text_screen -> text_screen_text_view_1, GX_COLOR_ID_ORANGE, GX_COLOR_ID_ORANGE, GX_COLOR_ID_ORANGE); for(text_index = 0; text_index < 8; text_index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_multi_line_text_input_style_add.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_multi_line_text_input_style_add.c index 740823e4..11cb85a9 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_multi_line_text_input_style_add.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_multi_line_text_input_style_add.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -62,7 +62,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256] = "Test for multi line text input style."; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_multi_line_text_view_scroll.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_multi_line_text_view_scroll.c index d3c7abbb..2f473bee 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_multi_line_text_view_scroll.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_multi_line_text_view_scroll.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ char test_comment[255]; GX_CHAR text[] = "every year when the autumn comes, there will be a sports meeting in my school. I am so impressed by the opening ceremony. Every class will march on the ground and show their features, which is very funny. Last year, a group of students wore the co-splay dresses. When they showed up, they caught all people’s attention and won the biggest applause. It is a great event for every student, and also a good chance to let students develop their creativity. This year, my class decided to make a big surprise. Everyone has provided their idea and I love the atmosphere. I am so looking forward to the opening ceremony.every year when the autumn comes, there will be a sports meeting in my school. I am so impressed by the opening ceremony. Every class will march on the ground and show their features, which is very funny. Last year, a group of students wore the co-splay dresses. When they showed up, they caught all people’s attention and won the biggest applause. It is a great event for every student, and also a good chance to let students develop their creativity. This year, my class decided to make a big surprise. Everyone has provided their idea and I love the atmosphere. I am so looking forward to the opening ceremony.every year when the autumn comes, there will be a sports meeting in my school. I am so impressed by the opening ceremony. Every class will march on the ground and show their features, which is very funny. Last year, a group of students wore the co-splay dresses. When they showed up, they caught all people’s attention and won the biggest applause. It is a great event for every student, and also a good chance to let students develop their creativity. This year, my class decided to make a big surprise. Everyone has provided their idea and I love the atmosphere. I am so looking forward to the opening ceremony."; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_pixelmap_button_alignment.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_pixelmap_button_alignment.c index 53bf81ea..552fd351 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_pixelmap_button_alignment.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_pixelmap_button_alignment.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_progress_bar_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_progress_bar_32bpp.c index 1d93db9b..760f1917 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_progress_bar_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_progress_bar_32bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -109,7 +109,7 @@ GX_PROGRESS_BAR *progress_bar; for(val = property[property_index].min_value; val < property[property_index].max_value; val += 10) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_progress_bar_background_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_progress_bar_background_draw.c index a268b5d2..53c55766 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_progress_bar_background_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_progress_bar_background_draw.c @@ -35,7 +35,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -63,7 +63,7 @@ char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_progress_bar_info_set.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_progress_bar_info_set.c index d6bd66a7..401b7d67 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_progress_bar_info_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_progress_bar_info_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -70,7 +70,7 @@ GX_PROGRESS_BAR_INFO info = }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_progress_bar_value_set.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_progress_bar_value_set.c index cdab53eb..feabd649 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_progress_bar_value_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_progress_bar_value_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_radial_slider.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_radial_slider.c index 9265a404..07407a98 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_radial_slider.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_radial_slider.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_radial_slider_needle_offset.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_radial_slider_needle_offset.c index 085749e9..6fd3a1b6 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_radial_slider_needle_offset.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_radial_slider_needle_offset.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_radial_slider_property.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_radial_slider_property.c index 6419a0e2..6d7a003b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_radial_slider_property.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_radial_slider_property.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_radio_button_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_radio_button_draw.c index 53f69954..1ba4d70d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_radio_button_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_radio_button_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_root_window_move.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_root_window_move.c index 055b4587..0d41f8b1 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_root_window_move.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_root_window_move.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -92,7 +92,7 @@ GX_RECTANGLE winsize; for(index = 0; index < 10 ; index++ ) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_root_window_operation.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_root_window_operation.c index a9ad0b1c..75c1c418 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_root_window_operation.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_root_window_operation.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_rotate_screen.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_rotate_screen.c index 33865805..9bf0e237 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_rotate_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_rotate_screen.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -70,7 +70,7 @@ extern INT rotate_pixelmap_id; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -85,7 +85,7 @@ int angle; for(angle = 1; angle < 360; angle++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_scroll_wheel_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_scroll_wheel_32bpp.c index d9c11bb9..3c49c5b5 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_scroll_wheel_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_scroll_wheel_32bpp.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_scroll_wheel_event_process.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_scroll_wheel_event_process.c index ab4ad954..1d0a03d4 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_scroll_wheel_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_scroll_wheel_event_process.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_scroll_wheel_flick.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_scroll_wheel_flick.c index c2b3dd7d..68b70fbd 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_scroll_wheel_flick.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_scroll_wheel_flick.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_scroll_wheel_flick_event_process.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_scroll_wheel_flick_event_process.c index ddf0930b..78f22d56 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_scroll_wheel_flick_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_scroll_wheel_flick_event_process.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -83,7 +83,7 @@ static void send_drag_event(int direct) #define down 0 /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_scroll_wheel_select.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_scroll_wheel_select.c index 02413016..e4892957 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_scroll_wheel_select.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_scroll_wheel_select.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_scrollbar_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_scrollbar_16bpp.c index 2d50dad7..35ae783e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_scrollbar_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_scrollbar_16bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the scrollbar drawing example. These operations simulate + on the scrollbar drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_scrollbar_8bpp.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_scrollbar_8bpp.c index 43988805..75120adf 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_scrollbar_8bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_scrollbar_8bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the scrollbar drawing example. These operations simulate + on the scrollbar drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ char test_comment[256]; extern GX_STUDIO_DISPLAY_INFO all_widgets_8bpp_display_table[]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_single_line_text_input_mark.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_single_line_text_input_mark.c index 3caa8544..a26c5139 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_single_line_text_input_mark.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_single_line_text_input_mark.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_single_line_text_input_style_add.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_single_line_text_input_style_add.c index 9cf995d7..c29b6f3b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_single_line_text_input_style_add.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_single_line_text_input_style_add.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -62,7 +62,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256] = "Test for multi line text input style."; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_sl_text_input_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_sl_text_input_16bpp.c index 827ce392..ce31f7e3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_sl_text_input_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_sl_text_input_16bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -71,7 +71,7 @@ static USHORT key_value[] = {GX_KEY_HOME, GX_KEY_DELETE, GX_KEY_RIGHT_ARROW, GX_ char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_sl_text_input_buffer_get.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_sl_text_input_buffer_get.c index 94ce6290..6edacd8f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_sl_text_input_buffer_get.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_sl_text_input_buffer_get.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ static char input_text[] = "single line text input"; char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_sl_text_input_property_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_sl_text_input_property_16bpp.c index 2832248b..bd1c3130 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_sl_text_input_property_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_sl_text_input_property_16bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_slider_create.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_slider_create.c index 401be832..8c66d6d1 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_slider_create.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_slider_create.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -91,7 +91,7 @@ GX_SLIDER_INFO hslider_info = }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_sprite_frame.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_sprite_frame.c index 5970a25f..e551df41 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_sprite_frame.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_sprite_frame.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -85,7 +85,7 @@ GX_SPRITE_FRAME frame_list[3] = }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_flip.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_flip.c index 6d0c7fe2..d6d1ee9a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_flip.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_flip.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_binary.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_binary.c index 0776c17e..0ecc1ca4 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_binary.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_binary.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -68,7 +68,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_binary_glyph_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_binary_glyph_draw.c index 753afb07..fd8de8f3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_binary_glyph_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_binary_glyph_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -65,7 +65,7 @@ int test_font_ids[]={ char comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_binary_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_binary_pixelmap_draw.c index 9dcbada2..60c74fe0 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_binary_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_binary_pixelmap_draw.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -123,7 +123,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_glyph_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_glyph_draw.c index 9484d22b..ad29ce34 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_glyph_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_glyph_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -65,7 +65,7 @@ int test_font_ids[]={ char comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_pixelmap_draw.c index 02574e63..ccc1ed8e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_pixelmap_draw.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -123,7 +123,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_pixelmap_fill.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_pixelmap_fill.c index d26fd19b..9efc2a65 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_pixelmap_fill.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_pixelmap_fill.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ char test_comment[256]; int test_alpha_list[TEST_ALPHA_CASE] = {0, 100, 255}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_string_to_alphamap.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_string_to_alphamap.c index e983b8db..fa370075 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_string_to_alphamap.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_ccw_string_to_alphamap.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -53,7 +53,7 @@ VOID tx_application_define(void *first_unused_memory) #include "demo_guix_all_widgets_synergy_16bpp_rotated_ccw.c" /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_binary.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_binary.c index a5b0eb4c..d7d40146 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_binary.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_binary.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -68,7 +68,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_binary_glyph_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_binary_glyph_draw.c index 269d3bc0..dc2678d2 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_binary_glyph_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_binary_glyph_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -65,7 +65,7 @@ int test_font_ids[]={ char comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_binary_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_binary_pixelmap_draw.c index b5f13c6f..096f58e2 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_binary_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_binary_pixelmap_draw.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -123,7 +123,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_glyph_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_glyph_draw.c index 1cefb2de..fb34e8f2 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_glyph_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_glyph_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -65,7 +65,7 @@ int test_font_ids[]={ char comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_pixelmap_draw.c index d1868864..19651067 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_pixelmap_draw.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -123,7 +123,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_pixelmap_fill.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_pixelmap_fill.c index e767fe80..d301105d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_pixelmap_fill.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_pixelmap_fill.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ char test_comment[256]; int test_alpha_list[TEST_ALPHA_CASE] = {0, 100, 255}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_string_to_alphamap.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_string_to_alphamap.c index b36b85a0..8c3e59a5 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_string_to_alphamap.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_string_to_alphamap.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -53,7 +53,7 @@ VOID tx_application_define(void *first_unused_memory) #include "demo_guix_all_widgets_synergy_16bpp_rotated_cw.c" /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_vertical_list.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_vertical_list.c index 1176fe86..6b8e6294 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_vertical_list.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_16bpp_rotated_cw_vertical_list.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -63,7 +63,7 @@ static int test_scroll_values[]={ static char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_ccw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_ccw.c index 12b54689..81baa61c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_ccw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_ccw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -69,7 +69,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_ccw_binary.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_ccw_binary.c index 14628b77..6a5bf450 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_ccw_binary.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_ccw_binary.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -69,7 +69,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw.c index 6e4b5084..39d8b940 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -69,7 +69,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw_binary.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw_binary.c index f7e13719..0abefa38 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw_binary.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw_binary.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -69,7 +69,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw_dave2d_disabled.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw_dave2d_disabled.c index 107db4cc..58766201 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw_dave2d_disabled.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw_dave2d_disabled.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -69,7 +69,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw_glyph_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw_glyph_draw.c index 2411cb21..20d0e150 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw_glyph_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw_glyph_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -65,7 +65,7 @@ int test_font_ids[]={ char comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw_pixelmap_draw.c index 460f334e..b4419e0b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw_pixelmap_draw.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -131,7 +131,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw_vertical_list.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw_vertical_list.c index a8d96e87..1ebff6a1 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw_vertical_list.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_24xrgb_rotated_cw_vertical_list.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -63,7 +63,7 @@ static int test_scroll_values[]={ static char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_565rgb_glyph_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_565rgb_glyph_draw.c index 25c2b13e..7149afc2 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_565rgb_glyph_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_565rgb_glyph_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -65,7 +65,7 @@ int test_font_ids[]={ char comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_ccw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_ccw.c index 63d1e867..b520d545 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_ccw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_ccw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -71,7 +71,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_ccw_binary.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_ccw_binary.c index 4275b5e4..22ae5857 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_ccw_binary.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_ccw_binary.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -69,7 +69,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_ccw_binary_sprite.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_ccw_binary_sprite.c index ddbbbd86..5871790d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_ccw_binary_sprite.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_ccw_binary_sprite.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -54,7 +54,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_cw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_cw.c index 4eeb8484..fe8e6b70 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_cw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_cw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -71,7 +71,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_cw_binary.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_cw_binary.c index 24634c3e..a4b8a667 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_cw_binary.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_cw_binary.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -70,7 +70,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_cw_dave2d_disabled.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_cw_dave2d_disabled.c index 7e67c2ed..a6854ba5 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_cw_dave2d_disabled.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_cw_dave2d_disabled.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -71,7 +71,7 @@ GX_NULL }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_cw_vertical_list.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_cw_vertical_list.c index 59f64945..f3f3dda0 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_cw_vertical_list.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_8bpp_rotated_cw_vertical_list.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ static int test_scroll_values[]={ static char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_glyph_draw.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_glyph_draw.c index 8a4c2957..d7d42e89 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_glyph_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_synergy_glyph_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -65,7 +65,7 @@ int test_font_ids[]={ char comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_system_view_fold.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_system_view_fold.c index 427876e9..18d13bdf 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_system_view_fold.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_system_view_fold.c @@ -36,7 +36,7 @@ VOID tx_application_define(void *first_unused_memory) /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -71,7 +71,7 @@ GX_WIDGET *list[] = }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_text_button_text_get.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_text_button_text_get.c index b4e56471..f5a6f50a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_text_button_text_get.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_text_button_text_get.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_tree_view.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_tree_view.c index fac27b1f..ad8dfe1e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_tree_view.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_tree_view.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_utility_vertical_gradient_create.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_utility_vertical_gradient_create.c index cd7304a7..13d81bce 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_utility_vertical_gradient_create.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_utility_vertical_gradient_create.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -71,7 +71,7 @@ void button_screen_draw(GX_WINDOW *window) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_v_pixelmap_slider_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_v_pixelmap_slider_16bpp.c index d7dae3d2..98239d77 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_v_pixelmap_slider_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_v_pixelmap_slider_16bpp.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -62,7 +62,7 @@ int needle_insert[] = {-7, -2, -2}; int increment[] = {5, 10}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -138,7 +138,7 @@ GX_RECTANGLE new_size; { for(pos = slider_top; pos <= slider_bottom; pos += 20) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_v_slider_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_v_slider_16bpp.c index e5021d54..6b790a76 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_v_slider_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_v_slider_16bpp.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ int increment[] = {5, 10}; int new_pos; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -142,7 +142,7 @@ GX_RECTANGLE new_size; { for(pos = slider_top; pos <= slider_bottom; pos += 20) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_border_style_set.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_border_style_set.c index 9937bb80..a523903e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_border_style_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_border_style_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_color_get.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_color_get.c index 02eb7d3d..2eaaf895 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_color_get.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_color_get.c @@ -36,7 +36,7 @@ VOID tx_application_define(void *first_unused_memory) /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } @@ -61,7 +61,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ /* A copy of color table from all_widgets primary color table. diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_event_process.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_event_process.c index 4a089361..88cb9a2b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_event_process.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_focus.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_focus.c index ce6b27e6..2547b966 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_focus.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_focus.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_move.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_move.c index 62b28bff..f12d0cdc 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_move.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_move.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_style_set.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_style_set.c index 32bac79b..b0f6c7a4 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_style_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_style_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_text_blend.c b/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_text_blend.c index 94d4c123..13dcc23e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_text_blend.c +++ b/test/guix_test/regression_test/tests/validation_guix_all_widgets_widget_text_blend.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_alphamap_16bppdriver.c b/test/guix_test/regression_test/tests/validation_guix_alphamap_16bppdriver.c index 5cd8eaa8..e06f3541 100644 --- a/test/guix_test/regression_test/tests/validation_guix_alphamap_16bppdriver.c +++ b/test/guix_test/regression_test/tests/validation_guix_alphamap_16bppdriver.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_alphamap_32bppdriver.c b/test/guix_test/regression_test/tests/validation_guix_alphamap_32bppdriver.c index 1f12b622..d2dc925a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_alphamap_32bppdriver.c +++ b/test/guix_test/regression_test/tests/validation_guix_alphamap_32bppdriver.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_alphamap_brush_alpha.c b/test/guix_test/regression_test/tests/validation_guix_alphamap_brush_alpha.c index 825f7625..72a088e1 100644 --- a/test/guix_test/regression_test/tests/validation_guix_alphamap_brush_alpha.c +++ b/test/guix_test/regression_test/tests/validation_guix_alphamap_brush_alpha.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ char test_comment[256]; extern GX_UBYTE alpha_value; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_animation_complete.c b/test/guix_test/regression_test/tests/validation_guix_animation_complete.c index a7ae917c..543c5356 100644 --- a/test/guix_test/regression_test/tests/validation_guix_animation_complete.c +++ b/test/guix_test/regression_test/tests/validation_guix_animation_complete.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_animation_complete_push_stack.c b/test/guix_test/regression_test/tests/validation_guix_animation_complete_push_stack.c index 435c0935..c2f5d7c9 100644 --- a/test/guix_test/regression_test/tests/validation_guix_animation_complete_push_stack.c +++ b/test/guix_test/regression_test/tests/validation_guix_animation_complete_push_stack.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_animation_delete_no_output.c b/test/guix_test/regression_test/tests/validation_guix_animation_delete_no_output.c index ed8209f2..5ae15b16 100644 --- a/test/guix_test/regression_test/tests/validation_guix_animation_delete_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_animation_delete_no_output.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_animation_drag_event_process.c b/test/guix_test/regression_test/tests/validation_guix_animation_drag_event_process.c index e2835149..e9ff783f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_animation_drag_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_animation_drag_event_process.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -83,7 +83,7 @@ TEST test_list[]={ }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_animation_drag_flick_event_process.c b/test/guix_test/regression_test/tests/validation_guix_animation_drag_flick_event_process.c index ce2827cf..a6bd3233 100644 --- a/test/guix_test/regression_test/tests/validation_guix_animation_drag_flick_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_animation_drag_flick_event_process.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -97,7 +97,7 @@ TX_SEMAPHORE semaphore_memory[2]; char *test_comment[1]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_animation_drag_tracking.c b/test/guix_test/regression_test/tests/validation_guix_animation_drag_tracking.c index 9020bf7a..48ec0a3c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_animation_drag_tracking.c +++ b/test/guix_test/regression_test/tests/validation_guix_animation_drag_tracking.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -93,7 +93,7 @@ TEST test_list[]={ TX_SEMAPHORE semaphore_memory[2]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_animation_drag_tracking_start.c b/test/guix_test/regression_test/tests/validation_guix_animation_drag_tracking_start.c index 72bb6127..2401fbf7 100644 --- a/test/guix_test/regression_test/tests/validation_guix_animation_drag_tracking_start.c +++ b/test/guix_test/regression_test/tests/validation_guix_animation_drag_tracking_start.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -78,7 +78,7 @@ TEST test_list[]={ TX_SEMAPHORE semaphore_memory[2]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_animation_stop.c b/test/guix_test/regression_test/tests/validation_guix_animation_stop.c index 790655d4..9be26447 100644 --- a/test/guix_test/regression_test/tests/validation_guix_animation_stop.c +++ b/test/guix_test/regression_test/tests/validation_guix_animation_stop.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_animation_update.c b/test/guix_test/regression_test/tests/validation_guix_animation_update.c index 161d2372..01d87321 100644 --- a/test/guix_test/regression_test/tests/validation_guix_animation_update.c +++ b/test/guix_test/regression_test/tests/validation_guix_animation_update.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_arabic_glyph_shaping.c b/test/guix_test/regression_test/tests/validation_guix_arabic_glyph_shaping.c index 2c700df0..7a527696 100644 --- a/test/guix_test/regression_test/tests/validation_guix_arabic_glyph_shaping.c +++ b/test/guix_test/regression_test/tests/validation_guix_arabic_glyph_shaping.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_bidi_text_draw_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_bidi_text_draw_32bpp.c index 268f6fa2..7b113038 100644 --- a/test/guix_test/regression_test/tests/validation_guix_bidi_text_draw_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_bidi_text_draw_32bpp.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_bidi_text_line_break_runtime.c b/test/guix_test/regression_test/tests/validation_guix_bidi_text_line_break_runtime.c index 83344ab1..ebab832f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_bidi_text_line_break_runtime.c +++ b/test/guix_test/regression_test/tests/validation_guix_bidi_text_line_break_runtime.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_bidi_text_line_break_static.c b/test/guix_test/regression_test/tests/validation_guix_bidi_text_line_break_static.c index e6f6074d..c1573262 100644 --- a/test/guix_test/regression_test/tests/validation_guix_bidi_text_line_break_static.c +++ b/test/guix_test/regression_test/tests/validation_guix_bidi_text_line_break_static.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_binres_language_info_get_no_output.c b/test/guix_test/regression_test/tests/validation_guix_binres_language_info_get_no_output.c index fe769266..30ea6f69 100644 --- a/test/guix_test/regression_test/tests/validation_guix_binres_language_info_get_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_binres_language_info_get_no_output.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ tx_thread_create(&Guix_API_Test, "GUIX API Test", control_thread_entry, 0, control_thread_stack, sizeof(control_thread_stack), diff --git a/test/guix_test/regression_test/tests/validation_guix_binres_language_table_load.c b/test/guix_test/regression_test/tests/validation_guix_binres_language_table_load.c index cf8e22ed..0e740051 100644 --- a/test/guix_test/regression_test/tests/validation_guix_binres_language_table_load.c +++ b/test/guix_test/regression_test/tests/validation_guix_binres_language_table_load.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_binres_language_table_load_no_output.c b/test/guix_test/regression_test/tests/validation_guix_binres_language_table_load_no_output.c index 135da54b..733209a3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_binres_language_table_load_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_binres_language_table_load_no_output.c @@ -23,7 +23,7 @@ static VOID control_thread_entry(ULONG); VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_binres_language_table_load_use_old_api.c b/test/guix_test/regression_test/tests/validation_guix_binres_language_table_load_use_old_api.c index 19dd163f..10e6072f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_binres_language_table_load_use_old_api.c +++ b/test/guix_test/regression_test/tests/validation_guix_binres_language_table_load_use_old_api.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_binres_theme_load.c b/test/guix_test/regression_test/tests/validation_guix_binres_theme_load.c index df19f420..a0aecdfd 100644 --- a/test/guix_test/regression_test/tests/validation_guix_binres_theme_load.c +++ b/test/guix_test/regression_test/tests/validation_guix_binres_theme_load.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_binres_theme_load_8bpp.c b/test/guix_test/regression_test/tests/validation_guix_binres_theme_load_8bpp.c index d36b6459..f4297d75 100644 --- a/test/guix_test/regression_test/tests/validation_guix_binres_theme_load_8bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_binres_theme_load_8bpp.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_binres_theme_load_synergy.c b/test/guix_test/regression_test/tests/validation_guix_binres_theme_load_synergy.c index 055826ff..20df8d98 100644 --- a/test/guix_test/regression_test/tests/validation_guix_binres_theme_load_synergy.c +++ b/test/guix_test/regression_test/tests/validation_guix_binres_theme_load_synergy.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_binres_theme_static_language.c b/test/guix_test/regression_test/tests/validation_guix_binres_theme_static_language.c index 7ddab662..242c883c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_binres_theme_static_language.c +++ b/test/guix_test/regression_test/tests/validation_guix_binres_theme_static_language.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -57,7 +57,7 @@ VOID tx_application_define(void *first_unused_memory) #include "demo_guix_binres_theme_static_language.c" /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_button_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_button_24xrgb.c index f2104550..d72e2d67 100644 --- a/test/guix_test/regression_test/tests/validation_guix_button_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_button_24xrgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -79,7 +79,7 @@ GX_EVENT my_event; { for(Mouse_index = 0; Mouse_index < 2; Mouse_index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_button_deselect_no_output.c b/test/guix_test/regression_test/tests/validation_guix_button_deselect_no_output.c index 259da2b3..25d10975 100644 --- a/test/guix_test/regression_test/tests/validation_guix_button_deselect_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_button_deselect_no_output.c @@ -22,7 +22,7 @@ static VOID control_thread_entry(ULONG); VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_canvas_arc_draw.c b/test/guix_test/regression_test/tests/validation_guix_canvas_arc_draw.c index 851ec582..800c1072 100644 --- a/test/guix_test/regression_test/tests/validation_guix_canvas_arc_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_canvas_arc_draw.c @@ -33,7 +33,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ extern INT draw_shape; extern INT start_angle; extern INT end_angle; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_canvas_circle_draw.c b/test/guix_test/regression_test/tests/validation_guix_canvas_circle_draw.c index cdd4a486..aafbc80c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_canvas_circle_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_canvas_circle_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_canvas_delete_no_output.c b/test/guix_test/regression_test/tests/validation_guix_canvas_delete_no_output.c index 82a58edf..0d9b2506 100644 --- a/test/guix_test/regression_test/tests/validation_guix_canvas_delete_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_canvas_delete_no_output.c @@ -23,7 +23,7 @@ static VOID control_thread_entry(ULONG); VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_canvas_drawing_complete.c b/test/guix_test/regression_test/tests/validation_guix_canvas_drawing_complete.c index 6726cb65..c408fae6 100644 --- a/test/guix_test/regression_test/tests/validation_guix_canvas_drawing_complete.c +++ b/test/guix_test/regression_test/tests/validation_guix_canvas_drawing_complete.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_canvas_ellipse_draw.c b/test/guix_test/regression_test/tests/validation_guix_canvas_ellipse_draw.c index 9a9aacdc..d873db30 100644 --- a/test/guix_test/regression_test/tests/validation_guix_canvas_ellipse_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_canvas_ellipse_draw.c @@ -33,7 +33,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; extern INT draw_shape; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_canvas_glyphs_draw.c b/test/guix_test/regression_test/tests/validation_guix_canvas_glyphs_draw.c index b3ff5430..c487d0a9 100644 --- a/test/guix_test/regression_test/tests/validation_guix_canvas_glyphs_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_canvas_glyphs_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -107,7 +107,7 @@ GX_STRING string; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_canvas_hardware_layer.c b/test/guix_test/regression_test/tests/validation_guix_canvas_hardware_layer.c index 5269d187..a51f401d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_canvas_hardware_layer.c +++ b/test/guix_test/regression_test/tests/validation_guix_canvas_hardware_layer.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -112,8 +112,8 @@ display_layer_initialize_2, }; /* Note: function gx_canvas_hide isn't correct for now. - so frame 2 isn't the expected output. - This test would fail if function gx_canvas_hide is fixed, + so frame 2 isn't the expected output. + This test would fail if function gx_canvas_hide is fixed, then it should be updated. */ static VOID control_thread_entry(ULONG input) { @@ -129,7 +129,7 @@ GX_DISPLAY *display; display = root->gx_window_root_canvas->gx_canvas_display; display->gx_display_layer_services = &display_layer_services_1; - gx_canvas_hardware_layer_bind(&animation_canvas, 1); // should return GX_INVALID_DISPLAY + gx_canvas_hardware_layer_bind(&animation_canvas, 1); // should return GX_INVALID_DISPLAY display->gx_display_layer_services = &display_layer_services; diff --git a/test/guix_test/regression_test/tests/validation_guix_canvas_hide.c b/test/guix_test/regression_test/tests/validation_guix_canvas_hide.c index 50443eb7..e5a88da6 100644 --- a/test/guix_test/regression_test/tests/validation_guix_canvas_hide.c +++ b/test/guix_test/regression_test/tests/validation_guix_canvas_hide.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the scrollbar drawing example. These operations simulate + on the scrollbar drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -57,7 +57,7 @@ VOID tx_application_define(void *first_unused_memory) #include "demo_guix_all_widgets_16bpp.c" /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_canvas_pie_draw.c b/test/guix_test/regression_test/tests/validation_guix_canvas_pie_draw.c index 627abf61..68fb93b3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_canvas_pie_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_canvas_pie_draw.c @@ -33,7 +33,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; extern INT draw_shape; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_canvas_pixelmap_blend.c b/test/guix_test/regression_test/tests/validation_guix_canvas_pixelmap_blend.c index 7dc46847..89f2b8b4 100644 --- a/test/guix_test/regression_test/tests/validation_guix_canvas_pixelmap_blend.c +++ b/test/guix_test/regression_test/tests/validation_guix_canvas_pixelmap_blend.c @@ -34,7 +34,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -137,7 +137,7 @@ static GX_CHAR test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_canvas_pixelmap_get_no_output.c b/test/guix_test/regression_test/tests/validation_guix_canvas_pixelmap_get_no_output.c index 42b2c695..52d38973 100644 --- a/test/guix_test/regression_test/tests/validation_guix_canvas_pixelmap_get_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_canvas_pixelmap_get_no_output.c @@ -23,7 +23,7 @@ static VOID control_thread_entry(ULONG); VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_canvas_pixelmap_rotate.c b/test/guix_test/regression_test/tests/validation_guix_canvas_pixelmap_rotate.c index c4313067..ba7ad766 100644 --- a/test/guix_test/regression_test/tests/validation_guix_canvas_pixelmap_rotate.c +++ b/test/guix_test/regression_test/tests/validation_guix_canvas_pixelmap_rotate.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -138,7 +138,7 @@ VOID (*draw)(GX_DRAW_CONTEXT *,INT , INT , GX_PIXELMAP *); } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -159,7 +159,7 @@ GX_RECTANGLE size; gx_widget_detach(pButtonScreen); gx_widget_attach(root, pRotateScreen); - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_canvas_polygon_draw.c b/test/guix_test/regression_test/tests/validation_guix_canvas_polygon_draw.c index a213fb1b..60880416 100644 --- a/test/guix_test/regression_test/tests/validation_guix_canvas_polygon_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_canvas_polygon_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_canvas_rotated_text_draw.c b/test/guix_test/regression_test/tests/validation_guix_canvas_rotated_text_draw.c index cce33bf1..8205420a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_canvas_rotated_text_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_canvas_rotated_text_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -101,7 +101,7 @@ int xpos, ypos; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_canvas_rotated_text_draw_no_output.c b/test/guix_test/regression_test/tests/validation_guix_canvas_rotated_text_draw_no_output.c index 8b2f4f75..92407d90 100644 --- a/test/guix_test/regression_test/tests/validation_guix_canvas_rotated_text_draw_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_canvas_rotated_text_draw_no_output.c @@ -22,7 +22,7 @@ static VOID control_thread_entry(ULONG); VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_canvas_text_draw.c b/test/guix_test/regression_test/tests/validation_guix_canvas_text_draw.c index 583615ca..95cee27d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_canvas_text_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_canvas_text_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -145,7 +145,7 @@ GX_CONST GX_CHAR *draw_string = "test_string"; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_canvas_text_draw_no_output.c b/test/guix_test/regression_test/tests/validation_guix_canvas_text_draw_no_output.c index 867039e0..3b0e2971 100644 --- a/test/guix_test/regression_test/tests/validation_guix_canvas_text_draw_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_canvas_text_draw_no_output.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_checkbox_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_checkbox_24xrgb.c index 369294cb..c45c1b3c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_checkbox_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_checkbox_24xrgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_circular_gauge_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_circular_gauge_16bpp.c index f1da8523..267d4870 100644 --- a/test/guix_test/regression_test/tests/validation_guix_circular_gauge_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_circular_gauge_16bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ char test_comment[255]; GX_UBYTE test_memory[TEST_MEMORY_SIZE]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_circular_gauge_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_circular_gauge_32bpp.c index c63f167c..89ffaf7a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_circular_gauge_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_circular_gauge_32bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -69,7 +69,7 @@ GX_POINT needle_cor[]={ }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_circular_gauge_angle_increment_calculate.c b/test/guix_test/regression_test/tests/validation_guix_circular_gauge_angle_increment_calculate.c index 5786b0ec..78a8ab79 100644 --- a/test/guix_test/regression_test/tests/validation_guix_circular_gauge_angle_increment_calculate.c +++ b/test/guix_test/regression_test/tests/validation_guix_circular_gauge_angle_increment_calculate.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -57,7 +57,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_circular_gauge_angle_set.c b/test/guix_test/regression_test/tests/validation_guix_circular_gauge_angle_set.c index 5f8f6081..6ca28fc6 100644 --- a/test/guix_test/regression_test/tests/validation_guix_circular_gauge_angle_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_circular_gauge_angle_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -57,7 +57,7 @@ VOID tx_application_define(void *first_unused_memory) static char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_circular_gauge_animation_set.c b/test/guix_test/regression_test/tests/validation_guix_circular_gauge_animation_set.c index 25d96ad1..ea90dc85 100644 --- a/test/guix_test/regression_test/tests/validation_guix_circular_gauge_animation_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_circular_gauge_animation_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_circular_gauge_dirty_mark.c b/test/guix_test/regression_test/tests/validation_guix_circular_gauge_dirty_mark.c index f535dd8e..4265c688 100644 --- a/test/guix_test/regression_test/tests/validation_guix_circular_gauge_dirty_mark.c +++ b/test/guix_test/regression_test/tests/validation_guix_circular_gauge_dirty_mark.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -55,7 +55,7 @@ VOID tx_application_define(void *first_unused_memory) #include "demo_guix_all_widgets.c" /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_circular_gauge_event_process.c b/test/guix_test/regression_test/tests/validation_guix_circular_gauge_event_process.c index c0c92e74..33622d22 100644 --- a/test/guix_test/regression_test/tests/validation_guix_circular_gauge_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_circular_gauge_event_process.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_circular_gauge_needle_rotate_callback.c b/test/guix_test/regression_test/tests/validation_guix_circular_gauge_needle_rotate_callback.c index 85a539f8..d6e3e2bf 100644 --- a/test/guix_test/regression_test/tests/validation_guix_circular_gauge_needle_rotate_callback.c +++ b/test/guix_test/regression_test/tests/validation_guix_circular_gauge_needle_rotate_callback.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -71,7 +71,7 @@ GX_POINT needle_cor[]={ }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_context_brush_define_no_output.c b/test/guix_test/regression_test/tests/validation_guix_context_brush_define_no_output.c index 380267ba..b91b2e7b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_context_brush_define_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_context_brush_define_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_context_string_get_no_output.c b/test/guix_test/regression_test/tests/validation_guix_context_string_get_no_output.c index 24aa07c5..372066d3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_context_string_get_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_context_string_get_no_output.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_deprecated_system_api_no_output.c b/test/guix_test/regression_test/tests/validation_guix_deprecated_system_api_no_output.c index 406bfe27..71b4fa3f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_deprecated_system_api_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_deprecated_system_api_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_display_active_language_set_no_output.c b/test/guix_test/regression_test/tests/validation_guix_display_active_language_set_no_output.c index 8344b161..65414130 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_active_language_set_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_active_language_set_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_display_create_no_output.c b/test/guix_test/regression_test/tests/validation_guix_display_create_no_output.c index 4c8decf4..94af693d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_create_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_create_no_output.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_display_delete_no_output.c b/test/guix_test/regression_test/tests/validation_guix_display_delete_no_output.c index d4e16731..02bd0c28 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_delete_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_delete_no_output.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_display_driver_1555xrgb_pixelmap_rotate.c b/test/guix_test/regression_test/tests/validation_guix_display_driver_1555xrgb_pixelmap_rotate.c index 4fde50a4..c493229d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_driver_1555xrgb_pixelmap_rotate.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_driver_1555xrgb_pixelmap_rotate.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -89,7 +89,7 @@ VOID test_pixelmap_draw(GX_WINDOW *window) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_display_driver_16bpp_block_move.c b/test/guix_test/regression_test/tests/validation_guix_display_driver_16bpp_block_move.c index 5546b209..b7256a0d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_driver_16bpp_block_move.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_driver_16bpp_block_move.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ static VOID text_button_draw(GX_TEXT_BUTTON *button) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_display_driver_16bpp_pixelmap_rotate.c b/test/guix_test/regression_test/tests/validation_guix_display_driver_16bpp_pixelmap_rotate.c index e8ec63fb..f61cfaff 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_driver_16bpp_pixelmap_rotate.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_driver_16bpp_pixelmap_rotate.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -90,7 +90,7 @@ VOID test_pixelmap_draw(GX_WINDOW *window) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_display_driver_1bpp_pixelmap_rotate.c b/test/guix_test/regression_test/tests/validation_guix_display_driver_1bpp_pixelmap_rotate.c index 1ff1fc61..9fdcf3d8 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_driver_1bpp_pixelmap_rotate.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_driver_1bpp_pixelmap_rotate.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -89,7 +89,7 @@ VOID test_pixelmap_draw(GX_WINDOW *window) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_display_driver_32bpp_block_move.c b/test/guix_test/regression_test/tests/validation_guix_display_driver_32bpp_block_move.c index 591e097c..871fbdc6 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_driver_32bpp_block_move.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_driver_32bpp_block_move.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -66,7 +66,7 @@ static VOID text_button_draw(GX_TEXT_BUTTON *button) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_display_driver_32bpp_pixelmap_rotate.c b/test/guix_test/regression_test/tests/validation_guix_display_driver_32bpp_pixelmap_rotate.c index 7c74fa8c..d0bee835 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_driver_32bpp_pixelmap_rotate.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_driver_32bpp_pixelmap_rotate.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -89,7 +89,7 @@ VOID test_pixelmap_draw(GX_WINDOW *window) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_display_driver_332rgb_pixelmap_rotate.c b/test/guix_test/regression_test/tests/validation_guix_display_driver_332rgb_pixelmap_rotate.c index ee0bc273..fe386aec 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_driver_332rgb_pixelmap_rotate.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_driver_332rgb_pixelmap_rotate.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -87,7 +87,7 @@ VOID test_pixelmap_draw(GX_WINDOW *window) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_display_driver_4444argb_pixelmap_rotate.c b/test/guix_test/regression_test/tests/validation_guix_display_driver_4444argb_pixelmap_rotate.c index 6bb6925d..9971edaf 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_driver_4444argb_pixelmap_rotate.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_driver_4444argb_pixelmap_rotate.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -88,7 +88,7 @@ VOID test_pixelmap_draw(GX_WINDOW *window) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_display_driver_4bpp_pixelmap_rotate.c b/test/guix_test/regression_test/tests/validation_guix_display_driver_4bpp_pixelmap_rotate.c index 5b22ae0c..01ffbbce 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_driver_4bpp_pixelmap_rotate.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_driver_4bpp_pixelmap_rotate.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -92,7 +92,7 @@ VOID test_pixelmap_draw(GX_WINDOW *window) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_display_driver_8bpp_block_move.c b/test/guix_test/regression_test/tests/validation_guix_display_driver_8bpp_block_move.c index c34b2ee2..8ca625cf 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_driver_8bpp_block_move.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_driver_8bpp_block_move.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -66,7 +66,7 @@ static VOID text_button_draw(GX_TEXT_BUTTON *button) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_display_driver_8bpp_horizontal_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_display_driver_8bpp_horizontal_line_draw.c index 5142baf3..e42dcc69 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_driver_8bpp_horizontal_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_driver_8bpp_horizontal_line_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -77,7 +77,7 @@ char test_comment[256]; extern GX_STUDIO_DISPLAY_INFO lines_8bpp_display_table[]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -97,7 +97,7 @@ GX_CONST GX_THEME *theme_ptr; { line_width = width_value[width_index]; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -125,7 +125,7 @@ GX_CONST GX_THEME *theme_ptr; { line_width = width_value[width_index]; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_display_driver_8bpp_pixelmap_rotate.c b/test/guix_test/regression_test/tests/validation_guix_display_driver_8bpp_pixelmap_rotate.c index d45b556c..943b228f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_driver_8bpp_pixelmap_rotate.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_driver_8bpp_pixelmap_rotate.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -85,7 +85,7 @@ VOID test_pixelmap_draw(GX_WINDOW *window) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_display_driver_8bpp_vertical_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_display_driver_8bpp_vertical_line_draw.c index c095875e..0d32c8f8 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_driver_8bpp_vertical_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_driver_8bpp_vertical_line_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -77,7 +77,7 @@ char test_comment[256]; extern GX_STUDIO_DISPLAY_INFO lines_8bpp_display_table[]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -97,7 +97,7 @@ GX_CONST GX_THEME *theme_ptr; { line_width = width_value[width_index]; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -125,7 +125,7 @@ GX_CONST GX_THEME *theme_ptr; { line_width = width_value[width_index]; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_display_driver_aliased_filled_circle_draw.c b/test/guix_test/regression_test/tests/validation_guix_display_driver_aliased_filled_circle_draw.c index dfcd700e..11ef5f89 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_driver_aliased_filled_circle_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_driver_aliased_filled_circle_draw.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -94,7 +94,7 @@ VOID (*old_blend_func)(GX_DRAW_CONTEXT *context, } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_display_driver_aliased_fixed_point_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_display_driver_aliased_fixed_point_line_draw.c index b79022c2..609a3595 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_driver_aliased_fixed_point_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_driver_aliased_fixed_point_line_draw.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -116,7 +116,7 @@ GX_FIXED_VAL yend; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_display_driver_aliased_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_display_driver_aliased_line_draw.c index eb91b84f..7b92debc 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_driver_aliased_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_driver_aliased_line_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_display_driver_alised_wide_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_display_driver_alised_wide_line_draw.c index ad984e2d..19b45d75 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_driver_alised_wide_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_driver_alised_wide_line_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -149,7 +149,7 @@ GX_RECTANGLE *size; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -171,7 +171,7 @@ GX_DISPLAY *display; { for(lines_screen_line_angle = 0; lines_screen_line_angle < 360; lines_screen_line_angle+=30) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_display_driver_generic_glyph_4bit_draw.c b/test/guix_test/regression_test/tests/validation_guix_display_driver_generic_glyph_4bit_draw.c index ba37daa7..49b77e7b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_driver_generic_glyph_4bit_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_driver_generic_glyph_4bit_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ char test_comment[256]; static INT brush_alpha_value[] = {0, 100, 200, 255}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -80,7 +80,7 @@ GX_RECTANGLE size; { brush_alpha = brush_alpha_value[brush_alpha_index]; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_display_driver_simple_line_alpha_draw.c b/test/guix_test/regression_test/tests/validation_guix_display_driver_simple_line_alpha_draw.c index 7df5de40..7996b792 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_driver_simple_line_alpha_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_driver_simple_line_alpha_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ static GX_RECTANGLE size_list[] = char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -86,7 +86,7 @@ int frame_id = 1; gx_widget_resize(pLineWin, &size_list[size_index]); for(angle_index = 0; angle_index < (INT)(sizeof(angle_value) / sizeof(int)); angle_index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_display_driver_wide_line_fill.c b/test/guix_test/regression_test/tests/validation_guix_display_driver_wide_line_fill.c index 27ecac97..132fe113 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_driver_wide_line_fill.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_driver_wide_line_fill.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -87,7 +87,7 @@ GX_FIXED_POINT *points; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_display_language_table_get_no_output.c b/test/guix_test/regression_test/tests/validation_guix_display_language_table_get_no_output.c index 5477bdf2..f73b15b0 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_language_table_get_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_language_table_get_no_output.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_display_language_table_set_no_output.c b/test/guix_test/regression_test/tests/validation_guix_display_language_table_set_no_output.c index edb91900..f33ea163 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_language_table_set_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_language_table_set_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_display_string_get_no_output.c b/test/guix_test/regression_test/tests/validation_guix_display_string_get_no_output.c index b5aa7a93..a47378df 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_string_get_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_string_get_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_display_string_table_get_no_output.c b/test/guix_test/regression_test/tests/validation_guix_display_string_table_get_no_output.c index f1002bdd..bf20ef95 100644 --- a/test/guix_test/regression_test/tests/validation_guix_display_string_table_get_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_display_string_table_get_no_output.c @@ -22,7 +22,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_application_define(first_unused_memory); @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } @@ -45,7 +45,7 @@ VOID tx_application_define(void *first_unused_memory) #include "demo_guix_all_widgets.c" /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) diff --git a/test/guix_test/regression_test/tests/validation_guix_drop_list.c b/test/guix_test/regression_test/tests/validation_guix_drop_list.c index 175c4afa..26d10610 100644 --- a/test/guix_test/regression_test/tests/validation_guix_drop_list.c +++ b/test/guix_test/regression_test/tests/validation_guix_drop_list.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -66,7 +66,7 @@ static int test_scroll_values[]={ static char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_drop_list_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_drop_list_24xrgb.c index 823ac463..29de26bd 100644 --- a/test/guix_test/regression_test/tests/validation_guix_drop_list_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_drop_list_24xrgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -86,7 +86,7 @@ int open_height; /* Show popup list first and then select an item from popup list. */ for (; y_pos < drop_list->gx_widget_size.gx_rectangle_bottom + open_height; y_pos += 28) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_drop_list_open.c b/test/guix_test/regression_test/tests/validation_guix_drop_list_open.c index 66ad96cf..74b380ea 100644 --- a/test/guix_test/regression_test/tests/validation_guix_drop_list_open.c +++ b/test/guix_test/regression_test/tests/validation_guix_drop_list_open.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_dynamic_bidi_screen.c b/test/guix_test/regression_test/tests/validation_guix_dynamic_bidi_screen.c index be0dead1..76c2e895 100644 --- a/test/guix_test/regression_test/tests/validation_guix_dynamic_bidi_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_dynamic_bidi_screen.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_error_checking_api_compile_no_output.c b/test/guix_test/regression_test/tests/validation_guix_error_checking_api_compile_no_output.c index 0471d159..f9f3cd84 100644 --- a/test/guix_test/regression_test/tests/validation_guix_error_checking_api_compile_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_error_checking_api_compile_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_error_checking_api_coverage_no_output.c b/test/guix_test/regression_test/tests/validation_guix_error_checking_api_coverage_no_output.c index 5279f422..7f0e6f44 100644 --- a/test/guix_test/regression_test/tests/validation_guix_error_checking_api_coverage_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_error_checking_api_coverage_no_output.c @@ -52,7 +52,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } @@ -661,13 +661,13 @@ GX_STRING string; status = gx_canvas_pixelmap_draw(0, 0, &pixelmap); //should return GX_INVALID_CONTEXT EXPECT_EQ(GX_SUCCESS, status); - status = gx_canvas_pixelmap_get(0); //should return GX_PTR_ERROR + status = gx_canvas_pixelmap_get(0); //should return GX_PTR_ERROR EXPECT_EQ(GX_PTR_ERROR, status); _gx_system_current_draw_context = &default_context; default_context.gx_draw_context_canvas = &canvas; default_context.gx_draw_context_display = &display; - status = gx_canvas_pixelmap_get(&pixelmap); //should return GX_PTR_ERROR + status = gx_canvas_pixelmap_get(&pixelmap); //should return GX_PTR_ERROR EXPECT_EQ(GX_SUCCESS, status); status = gx_canvas_pixelmap_rotate(0, 0, 0, 0, 0, 0); //should return GX_PTR_ERROR @@ -840,12 +840,12 @@ GX_STRING string; parent.gx_widget_type = GX_TYPE_WIDGET; checkbox.gx_widget_type = 0; - status = gx_checkbox_select(&checkbox);// should return GX_INVALID_WIDGET + status = gx_checkbox_select(&checkbox);// should return GX_INVALID_WIDGET EXPECT_EQ(GX_INVALID_WIDGET, status); checkbox.gx_widget_parent = &parent; checkbox.gx_widget_type = GX_TYPE_CHECKBOX; - status = gx_checkbox_select(&checkbox);// should return GX_SUCCESS + status = gx_checkbox_select(&checkbox);// should return GX_SUCCESS EXPECT_EQ(GX_SUCCESS, status); /* circular gauge */ @@ -929,16 +929,16 @@ GX_STRING string; _gx_system_current_draw_context = GX_NULL; // following functions need the _gx_system_current_draw_context to be NULL // start - status = gx_context_brush_get(&brush); // should return GX_INVALID_CONTEXT + status = gx_context_brush_get(&brush); // should return GX_INVALID_CONTEXT EXPECT_EQ(GX_INVALID_CONTEXT, status); - status = gx_context_brush_pattern_set(0); // should return GX_INVALID_CONTEXT + status = gx_context_brush_pattern_set(0); // should return GX_INVALID_CONTEXT EXPECT_EQ(GX_INVALID_CONTEXT, status); status = gx_context_brush_set(0); //should return GX_PTR_ERROR EXPECT_EQ(GX_PTR_ERROR, status); - status = gx_context_brush_set(&default_context.gx_draw_context_brush); //should return GX_INVALID_CONTEXT + status = gx_context_brush_set(&default_context.gx_draw_context_brush); //should return GX_INVALID_CONTEXT EXPECT_EQ(GX_INVALID_CONTEXT, status); status = gx_context_brush_style_set(0);//should return GX_INVALID_CONTEXT @@ -965,7 +965,7 @@ GX_STRING string; status = gx_context_font_set(0);//should return GX_INVALID_CONTEXT EXPECT_EQ(GX_INVALID_CONTEXT, status); - status = gx_context_line_color_set(1);//should return GX_INVALID_CONTEXT + status = gx_context_line_color_set(1);//should return GX_INVALID_CONTEXT EXPECT_EQ(GX_INVALID_CONTEXT, status); status = gx_context_pixelmap_get(1, 0);//should return GX_PTR_ERROR @@ -1025,7 +1025,7 @@ GX_STRING string; status = gx_display_create(0, 0, 0, 0, 0); // should return GX_PTR_ERROR EXPECT_EQ(GX_PTR_ERROR, status); - status = _gxe_display_create(&display, "linux_display", gx_validation_display_driver_setup_24xrgb, 0, 0, 0); // Should return GX_INVALID_SIZE + status = _gxe_display_create(&display, "linux_display", gx_validation_display_driver_setup_24xrgb, 0, 0, 0); // Should return GX_INVALID_SIZE EXPECT_EQ(GX_INVALID_SIZE, status); /* display delete coverage */ @@ -1097,7 +1097,7 @@ GX_STRING string; EXPECT_EQ(GX_SUCCESS, status); #endif - status = gx_display_theme_install(0, 0);//should return GX_INVALID_DISPLAY + status = gx_display_theme_install(0, 0);//should return GX_INVALID_DISPLAY EXPECT_EQ(GX_INVALID_DISPLAY, status); status = gx_display_theme_install(&display, 0);//should return GX_PTR_ERROR @@ -1223,10 +1223,10 @@ GX_STRING string; EXPECT_EQ(GX_INVALID_VALUE, status); memset(&scrollbar, 0, sizeof(GX_SCROLLBAR)); - status = gx_horizontal_scrollbar_create(0, 0, 0, 0, 0);//should return GX_PTR_ERROR + status = gx_horizontal_scrollbar_create(0, 0, 0, 0, 0);//should return GX_PTR_ERROR EXPECT_EQ(GX_PTR_ERROR, status); - status = _gxe_horizontal_scrollbar_create(&scrollbar, 0, 0, 0, 0, 0);//should return GX_INVALID_SIZE + status = _gxe_horizontal_scrollbar_create(&scrollbar, 0, 0, 0, 0, 0);//should return GX_INVALID_SIZE EXPECT_EQ(GX_INVALID_SIZE, status); scrollbar.gx_widget_type = GX_TYPE_HORIZONTAL_SCROLL; @@ -1236,7 +1236,7 @@ GX_STRING string; /* icon */ printf("icon button\n"); memset(&icon_button, 0, sizeof(GX_ICON_BUTTON)); - status = gx_icon_button_create(&icon_button, 0, 0, 0, 0, 0, 0); //should return GX_PTR_ERROR + status = gx_icon_button_create(&icon_button, 0, 0, 0, 0, 0, 0); //should return GX_PTR_ERROR EXPECT_EQ(GX_PTR_ERROR, status); status = _gxe_icon_button_create(&icon_button, 0, 0, 0, 0, 0, &size, 0);//should return GX_INVALID_SIZE @@ -1250,28 +1250,28 @@ GX_STRING string; status = gx_icon_button_create(&icon_button, 0, 0, 0, 0, 0, &size);// parent is NULL EXPECT_EQ(GX_SUCCESS, status); - status = gx_icon_button_pixelmap_set(0, 1);//should return GX_PTR_ERROR + status = gx_icon_button_pixelmap_set(0, 1);//should return GX_PTR_ERROR EXPECT_EQ(GX_PTR_ERROR, status); /* icon */ printf("icon\n"); memset(&icon, 0, sizeof(GX_ICON)); - status = gx_icon_create(0, 0, 0, 0, 0, 0, 0, 0); // should return GX_PTR_ERROR + status = gx_icon_create(0, 0, 0, 0, 0, 0, 0, 0); // should return GX_PTR_ERROR EXPECT_EQ(GX_PTR_ERROR, status); - status = _gxe_icon_create(&icon, 0, 0, 0, 0, 0, 0, 0, 0); // should return GX_INVALID_SIZE + status = _gxe_icon_create(&icon, 0, 0, 0, 0, 0, 0, 0, 0); // should return GX_INVALID_SIZE EXPECT_EQ(GX_INVALID_SIZE, status); icon.gx_widget_type = GX_TYPE_ICON; - status = gx_icon_create(&icon, 0, 0, 0, 0, 0, 0, 0); // should return GX_PTR_ERROR + status = gx_icon_create(&icon, 0, 0, 0, 0, 0, 0, 0); // should return GX_PTR_ERROR EXPECT_EQ(GX_ALREADY_CREATED, status); - status = gx_icon_event_process(&icon, 0); //should return GX_PTR_ERROR + status = gx_icon_event_process(&icon, 0); //should return GX_PTR_ERROR EXPECT_EQ(GX_PTR_ERROR, status); icon.gx_widget_parent = 0; my_event.gx_event_type = 0; - status = gx_icon_event_process(&icon, &my_event); //should return GX_PTR_ERROR + status = gx_icon_event_process(&icon, &my_event); //should return GX_PTR_ERROR EXPECT_EQ(GX_SUCCESS, status); status = gx_icon_pixelmap_set(0, 0, 0); //should return GX_PTR_ERROR @@ -1877,7 +1877,7 @@ GX_STRING string; status = gx_prompt_text_id_set(&prompt, 1); EXPECT_EQ(GX_SUCCESS, status); - status = gx_prompt_text_set(0, (GX_CONST GX_CHAR *)byte_data);//should return GX_PTR_ERROR + status = gx_prompt_text_set(0, (GX_CONST GX_CHAR *)byte_data);//should return GX_PTR_ERROR EXPECT_EQ(GX_PTR_ERROR, status); prompt.gx_widget_style = GX_STYLE_TEXT_COPY; @@ -2677,7 +2677,7 @@ GX_STRING string; slider_info.gx_slider_info_max_val = 10; slider_info.gx_slider_info_min_val = 0; slider_info.gx_slider_info_current_val = 5; - status = gx_slider_value_calculate(&slider, &slider_info, 5); //should return GX_INVALID_VALUE + status = gx_slider_value_calculate(&slider, &slider_info, 5); //should return GX_INVALID_VALUE EXPECT_EQ(GX_SUCCESS, status); slider_info.gx_slider_info_max_val = 5; @@ -2743,24 +2743,24 @@ GX_STRING string; EXPECT_EQ(GX_PTR_ERROR, status); sprite.gx_widget_type = 0; - status = gx_sprite_start(&sprite, 0); //should return GX_INVALID_WIDGET + status = gx_sprite_start(&sprite, 0); //should return GX_INVALID_WIDGET EXPECT_EQ(GX_INVALID_WIDGET, status); memset(&sprite, 0, sizeof(GX_SPRITE)); sprite.gx_widget_type = GX_TYPE_SPRITE; - status = gx_sprite_start(&sprite, 0); //should return GX_FAILURE + status = gx_sprite_start(&sprite, 0); //should return GX_FAILURE EXPECT_EQ(GX_FAILURE, status); status = gx_sprite_stop(0); //should return GX_PTR_ERROR EXPECT_EQ(GX_PTR_ERROR, status); sprite.gx_widget_type = 0; - status = gx_sprite_stop(&sprite); //should return GX_INVALID_WIDGET + status = gx_sprite_stop(&sprite); //should return GX_INVALID_WIDGET EXPECT_EQ(GX_INVALID_WIDGET, status); sprite.gx_sprite_run_state = 1; //GX_SPRITE_IDLE sprite.gx_widget_type = GX_TYPE_SPRITE; - status = gx_sprite_stop(&sprite); //should return GX_SUCCESS + status = gx_sprite_stop(&sprite); //should return GX_SUCCESS EXPECT_EQ(GX_SUCCESS, status); /* string scroll wheel */ @@ -2917,7 +2917,7 @@ GX_STRING string; status = gx_system_pen_configure(0); //should return GX_PTR_ERROR EXPECT_EQ(GX_PTR_ERROR, status); - status = gx_system_pen_configure(&pen_config); //should return GX_SUCCESS + status = gx_system_pen_configure(&pen_config); //should return GX_SUCCESS EXPECT_EQ(GX_SUCCESS, status); status = gx_system_scroll_appearance_get(0, 0);//should return GX_PTR_ERROR @@ -3844,7 +3844,7 @@ GX_STRING string; gx_widget_style_add(0, 0); //should return GX_PTR_ERROR widget.gx_widget_type = 0; - gx_widget_style_add(&widget, 0); //should return GX_INVALID_WIDGET + gx_widget_style_add(&widget, 0); //should return GX_INVALID_WIDGET gx_widget_style_get(&widget, 0); //should return GX_PTR_ERROR widget.gx_widget_type = 0; @@ -4275,7 +4275,7 @@ GX_STRING string; // should we test draw functions here? Because draw function will not return error. /* draw functions gx_display_create(&display, "linux_display", gx_validation_display_driver_setup_24xrgb, 0, 0); //create display - + // draw functions gx_accordion_menu_draw(&accordion_menu); // draw gx_button_background_draw(&button); @@ -4324,8 +4324,8 @@ GX_STRING string; gx_widget_text_id_draw(&widget, 0, 0, 0, 0, 0); gx_window_background_draw(&window); gx_window_draw(&window); - - + + gx_canvas_delete() gx_display_delete(&display, gx_validation_graphics_driver_cleanup_24xrgb);//delete display diff --git a/test/guix_test/regression_test/tests/validation_guix_farsi_glyph_shaping.c b/test/guix_test/regression_test/tests/validation_guix_farsi_glyph_shaping.c index 7f7cc19a..60018e82 100644 --- a/test/guix_test/regression_test/tests/validation_guix_farsi_glyph_shaping.c +++ b/test/guix_test/regression_test/tests/validation_guix_farsi_glyph_shaping.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_focus_management.c b/test/guix_test/regression_test/tests/validation_guix_focus_management.c index a75a9636..9937aeee 100644 --- a/test/guix_test/regression_test/tests/validation_guix_focus_management.c +++ b/test/guix_test/regression_test/tests/validation_guix_focus_management.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_generic_16bpp_32bppdriver.c b/test/guix_test/regression_test/tests/validation_guix_generic_16bpp_32bppdriver.c index 6dbee7fc..2780c605 100644 --- a/test/guix_test/regression_test/tests/validation_guix_generic_16bpp_32bppdriver.c +++ b/test/guix_test/regression_test/tests/validation_guix_generic_16bpp_32bppdriver.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -66,7 +66,7 @@ static int format_value[] = {format_565rgb, format_4444argb}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -82,7 +82,7 @@ int compressed_index,alpha_index,format_index; for(compressed_index = 0; compressed_index < 2; compressed_index++) { compressed = compressed_value[compressed_index]; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_generic_4444argb_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_generic_4444argb_16bpp.c index bf25d4a9..02c2826e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_generic_4444argb_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_generic_4444argb_16bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -62,7 +62,7 @@ static int compressed_value[] = {GX_TRUE, GX_FALSE}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -72,7 +72,7 @@ int compressed_index; for(compressed_index = 0; compressed_index < 2; compressed_index++) { compressed = compressed_value[compressed_index]; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_generic_aliased_wide_ellipse_draw.c b/test/guix_test/regression_test/tests/validation_guix_generic_aliased_wide_ellipse_draw.c index cc2b3a17..d206260f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_generic_aliased_wide_ellipse_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_generic_aliased_wide_ellipse_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_generic_alphamap_draw.c b/test/guix_test/regression_test/tests/validation_guix_generic_alphamap_draw.c index 0974d9fb..c2dc3c69 100644 --- a/test/guix_test/regression_test/tests/validation_guix_generic_alphamap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_generic_alphamap_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -87,7 +87,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_generic_ellipse_fill.c b/test/guix_test/regression_test/tests/validation_guix_generic_ellipse_fill.c index 33e03d10..a3e03c48 100644 --- a/test/guix_test/regression_test/tests/validation_guix_generic_ellipse_fill.c +++ b/test/guix_test/regression_test/tests/validation_guix_generic_ellipse_fill.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -88,7 +88,7 @@ GX_BRUSH *brush; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_generic_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_generic_line_draw.c index 3ea90311..9336aa18 100644 --- a/test/guix_test/regression_test/tests/validation_guix_generic_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_generic_line_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -81,7 +81,7 @@ VOID test_line_win_draw(GX_WINDOW *window) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_generic_polygon_fill.c b/test/guix_test/regression_test/tests/validation_guix_generic_polygon_fill.c index 3ee42419..84149765 100644 --- a/test/guix_test/regression_test/tests/validation_guix_generic_polygon_fill.c +++ b/test/guix_test/regression_test/tests/validation_guix_generic_polygon_fill.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -98,7 +98,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_generic_scroll_wheel.c b/test/guix_test/regression_test/tests/validation_guix_generic_scroll_wheel.c index 22d3c468..cc671397 100644 --- a/test/guix_test/regression_test/tests/validation_guix_generic_scroll_wheel.c +++ b/test/guix_test/regression_test/tests/validation_guix_generic_scroll_wheel.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_generic_scroll_wheel_no_output.c b/test/guix_test/regression_test/tests/validation_guix_generic_scroll_wheel_no_output.c index 578a9c65..1c168ce5 100644 --- a/test/guix_test/regression_test/tests/validation_guix_generic_scroll_wheel_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_generic_scroll_wheel_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_generic_scroll_wheel_scroll.c b/test/guix_test/regression_test/tests/validation_guix_generic_scroll_wheel_scroll.c index c8f25dd9..120e71b7 100644 --- a/test/guix_test/regression_test/tests/validation_guix_generic_scroll_wheel_scroll.c +++ b/test/guix_test/regression_test/tests/validation_guix_generic_scroll_wheel_scroll.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_generic_shape_fill.c b/test/guix_test/regression_test/tests/validation_guix_generic_shape_fill.c index 793af63b..69b70b04 100644 --- a/test/guix_test/regression_test/tests/validation_guix_generic_shape_fill.c +++ b/test/guix_test/regression_test/tests/validation_guix_generic_shape_fill.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_generic_wide_arc_draw.c b/test/guix_test/regression_test/tests/validation_guix_generic_wide_arc_draw.c index cc0c060b..92b5955a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_generic_wide_arc_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_generic_wide_arc_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_generic_wide_ellipse_draw.c b/test/guix_test/regression_test/tests/validation_guix_generic_wide_ellipse_draw.c index 22fda051..111d120e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_generic_wide_ellipse_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_generic_wide_ellipse_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_glyph_blend_16bpp_screen.c b/test/guix_test/regression_test/tests/validation_guix_glyph_blend_16bpp_screen.c index 5af6fab1..1dc00950 100644 --- a/test/guix_test/regression_test/tests/validation_guix_glyph_blend_16bpp_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_glyph_blend_16bpp_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_glyph_blend_32bpp_screen.c b/test/guix_test/regression_test/tests/validation_guix_glyph_blend_32bpp_screen.c index 246d9fc3..2eeb9bf5 100644 --- a/test/guix_test/regression_test/tests/validation_guix_glyph_blend_32bpp_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_glyph_blend_32bpp_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_glyph_draw.c b/test/guix_test/regression_test/tests/validation_guix_glyph_draw.c index e5bdb01a..abde2799 100644 --- a/test/guix_test/regression_test/tests/validation_guix_glyph_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_glyph_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -57,7 +57,7 @@ VOID tx_application_define(void *first_unused_memory) #include "demo_guix_glyph_draw.c" /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_glyph_draw_16bpp_screen.c b/test/guix_test/regression_test/tests/validation_guix_glyph_draw_16bpp_screen.c index fd01801b..9887a281 100644 --- a/test/guix_test/regression_test/tests/validation_guix_glyph_draw_16bpp_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_glyph_draw_16bpp_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_glyph_draw_32bpp_screen.c b/test/guix_test/regression_test/tests/validation_guix_glyph_draw_32bpp_screen.c index 5ff24d36..7cdd8960 100644 --- a/test/guix_test/regression_test/tests/validation_guix_glyph_draw_32bpp_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_glyph_draw_32bpp_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_glyph_draw_8bpp_screen_aa_text_colors_16.c b/test/guix_test/regression_test/tests/validation_guix_glyph_draw_8bpp_screen_aa_text_colors_16.c index daf75d75..e98d8c75 100644 --- a/test/guix_test/regression_test/tests/validation_guix_glyph_draw_8bpp_screen_aa_text_colors_16.c +++ b/test/guix_test/regression_test/tests/validation_guix_glyph_draw_8bpp_screen_aa_text_colors_16.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_glyph_draw_8bpp_screen_aa_text_colors_8.c b/test/guix_test/regression_test/tests/validation_guix_glyph_draw_8bpp_screen_aa_text_colors_8.c index 749c7158..94fdb78e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_glyph_draw_8bpp_screen_aa_text_colors_8.c +++ b/test/guix_test/regression_test/tests/validation_guix_glyph_draw_8bpp_screen_aa_text_colors_8.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_glyph_draw_multi_lang_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_glyph_draw_multi_lang_16bpp.c index 73c17d93..9e65989b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_glyph_draw_multi_lang_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_glyph_draw_multi_lang_16bpp.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the prompt drawing example. These operations simulate + on the prompt drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_glyph_draw_multi_lang_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_glyph_draw_multi_lang_32bpp.c index 92de1c4e..7c26f5b7 100644 --- a/test/guix_test/regression_test/tests/validation_guix_glyph_draw_multi_lang_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_glyph_draw_multi_lang_32bpp.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the prompt drawing example. These operations simulate + on the prompt drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_glyph_draw_multi_lang_8bpp.c b/test/guix_test/regression_test/tests/validation_guix_glyph_draw_multi_lang_8bpp.c index 04cabaef..5d2c9789 100644 --- a/test/guix_test/regression_test/tests/validation_guix_glyph_draw_multi_lang_8bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_glyph_draw_multi_lang_8bpp.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the prompt drawing example. These operations simulate + on the prompt drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_graphics_arc_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_graphics_arc_32bpp.c index 2be5ce03..874cc805 100644 --- a/test/guix_test/regression_test/tests/validation_guix_graphics_arc_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_graphics_arc_32bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -95,7 +95,7 @@ char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_graphics_arc_draw.c b/test/guix_test/regression_test/tests/validation_guix_graphics_arc_draw.c index e56fdfde..052da6eb 100644 --- a/test/guix_test/regression_test/tests/validation_guix_graphics_arc_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_graphics_arc_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_graphics_circle_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_graphics_circle_32bpp.c index 50e22233..7b6624ca 100644 --- a/test/guix_test/regression_test/tests/validation_guix_graphics_circle_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_graphics_circle_32bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -74,7 +74,7 @@ static int pixelmap_fill_value[] = {GX_FALSE, GX_TRUE}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -116,7 +116,7 @@ int index; { pixelmap_index = pixelmap_id_index; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -143,7 +143,7 @@ int index; } else { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_graphics_ellipse_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_graphics_ellipse_32bpp.c index cc5120cb..8dcdd658 100644 --- a/test/guix_test/regression_test/tests/validation_guix_graphics_ellipse_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_graphics_ellipse_32bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -84,7 +84,7 @@ char test_comment[256]; static INT brush_alpha_value[] = {0, 155, 255}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_graphics_palette_arc.c b/test/guix_test/regression_test/tests/validation_guix_graphics_palette_arc.c index 513b4228..8bfa7b9c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_graphics_palette_arc.c +++ b/test/guix_test/regression_test/tests/validation_guix_graphics_palette_arc.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -62,7 +62,7 @@ GX_BOOL style_status[2] = {GX_TRUE, GX_FALSE}; INT angle_value[] = {-10, 13, 273, 368, 444}; INT brush_width_value[] = {0, 1, 9, 13}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) diff --git a/test/guix_test/regression_test/tests/validation_guix_graphics_palette_circle.c b/test/guix_test/regression_test/tests/validation_guix_graphics_palette_circle.c index fc5c7c00..e1c81e78 100644 --- a/test/guix_test/regression_test/tests/validation_guix_graphics_palette_circle.c +++ b/test/guix_test/regression_test/tests/validation_guix_graphics_palette_circle.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ extern GX_STUDIO_DISPLAY_INFO graphics_palette_display_table[]; GX_BOOL style_status[2] = {GX_TRUE, GX_FALSE}; INT brush_width_value[] = {0, 1, 9, 13}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) diff --git a/test/guix_test/regression_test/tests/validation_guix_graphics_palette_ellipse.c b/test/guix_test/regression_test/tests/validation_guix_graphics_palette_ellipse.c index af7a3d5e..808fe92d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_graphics_palette_ellipse.c +++ b/test/guix_test/regression_test/tests/validation_guix_graphics_palette_ellipse.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -62,7 +62,7 @@ GX_BOOL style_status[2] = {GX_TRUE, GX_FALSE}; INT brush_width_value[] = {0, 1, 9, 13}; GX_RESOURCE_ID fill_pixelmap_id[] = {GX_PIXELMAP_ID_RAW, GX_PIXELMAP_ID_COMPRESSED, GX_PIXELMAP_ID_TRANSPARENT, GX_PIXELMAP_ID_CMOPRESSED_TRANSPARENT}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) diff --git a/test/guix_test/regression_test/tests/validation_guix_graphics_palette_pie.c b/test/guix_test/regression_test/tests/validation_guix_graphics_palette_pie.c index 9812a782..c939566c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_graphics_palette_pie.c +++ b/test/guix_test/regression_test/tests/validation_guix_graphics_palette_pie.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -62,7 +62,7 @@ GX_BOOL style_status[2] = {GX_TRUE, GX_FALSE}; INT angle_value[] = {-10, 13, 273, 368, 444}; INT brush_width_value[] = {0, 1, 9, 13}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) diff --git a/test/guix_test/regression_test/tests/validation_guix_graphics_palette_polygon.c b/test/guix_test/regression_test/tests/validation_guix_graphics_palette_polygon.c index 44a26636..9d940278 100644 --- a/test/guix_test/regression_test/tests/validation_guix_graphics_palette_polygon.c +++ b/test/guix_test/regression_test/tests/validation_guix_graphics_palette_polygon.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ extern GX_STUDIO_DISPLAY_INFO graphics_palette_display_table[]; GX_BOOL style_status[2] = {GX_TRUE, GX_FALSE}; INT brush_width_value[] = {0, 1, 9, 13}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) diff --git a/test/guix_test/regression_test/tests/validation_guix_graphics_pie_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_graphics_pie_32bpp.c index 35a155d3..63ac562e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_graphics_pie_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_graphics_pie_32bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -91,7 +91,7 @@ char test_comment[256]; static INT brush_alpha_value[] = {0, 155, 255}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_graphics_pie_draw.c b/test/guix_test/regression_test/tests/validation_guix_graphics_pie_draw.c index c39c6fea..52d51fa3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_graphics_pie_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_graphics_pie_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_graphics_polygon_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_graphics_polygon_32bpp.c index c3921682..c685d23a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_graphics_polygon_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_graphics_polygon_32bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ static INT brush_alpha_value[] = {0, 155, 255}; GX_BOOL style_status[2] = {GX_TRUE, GX_FALSE}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_graphics_rectangle_draw.c b/test/guix_test/regression_test/tests/validation_guix_graphics_rectangle_draw.c index dd45f0d7..a2d484e9 100644 --- a/test/guix_test/regression_test/tests/validation_guix_graphics_rectangle_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_graphics_rectangle_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -73,7 +73,7 @@ VOID test_graphics_draw(GX_WINDOW *window) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_horizontal_gradient_no_output.c b/test/guix_test/regression_test/tests/validation_guix_horizontal_gradient_no_output.c index 67c97449..64dac84d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_horizontal_gradient_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_horizontal_gradient_no_output.c @@ -22,7 +22,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_application_define(first_unused_memory); @@ -39,7 +39,7 @@ VOID tx_application_define(void *first_unused_memory) /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) diff --git a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_animation.c b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_animation.c index 0f695a96..fb71b742 100644 --- a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_animation.c +++ b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_animation.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -113,7 +113,7 @@ GX_TIMER *found; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_children_position_no_output.c b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_children_position_no_output.c index 0ea798d4..d05ec77e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_children_position_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_children_position_no_output.c @@ -22,7 +22,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_drag_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_drag_32bpp.c index 5e8aa987..b9977e3e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_drag_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_drag_32bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ char test_comment[256]; #define YPOS_2 250 /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_event_process.c b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_event_process.c index b8bb3ed8..350745e8 100644 --- a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_event_process.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_event_process_pen_up.c b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_event_process_pen_up.c index 14ee3195..179f8b08 100644 --- a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_event_process_pen_up.c +++ b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_event_process_pen_up.c @@ -33,7 +33,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -56,7 +56,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_page_index_set.c b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_page_index_set.c index 6929fe17..d6798806 100644 --- a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_page_index_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_page_index_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ int index_list[]={18,26,1,10,0,5,7,0,15,25,19}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_scroll.c b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_scroll.c index 5ab486b5..9ff00dc9 100644 --- a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_scroll.c +++ b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_scroll.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -78,7 +78,7 @@ TEST test_list[]={ char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_scroll_with_large_value.c b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_scroll_with_large_value.c index 006d487a..016f6e49 100644 --- a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_scroll_with_large_value.c +++ b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_scroll_with_large_value.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -96,7 +96,7 @@ GX_EVENT my_event; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_select.c b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_select.c index 2bc3240e..de9ad754 100644 --- a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_select.c +++ b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_select.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -63,7 +63,7 @@ char test_comment[256]; #define ITEM_2_X 571 /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_selected_set.c b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_selected_set.c index 57b7099b..5ef94115 100644 --- a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_selected_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_selected_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -82,7 +82,7 @@ GX_EVENT my_event; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_selected_widget_get_no_output.c b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_selected_widget_get_no_output.c index 96762ac2..ca19ba19 100644 --- a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_selected_widget_get_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_selected_widget_get_no_output.c @@ -22,7 +22,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_set_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_set_32bpp.c index 51c8861f..bf8641b2 100644 --- a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_set_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_set_32bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ char test_comment[256]; int index_value[]={18,26,1,10,0,5,7,0,15,25,19}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_total_columns_set.c b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_total_columns_set.c index 078a4dcd..28a02eec 100644 --- a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_total_columns_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_total_columns_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -80,7 +80,7 @@ static void select_col(int col) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_wrap.c b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_wrap.c index 8bf9a234..bc5f21ba 100644 --- a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_wrap.c +++ b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_wrap.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_wrap_1.c b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_wrap_1.c index 30b4e0b2..fe404c4c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_horizontal_list_wrap_1.c +++ b/test/guix_test/regression_test/tests/validation_guix_horizontal_list_wrap_1.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_horizontal_screen_drag_animation.c b/test/guix_test/regression_test/tests/validation_guix_horizontal_screen_drag_animation.c index c6cebdab..cd6e0fa4 100644 --- a/test/guix_test/regression_test/tests/validation_guix_horizontal_screen_drag_animation.c +++ b/test/guix_test/regression_test/tests/validation_guix_horizontal_screen_drag_animation.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -119,7 +119,7 @@ UINT test_h_menu_event_handler(GX_WINDOW *window, GX_EVENT *event_ptr) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_horizontal_screen_drag_animation_with_block_move.c b/test/guix_test/regression_test/tests/validation_guix_horizontal_screen_drag_animation_with_block_move.c index 16004836..30bc651b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_horizontal_screen_drag_animation_with_block_move.c +++ b/test/guix_test/regression_test/tests/validation_guix_horizontal_screen_drag_animation_with_block_move.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -102,7 +102,7 @@ TX_SEMAPHORE semaphore_memory; GX_CHAR *test_comments[1]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_horizontal_screen_drag_animation_with_canvas.c b/test/guix_test/regression_test/tests/validation_guix_horizontal_screen_drag_animation_with_canvas.c index db2cae39..38a1250e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_horizontal_screen_drag_animation_with_canvas.c +++ b/test/guix_test/regression_test/tests/validation_guix_horizontal_screen_drag_animation_with_canvas.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -102,7 +102,7 @@ TX_SEMAPHORE semaphore_memory; GX_CHAR *test_comments[1]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_horizontal_screen_drag_animation_with_easing_func.c b/test/guix_test/regression_test/tests/validation_guix_horizontal_screen_drag_animation_with_easing_func.c index 0ecc2c7a..f56ca784 100644 --- a/test/guix_test/regression_test/tests/validation_guix_horizontal_screen_drag_animation_with_easing_func.c +++ b/test/guix_test/regression_test/tests/validation_guix_horizontal_screen_drag_animation_with_easing_func.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -81,7 +81,7 @@ TX_SEMAPHORE semaphore_memory; GX_CHAR *test_comments[1]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_horizontal_scrollbar_create.c b/test/guix_test/regression_test/tests/validation_guix_horizontal_scrollbar_create.c index 452c2a62..686a30d4 100644 --- a/test/guix_test/regression_test/tests/validation_guix_horizontal_scrollbar_create.c +++ b/test/guix_test/regression_test/tests/validation_guix_horizontal_scrollbar_create.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_icon_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_icon_24xrgb.c index a5925058..bb576151 100644 --- a/test/guix_test/regression_test/tests/validation_guix_icon_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_icon_24xrgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the icon drawing example. These operations simulate + on the icon drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_icon_button_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_icon_button_24xrgb.c index ed995470..0b64d145 100644 --- a/test/guix_test/regression_test/tests/validation_guix_icon_button_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_icon_button_24xrgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -63,7 +63,7 @@ static ULONG event_type[] = {GX_EVENT_PEN_DOWN, GX_EVENT_PEN_UP}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_image_reader_colorspace_convert_1bpp.c b/test/guix_test/regression_test/tests/validation_guix_image_reader_colorspace_convert_1bpp.c index e97d2afd..0b0082e3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_image_reader_colorspace_convert_1bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_image_reader_colorspace_convert_1bpp.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -73,7 +73,7 @@ extern GX_UBYTE image_reader_mode; extern void cleanup_output_pixelmaps(); /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_image_reader_colorspace_convert_4bpp.c b/test/guix_test/regression_test/tests/validation_guix_image_reader_colorspace_convert_4bpp.c index 9ac1a63c..81a8a725 100644 --- a/test/guix_test/regression_test/tests/validation_guix_image_reader_colorspace_convert_4bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_image_reader_colorspace_convert_4bpp.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -119,7 +119,7 @@ GX_PIXELMAP *pixelmap; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_image_reader_jpeg_decode_no_output.c b/test/guix_test/regression_test/tests/validation_guix_image_reader_jpeg_decode_no_output.c index 2433a3b9..94d11a87 100644 --- a/test/guix_test/regression_test/tests/validation_guix_image_reader_jpeg_decode_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_image_reader_jpeg_decode_no_output.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_image_reader_pixel_write_callback_set_no_output.c b/test/guix_test/regression_test/tests/validation_guix_image_reader_pixel_write_callback_set_no_output.c index e49c5b04..6dfe7733 100644 --- a/test/guix_test/regression_test/tests/validation_guix_image_reader_pixel_write_callback_set_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_image_reader_pixel_write_callback_set_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_image_reader_png_decode_no_output.c b/test/guix_test/regression_test/tests/validation_guix_image_reader_png_decode_no_output.c index 3b58ac28..b4fc2219 100644 --- a/test/guix_test/regression_test/tests/validation_guix_image_reader_png_decode_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_image_reader_png_decode_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_image_reader_rle_encode_no_output.c b/test/guix_test/regression_test/tests/validation_guix_image_reader_rle_encode_no_output.c index 5880373e..af3dd150 100644 --- a/test/guix_test/regression_test/tests/validation_guix_image_reader_rle_encode_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_image_reader_rle_encode_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_image_reader_start_no_output.c b/test/guix_test/regression_test/tests/validation_guix_image_reader_start_no_output.c index 88b765a0..1e61886c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_image_reader_start_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_image_reader_start_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_invalid_shape_draw.c b/test/guix_test/regression_test/tests/validation_guix_invalid_shape_draw.c index 905dedc0..2d0e8f92 100644 --- a/test/guix_test/regression_test/tests/validation_guix_invalid_shape_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_invalid_shape_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_jpeg_draw_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_jpeg_draw_16bpp.c index 3520ff11..c1f335f5 100644 --- a/test/guix_test/regression_test/tests/validation_guix_jpeg_draw_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_jpeg_draw_16bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -85,7 +85,7 @@ GX_PIXELMAP *map; gx_canvas_pixelmap_draw(xpos, ypos, map); } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_jpeg_draw_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_jpeg_draw_32bpp.c index c6da25f5..7062db6c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_jpeg_draw_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_jpeg_draw_32bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -89,7 +89,7 @@ GX_PIXELMAP *map; gx_canvas_pixelmap_draw(xpos, ypos, map); } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_kerning_glyph_draw_32bpp_screen.c b/test/guix_test/regression_test/tests/validation_guix_kerning_glyph_draw_32bpp_screen.c index 06287f4b..04705884 100644 --- a/test/guix_test/regression_test/tests/validation_guix_kerning_glyph_draw_32bpp_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_kerning_glyph_draw_32bpp_screen.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -79,7 +79,7 @@ GX_EVENT my_event; { for(Mouse_index = 0; Mouse_index < 2; Mouse_index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_kerning_glyph_draw_32bpp_screen_binary_source.c b/test/guix_test/regression_test/tests/validation_guix_kerning_glyph_draw_32bpp_screen_binary_source.c index 40dd7383..1d3c645e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_kerning_glyph_draw_32bpp_screen_binary_source.c +++ b/test/guix_test/regression_test/tests/validation_guix_kerning_glyph_draw_32bpp_screen_binary_source.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_kerning_glyph_in_string_table.c b/test/guix_test/regression_test/tests/validation_guix_kerning_glyph_in_string_table.c index dcab299d..0428065d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_kerning_glyph_in_string_table.c +++ b/test/guix_test/regression_test/tests/validation_guix_kerning_glyph_in_string_table.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_line_1bpp.c b/test/guix_test/regression_test/tests/validation_guix_line_1bpp.c index 02af73e4..6ec8de43 100644 --- a/test/guix_test/regression_test/tests/validation_guix_line_1bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_line_1bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -109,7 +109,7 @@ GX_RECTANGLE size; { if(pattern_index) line_pattern = 0x0f0f0f0f; else line_pattern = 0; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -142,7 +142,7 @@ GX_RECTANGLE size; { is_round = round_end; line_pattern = 0; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -175,7 +175,7 @@ GX_RECTANGLE size; { is_round = round_end; line_pattern = 0; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -220,7 +220,7 @@ GX_RECTANGLE size; { if(pattern_index) line_pattern = 0x0f0f0f0f; else line_pattern = 0; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -253,7 +253,7 @@ GX_RECTANGLE size; { is_round = round_end; line_pattern = 0; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -286,7 +286,7 @@ GX_RECTANGLE size; { is_round = round_end; line_pattern = 0; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_line_8bpp.c b/test/guix_test/regression_test/tests/validation_guix_line_8bpp.c index 5a3250a0..e2f94d34 100644 --- a/test/guix_test/regression_test/tests/validation_guix_line_8bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_line_8bpp.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ char test_comment[256]; extern GX_STUDIO_DISPLAY_INFO lines_8bpp_display_table[]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -102,7 +102,7 @@ GX_CONST GX_THEME *theme_ptr; for(angle_index = 0; angle_index < (INT)(sizeof(angle_value) / sizeof(int)); angle_index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_line_chart.c b/test/guix_test/regression_test/tests/validation_guix_line_chart.c index 25d48c3c..6b5259e4 100644 --- a/test/guix_test/regression_test/tests/validation_guix_line_chart.c +++ b/test/guix_test/regression_test/tests/validation_guix_line_chart.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -55,7 +55,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_lines_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_lines_24xrgb.c index 9b31e3e8..5de85d35 100644 --- a/test/guix_test/regression_test/tests/validation_guix_lines_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_lines_24xrgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ static int rounded_value[] = {GX_TRUE, GX_FALSE}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -96,7 +96,7 @@ GX_RECTANGLE size; for(brush_alpha_index = 0; brush_alpha_index < (INT)(sizeof(brush_alpha_value)/sizeof(INT)); brush_alpha_index++) { brush_alpha = brush_alpha_value[brush_alpha_index]; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -144,7 +144,7 @@ GX_RECTANGLE size; { brush_alpha = brush_alpha_value[brush_alpha_index]; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_lines_565rgb.c b/test/guix_test/regression_test/tests/validation_guix_lines_565rgb.c index 0ed20281..26cebb5a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_lines_565rgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_lines_565rgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -144,7 +144,7 @@ static GX_RECTANGLE widget_size[] = { }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -165,7 +165,7 @@ int index; { for(lines_screen_line_angle = 0; lines_screen_line_angle < 360; lines_screen_line_angle+=30) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_lines_clip_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_lines_clip_24xrgb.c index 8f28b665..1654b112 100644 --- a/test/guix_test/regression_test/tests/validation_guix_lines_clip_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_lines_clip_24xrgb.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -76,7 +76,7 @@ static int rounded_value[] = {GX_TRUE, GX_FALSE}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -113,7 +113,7 @@ GX_RECTANGLE size; for(cover_index = 0; cover_index < (INT)(sizeof(cover_value) / sizeof(int)); cover_index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_lines_clip_565rgb.c b/test/guix_test/regression_test/tests/validation_guix_lines_clip_565rgb.c index be0bdc50..e7e18f57 100644 --- a/test/guix_test/regression_test/tests/validation_guix_lines_clip_565rgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_lines_clip_565rgb.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -76,7 +76,7 @@ static int rounded_value[] = {GX_TRUE, GX_FALSE}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -113,7 +113,7 @@ GX_RECTANGLE size; for(cover_index = 0; cover_index < (INT)(sizeof(cover_value) / sizeof(int)); cover_index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_menu_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_menu_32bpp.c index 4746bf31..95f06e2b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_menu_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_menu_32bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -83,7 +83,7 @@ static char comments[9][30]={ }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_menu_event_process_no_output.c b/test/guix_test/regression_test/tests/validation_guix_menu_event_process_no_output.c index 984a1b0f..09e7eb5f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_menu_event_process_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_menu_event_process_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_menu_position.c b/test/guix_test/regression_test/tests/validation_guix_menu_position.c index a6ff2012..a5ebb76d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_menu_position.c +++ b/test/guix_test/regression_test/tests/validation_guix_menu_position.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_menu_text_alignment.c b/test/guix_test/regression_test/tests/validation_guix_menu_text_alignment.c index a02af3da..4c1351c3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_menu_text_alignment.c +++ b/test/guix_test/regression_test/tests/validation_guix_menu_text_alignment.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_menu_text_offset_set.c b/test/guix_test/regression_test/tests/validation_guix_menu_text_offset_set.c index 207ddae5..5351ddba 100644 --- a/test/guix_test/regression_test/tests/validation_guix_menu_text_offset_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_menu_text_offset_set.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_button_text_set_no_output.c b/test/guix_test/regression_test/tests/validation_guix_ml_button_text_set_no_output.c index 7b39a06c..de2fceb5 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_button_text_set_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_button_text_set_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_input_char_insert_no_output.c b/test/guix_test/regression_test/tests/validation_guix_ml_input_char_insert_no_output.c index 70fa83d4..6f4eeff0 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_input_char_insert_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_input_char_insert_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_input_no_output.c b/test/guix_test/regression_test/tests/validation_guix_ml_input_no_output.c index 8b39b3ac..85e3dd0c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_input_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_input_no_output.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_input_text_set_no_output.c b/test/guix_test/regression_test/tests/validation_guix_ml_input_text_set_no_output.c index a319e952..87c9f0d0 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_input_text_set_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_input_text_set_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_16bpp.c index c4f58b6a..3fc4f1ea 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_16bpp.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_16bpp", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -62,7 +62,7 @@ int text_alignment[]={GX_STYLE_TEXT_LEFT, GX_STYLE_TEXT_CENTER, GX_STYLE_TEXT_R int key_event[] = {GX_KEY_UP_ARROW, GX_KEY_UP_ARROW, GX_KEY_DELETE, GX_KEY_DELETE, GX_KEY_DELETE, GX_KEY_BACKSPACE, GX_KEY_BACKSPACE}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -131,7 +131,7 @@ GX_MULTI_LINE_TEXT_INPUT *text_input; for(key_value = 0x21; key_value <= 0x7e; key_value++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -180,7 +180,7 @@ GX_MULTI_LINE_TEXT_INPUT *text_input; /* multi line text input scroll up. */ for( ypos = 290; ypos >= 123; ypos -= 10) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -209,7 +209,7 @@ GX_MULTI_LINE_TEXT_INPUT *text_input; /* multi line text input scroll down. */ for(ypos = 150; ypos < 320; ypos += 10) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_32bpp.c index f696f63f..0d1cdb7c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_32bpp.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_32bpp", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -96,7 +96,7 @@ GX_MULTI_LINE_TEXT_INPUT *text_input; for(key_value = 0x21; key_value <= 0x7e; key_value++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -123,7 +123,7 @@ GX_MULTI_LINE_TEXT_INPUT *text_input; /* multi line text input scroll up. */ for( ypos = 290; ypos >= 123; ypos -= 10) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -150,7 +150,7 @@ GX_MULTI_LINE_TEXT_INPUT *text_input; /* multi line text input scroll down. */ for(ypos = 150; ypos < 320; ypos += 10) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_api_select.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_api_select.c index 38795a10..dcc51334 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_api_select.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_api_select.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_api_select", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -218,7 +218,7 @@ GX_SCROLLBAR *scroll; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_api_select_invisible.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_api_select_invisible.c index e7d5aeb2..88ea937f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_api_select_invisible.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_api_select_invisible.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_api_select_invisible", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; char test_string[]="0123456789"; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_backspace_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_backspace_16bpp.c index 57a07420..8dd4b533 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_backspace_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_backspace_16bpp.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_backspace_16bpp", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -62,7 +62,7 @@ char test_comment[256]; char test_string[]="why do the birds go on singing, why do the seas rush the shore."; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_block_move.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_block_move.c index 899abf4d..1723bace 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_block_move.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_block_move.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_block_move", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -80,7 +80,7 @@ TEST test_list[]={ }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_cache.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_cache.c index bf662508..30047a23 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_cache.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_cache.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_cache", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -112,7 +112,7 @@ TEST test_list[]={ }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_char_insert.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_char_insert.c index 42714665..1edeff47 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_char_insert.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_char_insert.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_char_insert", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; char test_string[]="test\r\ntest\rtest\n"; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_copy.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_copy.c index 249870b0..dbacd2f1 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_copy.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_copy.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_copy", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_create.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_create.c index 78e5026e..a82b655a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_create.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_create.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_create", /* Test name */ 0, 0, 100, 100 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; char input_buffer[10]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_cursor_pos_update.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_cursor_pos_update.c index 42323eb1..074e3ad4 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_cursor_pos_update.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_cursor_pos_update.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_cursor_pos_update", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -88,7 +88,7 @@ TEST test_list[]={ }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_delete.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_delete.c index c7b334d3..997185fc 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_delete.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_delete.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_delete", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_drag_select.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_drag_select.c index c6c568bc..6eea316b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_drag_select.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_drag_select.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_drag_select", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -88,7 +88,7 @@ TEST test_list[]={ }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_event_process.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_event_process.c index 4ce5c469..02cc0c08 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_event_process.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_event_process", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -97,7 +97,7 @@ TEST test_list[]={ }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_invalid_font.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_invalid_font.c index f68d0e56..40e2f338 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_invalid_font.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_invalid_font.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_invalid_font", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; char test_string[]="01234567"; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_key_api.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_key_api.c index e5c7883c..cf76ce00 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_key_api.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_key_api.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_key_api", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ char test_comment[256]; GX_CONST GX_CHAR test_string[] = "first line\rsecond line"; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_key_down_process.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_key_down_process.c index e733f078..a3620558 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_key_down_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_key_down_process.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_key_down_process", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_left_arrow.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_left_arrow.c index 0aec70c5..dcba90d3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_left_arrow.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_left_arrow.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_left_arrow", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -66,7 +66,7 @@ GX_UBYTE test_string_1[]={ 0x80, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0xe4, 0xb8, 0x8d, 0xe8, 0xa6, 0x81, 0xe7, 0xa5, 0x9e, 0xe7, 0x9a, 0x84, 0xe5, 0x85, 0x89, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x00}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_left_right_arrow_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_left_right_arrow_16bpp.c index 82999861..b00a9b9d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_left_right_arrow_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_left_right_arrow_16bpp.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_left_right_arrow_16bpp", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ GX_RESOURCE_ID text_alignment[] = { }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_line_break.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_line_break.c index 2df30d41..1384bae9 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_line_break.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_line_break.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_line_break", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -99,7 +99,7 @@ TEST test_list[]={ }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -165,7 +165,7 @@ int repeat_times; for(index = 0; index <= (int)(sizeof(test_string)/sizeof(char)); index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_line_space.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_line_space.c index 4ceb9a44..a37cb80b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_line_space.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_line_space.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_line_space", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -90,7 +90,7 @@ TEST test_list[]={ }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_mark_next.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_mark_next.c index ffd42852..d3b402aa 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_mark_next.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_mark_next.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_mark_next", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; char test_string[]="t\nt"; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_mark_previous.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_mark_previous.c index 0d14a6d9..90b32597 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_mark_previous.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_mark_previous.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_mark_previous", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; char test_string[]="t\nt"; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_paste.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_paste.c index 43243606..17b3c350 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_paste.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_paste.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_paste", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_property.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_property.c index 1ba93b5d..c0b7010e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_property.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_property.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_property", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ char test_comment[256]; char input_buffer[3]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_select_copy_paste.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_select_copy_paste.c index 08503a34..7aead5cb 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_select_copy_paste.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_select_copy_paste.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_select_copy_paste", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -249,7 +249,7 @@ GX_SCROLLBAR *scroll; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_text_set.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_text_set.c index f6231240..b77ff90a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_input_text_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_input_text_set.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_input_text_set", /* Test name */ 30, 120, 245, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ char test_comment[256]; char test_string[]="1\r2\r3\r4\r5\r6\r7\r8\r9\r10\r11\r12\r13\r14\r15\r16\r17\r18\r19\r20\r21\r22\r23\r24\r25\r26\r27\r28\r29\r30\r31\r32\r33\r34\r35"; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_16bpp_text_set.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_16bpp_text_set.c index 523046dd..8234cb44 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_16bpp_text_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_16bpp_text_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ GX_CHAR test_text[]="\r33\r32\r31\r30\r29\r28\r27\r26\r25\r24\r23\r22\r21\r20\r1 char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_32bpp.c index 9353b0c3..241074ad 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_32bpp.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_view_32bpp", /* Test name */ 20, 101, 264, 424 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text view drawing area. */ }; @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text view example. These operations simulate + on the multi line text view example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ char ft_size[2][6]={"18pix", "24pix"}; char text_b[] = "text B"; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -95,7 +95,7 @@ int pathlen; /* multi line text view scroll down. */ for(ypos = 131; ypos < 388; ypos += 1) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -127,7 +127,7 @@ int pathlen; /* multi line text view scroll up */ for(ypos = 388; ypos >= 131; ypos -= 10) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_align_center_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_align_center_16bpp.c index 7fc500af..9121c1d3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_align_center_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_align_center_16bpp.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_view_align_center_16bpp", /* Test name */ 40, 110, 230, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text view drawing area. */ }; @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text view example. These operations simulate + on the multi line text view example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -65,7 +65,7 @@ char ft_depth[3][5]={"1bpp", "4bpp", "8bpp"}; char ft_size[2][6]={"18pix", "24pix"}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -86,7 +86,7 @@ GX_MULTI_LINE_TEXT_VIEW *view; /* multi line text view scroll down. */ for(ypos = 140; ypos < 300; ypos += 10) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -113,7 +113,7 @@ GX_MULTI_LINE_TEXT_VIEW *view; /* multi line text view scroll up */ for(ypos = 290; ypos >= 120; ypos -= 10) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_align_right_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_align_right_16bpp.c index c7aa4ff5..1c817700 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_align_right_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_align_right_16bpp.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_view_align_right_16bpp", /* Test name */ 40, 110, 230, 330 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text view drawing area. */ }; @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text view example. These operations simulate + on the multi line text view example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -65,7 +65,7 @@ char ft_depth[3][5]={"1bpp", "4bpp", "8bpp"}; char ft_size[2][6]={"18pix", "24pix"}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -86,7 +86,7 @@ GX_MULTI_LINE_TEXT_VIEW *view; /* multi line text view scroll down. */ for(ypos = 140; ypos < 300; ypos += 10) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -113,7 +113,7 @@ GX_MULTI_LINE_TEXT_VIEW *view; /* multi line text view scroll up */ for(ypos = 290; ypos >= 120; ypos -= 10) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_cache_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_cache_32bpp.c index 01490df7..e1f0956d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_cache_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_cache_32bpp.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_view_cache_32bpp", /* Test name */ 20, 101, 264, 424 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text view drawing area. */ }; @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text view example. These operations simulate + on the multi line text view example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -63,7 +63,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_display_info_get.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_display_info_get.c index 64d8021d..83858a65 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_display_info_get.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_display_info_get.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_event_process.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_event_process.c index 5b74ceb1..bc3b4a6d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_event_process.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_font_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_font_16bpp.c index 4484d59a..8b70ad72 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_font_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_font_16bpp.c @@ -8,7 +8,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_view_font_16bpp", /* Test name */ 30, 40, 196, 191 /* Define the coordinates of the capture area. - In this test, we only need to capture the + In this test, we only need to capture the multi_line_text_view window drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the canvas_text_view drawing example. These operations + on the canvas_text_view drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_font_8bpp.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_font_8bpp.c index 0b2affbd..67f3f96b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_font_8bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_font_8bpp.c @@ -8,7 +8,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_view_font_8bpp", /* Test name */ 30, 35, 194, 154 /* Define the coordinates of the capture area. - In this test, we only need to capture the + In this test, we only need to capture the multi_line_text_view window drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the canvas_text_view drawing example. These operations + on the canvas_text_view drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_scroll.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_scroll.c index 7ca1e03c..2dff9198 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_scroll.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_scroll.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_vcenter.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_vcenter.c index 9af33bb6..caf552a1 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_vcenter.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_vcenter.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -57,7 +57,7 @@ VOID tx_application_define(void *first_unused_memory) #include "demo_guix_ml_text_view_vcenter.c" /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_with_scroll_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_with_scroll_32bpp.c index 65a072e5..3746399f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_text_view_with_scroll_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_text_view_with_scroll_32bpp.c @@ -9,7 +9,7 @@ TEST_PARAM test_parameter = { "guix_ml_text_view_with_scroll_32bpp", /* Test name */ 20, 45, 229, 243 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text view drawing area. */ }; @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text view example. These operations simulate + on the multi line text view example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -63,7 +63,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -75,7 +75,7 @@ GX_EVENT scroll_event; /* multi line text view scroll down. */ for(ypos = 75; ypos < 370; ypos += 10) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -105,7 +105,7 @@ GX_EVENT scroll_event; /* multi line text view scroll up */ for(ypos = 280; ypos >= 80; ypos -= 10) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_view_no_output.c b/test/guix_test/regression_test/tests/validation_guix_ml_view_no_output.c index 79db7013..d3b4016c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_view_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_view_no_output.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_ml_view_text_set_no_output.c b/test/guix_test/regression_test/tests/validation_guix_ml_view_text_set_no_output.c index 0e14016a..1ef855ae 100644 --- a/test/guix_test/regression_test/tests/validation_guix_ml_view_text_set_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_ml_view_text_set_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_character_insert_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_character_insert_24xrgb.c index 0c14d7c2..dd37b2b1 100644 --- a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_character_insert_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_character_insert_24xrgb.c @@ -8,7 +8,7 @@ TEST_PARAM test_parameter = { "guix_multi_line_text_input_character_insert_24xrgb", /* Test name */ 311, 232, 582, 404 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -62,7 +62,7 @@ static USHORT noprint_key_value[] = {GX_KEY_SPACE, GX_KEY_SELECT}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -103,7 +103,7 @@ USHORT key_value; { my_event.gx_event_payload.gx_event_ushortdata[0] = key_value; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_cursor_draw_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_cursor_draw_24xrgb.c index ef3ac66a..bf4d234b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_cursor_draw_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_cursor_draw_24xrgb.c @@ -8,7 +8,7 @@ TEST_PARAM test_parameter = { "guix_multi_line_text_input_cursor_draw_24xrgb", /* Test name */ 311, 232, 582, 404 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text input drawing area. */ }; @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text input example. These operations simulate + on the multi line text input example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -87,7 +87,7 @@ GX_KEY_END char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_down_arrow.c b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_down_arrow.c index cb1dd79f..7980bbd1 100644 --- a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_down_arrow.c +++ b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_down_arrow.c @@ -36,7 +36,7 @@ VOID tx_application_define(void *first_unused_memory) /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ GX_CHAR test_string[]= 31\r32\r33\r34\r35\r36\r37ABCDEFG\r38abcdefghijk\r39ABCDEF\r40"; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG uinput) { diff --git a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_event_process.c b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_event_process.c index b802a8df..0cf9a290 100644 --- a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_event_process.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -81,7 +81,7 @@ TEST test_list[] ={ static char test_text[] = "It is universally\n acknowledged that\n trust is\n one of the\n most valuable\n assets for\n interpersonal communication. \nHowever, it is \nnot uncommon to have\n misunderstanding and generation\n gap between teachers and students. with the current trend\n of communication becoming necessary and\n indispensable in this ever-changing modern society, building trust is of great\n significance.In order to set up the credibility between teachers and students, on the one hand, as teachers, we should sincerely deal with the students’ problems and difficulties, comprehending their necessities. On the other hand, as students, it is necessary that more understanding and respect should be given. Becoming good friends to have the transpositional consideration each other can build a harmonious atmosphere."; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_fill_color_set.c b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_fill_color_set.c index 84f37b58..633729e7 100644 --- a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_fill_color_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_fill_color_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_left_arrow.c b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_left_arrow.c index 7520c50b..3daedb64 100644 --- a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_left_arrow.c +++ b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_left_arrow.c @@ -36,7 +36,7 @@ VOID tx_application_define(void *first_unused_memory) /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ GX_CHAR test_string[]= 31\r32\r33\r34\r35\r36\r37ABCDE\r\nFG\r38abcdefghijk\r39ABCDEF\r40"; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG uinput) { diff --git a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_text_color_set.c b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_text_color_set.c index e058e834..e0f42ce9 100644 --- a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_text_color_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_text_color_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_text_select.c b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_text_select.c index 4ab289e7..92aa9553 100644 --- a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_text_select.c +++ b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_text_select.c @@ -36,7 +36,7 @@ VOID tx_application_define(void *first_unused_memory) /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ GX_CHAR test_string[]= "0 do you remember the day\r\n we used\r\n to be ABCDEFGHIJKLMN!\r\n@$@*^*\r\n%(*&($#1275\r\n384635098765"; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG uinput) { diff --git a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_up_arrow.c b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_up_arrow.c index 05093754..16c5d622 100644 --- a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_up_arrow.c +++ b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_input_up_arrow.c @@ -36,7 +36,7 @@ VOID tx_application_define(void *first_unused_memory) /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ GX_CHAR test_string[]= 31\r32\r33\r34\r35\r36\r37ABCDEFG\r38abcdefghijk\r39ABCDEF\r40"; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG uinput) { diff --git a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_view_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_view_24xrgb.c index 27583513..c20526ff 100644 --- a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_view_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_view_24xrgb.c @@ -8,7 +8,7 @@ TEST_PARAM test_parameter = { "guix_multi_line_text_view_24xrgb", /* Test name */ 46, 232, 316, 404 /* Define the coordinates of the capture area. - In this test, we only need to capture the multi + In this test, we only need to capture the multi line text view drawing area. */ }; @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the multi line text view example. These operations simulate + on the multi line text view example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ static char *text_array[] = {text_1, text_2, text_3, text_4, text_5, text_6, tex char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -88,7 +88,7 @@ TEXT_SCREEN_CONTROL_BLOCK *text_screen; gx_multi_line_text_view_text_color_set(&text_screen -> text_screen_text_view_1, GX_COLOR_ID_ORANGE, GX_COLOR_ID_ORANGE, GX_COLOR_ID_ORANGE); for(text_index = 0; text_index < 8; text_index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_view_clip_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_view_clip_24xrgb.c index 1b19142b..cc80f48a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_view_clip_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_view_clip_24xrgb.c @@ -8,7 +8,7 @@ TEST_PARAM test_parameter = { "guix_multi_line_text_view_clip_24xrgb", /* Test name */ 0, 0, 229, 189 /* Define the coordinates of the capture area. - In this test, we only need to capture the + In this test, we only need to capture the clip window and multi_line_text_view window drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the canvas_text_view drawing example. These operations + on the canvas_text_view drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_view_font_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_view_font_24xrgb.c index 61ce3253..977a6054 100644 --- a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_view_font_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_view_font_24xrgb.c @@ -8,7 +8,7 @@ TEST_PARAM test_parameter = { "guix_multi_line_text_view_font_24xrgb", /* Test name */ 64, 50, 243, 189 /* Define the coordinates of the capture area. - In this test, we only need to capture the + In this test, we only need to capture the multi_line_text_view window drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the canvas_text_view drawing example. These operations + on the canvas_text_view drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_view_visible_row_compute.c b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_view_visible_row_compute.c index 1d4dd810..0311bfcb 100644 --- a/test/guix_test/regression_test/tests/validation_guix_multi_line_text_view_visible_row_compute.c +++ b/test/guix_test/regression_test/tests/validation_guix_multi_line_text_view_visible_row_compute.c @@ -8,7 +8,7 @@ TEST_PARAM test_parameter = { "guix_multi_line_text_view_visible_row_compute", /* Test name */ 64, 50, 243, 189 /* Define the coordinates of the capture area. - In this test, we only need to capture the + In this test, we only need to capture the multi_line_text_view window drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the canvas_text_view drawing example. These operations + on the canvas_text_view drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_multi_themes_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_multi_themes_16bpp.c index 7805dc44..e71e2cb3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_multi_themes_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_multi_themes_16bpp.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_multi_themes_16bpp_synergy.c b/test/guix_test/regression_test/tests/validation_guix_multi_themes_16bpp_synergy.c index 0103946f..2f20db61 100644 --- a/test/guix_test/regression_test/tests/validation_guix_multi_themes_16bpp_synergy.c +++ b/test/guix_test/regression_test/tests/validation_guix_multi_themes_16bpp_synergy.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_multi_themes_8bpp_palette_theme_1.c b/test/guix_test/regression_test/tests/validation_guix_multi_themes_8bpp_palette_theme_1.c index b89a0d0e..7ac27da0 100644 --- a/test/guix_test/regression_test/tests/validation_guix_multi_themes_8bpp_palette_theme_1.c +++ b/test/guix_test/regression_test/tests/validation_guix_multi_themes_8bpp_palette_theme_1.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_multi_themes_8bpp_palette_theme_2.c b/test/guix_test/regression_test/tests/validation_guix_multi_themes_8bpp_palette_theme_2.c index 08b79123..a7f2e480 100644 --- a/test/guix_test/regression_test/tests/validation_guix_multi_themes_8bpp_palette_theme_2.c +++ b/test/guix_test/regression_test/tests/validation_guix_multi_themes_8bpp_palette_theme_2.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_multi_themes_8bpp_palette_theme_3.c b/test/guix_test/regression_test/tests/validation_guix_multi_themes_8bpp_palette_theme_3.c index 4c074ea1..0bdb8ab7 100644 --- a/test/guix_test/regression_test/tests/validation_guix_multi_themes_8bpp_palette_theme_3.c +++ b/test/guix_test/regression_test/tests/validation_guix_multi_themes_8bpp_palette_theme_3.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_multi_themes_8bpp_palette_theme_4.c b/test/guix_test/regression_test/tests/validation_guix_multi_themes_8bpp_palette_theme_4.c index 50852991..ec7621ac 100644 --- a/test/guix_test/regression_test/tests/validation_guix_multi_themes_8bpp_palette_theme_4.c +++ b/test/guix_test/regression_test/tests/validation_guix_multi_themes_8bpp_palette_theme_4.c @@ -36,7 +36,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_application_define(first_unused_memory); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_multi_themes_8bpp_palette_theme_5.c b/test/guix_test/regression_test/tests/validation_guix_multi_themes_8bpp_palette_theme_5.c index 3a44b7b6..09fad9d3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_multi_themes_8bpp_palette_theme_5.c +++ b/test/guix_test/regression_test/tests/validation_guix_multi_themes_8bpp_palette_theme_5.c @@ -36,7 +36,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_application_define(first_unused_memory); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_non_linear_animation.c b/test/guix_test/regression_test/tests/validation_guix_non_linear_animation.c index 13bd8beb..5b791777 100644 --- a/test/guix_test/regression_test/tests/validation_guix_non_linear_animation.c +++ b/test/guix_test/regression_test/tests/validation_guix_non_linear_animation.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_numeric_pixelmap_prompt.c b/test/guix_test/regression_test/tests/validation_guix_numeric_pixelmap_prompt.c index d7b48e4e..2eb36e58 100644 --- a/test/guix_test/regression_test/tests/validation_guix_numeric_pixelmap_prompt.c +++ b/test/guix_test/regression_test/tests/validation_guix_numeric_pixelmap_prompt.c @@ -26,7 +26,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -74,7 +74,7 @@ int value; for( value = -10000 ; value< 10000 ; value += 1234) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation.*/ gx_validation_set_frame_id(frame_id); diff --git a/test/guix_test/regression_test/tests/validation_guix_numeric_pixelmap_prompt_value_set_no_output.c b/test/guix_test/regression_test/tests/validation_guix_numeric_pixelmap_prompt_value_set_no_output.c index 6d8f3d33..c0f6a15c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_numeric_pixelmap_prompt_value_set_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_numeric_pixelmap_prompt_value_set_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_numeric_prompt.c b/test/guix_test/regression_test/tests/validation_guix_numeric_prompt.c index c2c6ff22..d5874289 100644 --- a/test/guix_test/regression_test/tests/validation_guix_numeric_prompt.c +++ b/test/guix_test/regression_test/tests/validation_guix_numeric_prompt.c @@ -26,7 +26,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -77,7 +77,7 @@ int value; /* Set numeric prompt value. */ gx_numeric_prompt_value_set(&text_screen.text_screen_numeric_prompt, value); - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation.*/ gx_validation_set_frame_id(frame_id); diff --git a/test/guix_test/regression_test/tests/validation_guix_numeric_prompt_value_set_no_output.c b/test/guix_test/regression_test/tests/validation_guix_numeric_prompt_value_set_no_output.c index 194b7005..a8706351 100644 --- a/test/guix_test/regression_test/tests/validation_guix_numeric_prompt_value_set_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_numeric_prompt_value_set_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_palette_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_palette_16bpp.c index 6e0294a1..c1f6c0fe 100644 --- a/test/guix_test/regression_test/tests/validation_guix_palette_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_palette_16bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ static int compressed_value[] = {GX_TRUE, GX_FALSE}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -79,7 +79,7 @@ int frame_id = 1; for(compressed_index = 0; compressed_index < 2; compressed_index++) { compressed = compressed_value[compressed_index]; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_palette_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_palette_32bpp.c index 36e23d53..f3caca9f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_palette_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_palette_32bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ static int compressed_value[] = {GX_TRUE, GX_FALSE}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -79,7 +79,7 @@ int frame_id = 1; for(compressed_index = 0; compressed_index < 2; compressed_index++) { compressed = compressed_value[compressed_index]; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp.c index fd52a707..c4459fdb 100644 --- a/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -104,7 +104,7 @@ GX_PIXELMAP *map; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_glyph_draw.c b/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_glyph_draw.c index 464d4a05..b98ff907 100644 --- a/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_glyph_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_glyph_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -65,7 +65,7 @@ int test_font_ids[]={ char comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_line_draw.c b/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_line_draw.c index a1e806d3..43f0d65e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_line_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_line_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -184,7 +184,7 @@ extern int line_angle; extern int line_width; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_pixelmap_draw.c b/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_pixelmap_draw.c index 3a09afd5..4d176684 100644 --- a/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_pixelmap_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_pixelmap_draw.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -136,7 +136,7 @@ GX_BRUSH *brush; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_resize_screen.c b/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_resize_screen.c index d356bf01..0b1e4b7d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_resize_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_resize_screen.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -75,7 +75,7 @@ extern INT y_ratio; extern GX_RESOURCE_ID resize_pixelmap_id; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_rotate_screen.c b/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_rotate_screen.c index 01f09f49..d7bbfce1 100644 --- a/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_rotate_screen.c +++ b/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_rotate_screen.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -78,7 +78,7 @@ extern GX_BOOL canvas_rotate; static char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_vertical_list.c b/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_vertical_list.c index 68024769..9909881b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_vertical_list.c +++ b/test/guix_test/regression_test/tests/validation_guix_partial_frame_buffer_16bpp_vertical_list.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ static int test_scroll_values[]={ static char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_pixelmap_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_pixelmap_24xrgb.c index 579fc1fa..23f1ce10 100644 --- a/test/guix_test/regression_test/tests/validation_guix_pixelmap_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_pixelmap_24xrgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -70,7 +70,7 @@ static int compressed_value[] = {GX_TRUE, GX_FALSE}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -95,7 +95,7 @@ GX_SLIDER *slider_v; for(vertical_index = 0; vertical_index < (INT)(sizeof(vertical_value) / sizeof(int)); vertical_index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_pixelmap_565rgb.c b/test/guix_test/regression_test/tests/validation_guix_pixelmap_565rgb.c index 3704fb4d..fc449abd 100644 --- a/test/guix_test/regression_test/tests/validation_guix_pixelmap_565rgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_pixelmap_565rgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -70,7 +70,7 @@ static int compressed_value[] = {GX_TRUE, GX_FALSE}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -95,7 +95,7 @@ GX_SLIDER *slider_v; for(vertical_index = 0; vertical_index < (INT)(sizeof(vertical_value) / sizeof(int)); vertical_index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_pixelmap_button_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_pixelmap_button_24xrgb.c index dde61bfd..64c52b32 100644 --- a/test/guix_test/regression_test/tests/validation_guix_pixelmap_button_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_pixelmap_button_24xrgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -63,7 +63,7 @@ static ULONG event_type[] = {GX_EVENT_PEN_DOWN, GX_EVENT_PEN_UP}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_pixelmap_clip_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_pixelmap_clip_24xrgb.c index accfd205..8ce5d1c0 100644 --- a/test/guix_test/regression_test/tests/validation_guix_pixelmap_clip_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_pixelmap_clip_24xrgb.c @@ -26,7 +26,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -56,7 +56,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_pixelmap_clip_565rgb.c b/test/guix_test/regression_test/tests/validation_guix_pixelmap_clip_565rgb.c index 90e3e61e..5fac8b21 100644 --- a/test/guix_test/regression_test/tests/validation_guix_pixelmap_clip_565rgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_pixelmap_clip_565rgb.c @@ -26,7 +26,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -56,7 +56,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_pixelmap_prompt_background_draw.c b/test/guix_test/regression_test/tests/validation_guix_pixelmap_prompt_background_draw.c index c51fdc86..79b306ff 100644 --- a/test/guix_test/regression_test/tests/validation_guix_pixelmap_prompt_background_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_pixelmap_prompt_background_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the prompt drawing example. These operations simulate + on the prompt drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_pixelmap_resize_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_pixelmap_resize_16bpp.c index 8ab145ee..8d21d125 100644 --- a/test/guix_test/regression_test/tests/validation_guix_pixelmap_resize_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_pixelmap_resize_16bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ GX_RESOURCE_ID image[3] = {GX_PIXELMAP_ID_ICON_FOOT, GX_PIXELMAP_ID_RED_APPLE, G float ratio[10] = {0.2, 0.4, 0.6, 0.8, 1, 1.2, 1.4, 1.6, 1.8, 2}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_pixelmap_resize_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_pixelmap_resize_32bpp.c index 658ba74f..afe0ff1a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_pixelmap_resize_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_pixelmap_resize_32bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ GX_RESOURCE_ID image[3] = {GX_PIXELMAP_ID_ICON_FOOT, GX_PIXELMAP_ID_RED_APPLE, G float ratio[10] = {0.2, 0.4, 0.6, 0.8, 1, 1.2, 1.4, 1.6, 1.8, 2}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_pixelmap_resize_8bpp.c b/test/guix_test/regression_test/tests/validation_guix_pixelmap_resize_8bpp.c index 93e414b0..9ff13094 100644 --- a/test/guix_test/regression_test/tests/validation_guix_pixelmap_resize_8bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_pixelmap_resize_8bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -62,7 +62,7 @@ float ratio[10] = {0.2, 0.4, 0.6, 0.8, 1, 1.2, 1.4, 1.6, 1.8, 2}; extern GX_STUDIO_DISPLAY_INFO pixelmap_resize_8bpp_display_table[]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_pixelmap_slider_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_pixelmap_slider_24xrgb.c index 2c7abae7..750aa1d7 100644 --- a/test/guix_test/regression_test/tests/validation_guix_pixelmap_slider_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_pixelmap_slider_24xrgb.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -62,7 +62,7 @@ int needle_insert[] = {-7, -2, -2}; int increment[] = {5, 10}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -138,7 +138,7 @@ GX_RECTANGLE new_size; { for(pos = slider_top; pos <= slider_bottom; pos += 20) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_pixelmap_slider_event_process.c b/test/guix_test/regression_test/tests/validation_guix_pixelmap_slider_event_process.c index 8d3dd2af..e56810fb 100644 --- a/test/guix_test/regression_test/tests/validation_guix_pixelmap_slider_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_pixelmap_slider_event_process.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -71,7 +71,7 @@ TEST test_list[]={ {0, 0, 0, ""} }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_pixelmap_slider_h_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_pixelmap_slider_h_24xrgb.c index 4e4d34d4..0a2bd54d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_pixelmap_slider_h_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_pixelmap_slider_h_24xrgb.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ int increment[] = {5, 10}; int new_pos; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -142,7 +142,7 @@ GX_RECTANGLE new_size; { for(pos = slider_left; pos <= slider_right; pos += 20) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_pixelmap_slider_pixelmap_set.c b/test/guix_test/regression_test/tests/validation_guix_pixelmap_slider_pixelmap_set.c index 06f734e7..4cae6f1b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_pixelmap_slider_pixelmap_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_pixelmap_slider_pixelmap_set.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_pixelmaps_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_pixelmaps_32bpp.c index 586fe0af..37d031ad 100644 --- a/test/guix_test/regression_test/tests/validation_guix_pixelmaps_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_pixelmaps_32bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ char test_comment[256]; static INT brush_alpha_value[] = {0, 100, 200, 255}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -79,7 +79,7 @@ int frame_id = 1; { for(style_index = 0; style_index < 4; style_index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_pixelmaps_4444argb.c b/test/guix_test/regression_test/tests/validation_guix_pixelmaps_4444argb.c index b20fcaba..50019f2f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_pixelmaps_4444argb.c +++ b/test/guix_test/regression_test/tests/validation_guix_pixelmaps_4444argb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ char test_comment[256]; static INT brush_alpha_value[] = {0, 100, 200, 255}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -94,7 +94,7 @@ GX_DISPLAY *display; brush_alpha = brush_alpha_value[brush_alpha_index]; for(style_index = 0; style_index < 4; style_index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ @@ -121,7 +121,7 @@ GX_DISPLAY *display; brush_alpha = 100; for(style_index = 0; style_index < 4; style_index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_pixelmaps_565rgb.c b/test/guix_test/regression_test/tests/validation_guix_pixelmaps_565rgb.c index b8c28dab..13da262e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_pixelmaps_565rgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_pixelmaps_565rgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ char test_comment[256]; static INT brush_alpha_value[] = {0, 100, 200, 255}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -78,7 +78,7 @@ int frame_id = 1; { for(style_index = 0; style_index < 4; style_index++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_private_string_delete_no_output.c b/test/guix_test/regression_test/tests/validation_guix_private_string_delete_no_output.c index 25f72b38..7d16d5a3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_private_string_delete_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_private_string_delete_no_output.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_prompt_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_prompt_24xrgb.c index a655d851..826cd8cc 100644 --- a/test/guix_test/regression_test/tests/validation_guix_prompt_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_prompt_24xrgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the prompt drawing example. These operations simulate + on the prompt drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_prompt_event_process_no_output.c b/test/guix_test/regression_test/tests/validation_guix_prompt_event_process_no_output.c index f38b053e..ef5f088d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_prompt_event_process_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_prompt_event_process_no_output.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_prompt_text_get_no_output.c b/test/guix_test/regression_test/tests/validation_guix_prompt_text_get_no_output.c index 43882d1a..87af28ca 100644 --- a/test/guix_test/regression_test/tests/validation_guix_prompt_text_get_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_prompt_text_get_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_prompt_text_set_no_output.c b/test/guix_test/regression_test/tests/validation_guix_prompt_text_set_no_output.c index ff8a2a4f..7e360888 100644 --- a/test/guix_test/regression_test/tests/validation_guix_prompt_text_set_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_prompt_text_set_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar.c b/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar.c index 25daa268..c2c15162 100644 --- a/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar.c +++ b/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -109,7 +109,7 @@ GX_RECTANGLE rect; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_alpha_blend.c b/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_alpha_blend.c index 2a859ce7..265e7ed5 100644 --- a/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_alpha_blend.c +++ b/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_alpha_blend.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_background_draw.c b/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_background_draw.c index ee0c86f0..c530f21f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_background_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_background_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -62,7 +62,7 @@ char test_comment[255]; GX_COLOR TEST_MEMORY[TEST_MEMORY_SIZE]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_event_process.c b/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_event_process.c index 322f7726..36cc5091 100644 --- a/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_event_process.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_resize.c b/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_resize.c index 8e4ce6f8..b1ebad19 100644 --- a/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_resize.c +++ b/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_resize.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_text_draw.c b/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_text_draw.c index 230bf61f..54cbecfc 100644 --- a/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_text_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_text_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_value_calculate.c b/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_value_calculate.c index 9210d358..16f85f7e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_value_calculate.c +++ b/test/guix_test/regression_test/tests/validation_guix_radial_progress_bar_value_calculate.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_radial_slider_anchor_angle_calculate.c b/test/guix_test/regression_test/tests/validation_guix_radial_slider_anchor_angle_calculate.c index 3adef4e7..ad2fef06 100644 --- a/test/guix_test/regression_test/tests/validation_guix_radial_slider_anchor_angle_calculate.c +++ b/test/guix_test/regression_test/tests/validation_guix_radial_slider_anchor_angle_calculate.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_radial_slider_angle_calculate.c b/test/guix_test/regression_test/tests/validation_guix_radial_slider_angle_calculate.c index 38dd4e57..e70905c1 100644 --- a/test/guix_test/regression_test/tests/validation_guix_radial_slider_angle_calculate.c +++ b/test/guix_test/regression_test/tests/validation_guix_radial_slider_angle_calculate.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_radial_slider_event_process.c b/test/guix_test/regression_test/tests/validation_guix_radial_slider_event_process.c index 6c404106..22e5ba0f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_radial_slider_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_radial_slider_event_process.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_radio_button_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_radio_button_24xrgb.c index 64ae5500..1c5e453c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_radio_button_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_radio_button_24xrgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -65,7 +65,7 @@ static int y_value[] = {355, 358, 359, 380, 381, 382}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -94,7 +94,7 @@ GX_RADIO_BUTTON *radio_button; my_event.gx_event_display_handle = 1; gx_system_event_send(&my_event); - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_rich_text_view.c b/test/guix_test/regression_test/tests/validation_guix_rich_text_view.c index 0ea90d4c..de5a2bf1 100644 --- a/test/guix_test/regression_test/tests/validation_guix_rich_text_view.c +++ b/test/guix_test/regression_test/tests/validation_guix_rich_text_view.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_rich_text_view_font.c b/test/guix_test/regression_test/tests/validation_guix_rich_text_view_font.c index 9740ea1b..19ed999e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_rich_text_view_font.c +++ b/test/guix_test/regression_test/tests/validation_guix_rich_text_view_font.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_rich_text_view_line_info_get.c b/test/guix_test/regression_test/tests/validation_guix_rich_text_view_line_info_get.c index eeb4ee91..e0efa7e0 100644 --- a/test/guix_test/regression_test/tests/validation_guix_rich_text_view_line_info_get.c +++ b/test/guix_test/regression_test/tests/validation_guix_rich_text_view_line_info_get.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_rich_text_view_no_output.c b/test/guix_test/regression_test/tests/validation_guix_rich_text_view_no_output.c index dd949011..95da5e81 100644 --- a/test/guix_test/regression_test/tests/validation_guix_rich_text_view_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_rich_text_view_no_output.c @@ -37,7 +37,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_rich_text_view_scroll.c b/test/guix_test/regression_test/tests/validation_guix_rich_text_view_scroll.c index e8440c94..ea2aebe5 100644 --- a/test/guix_test/regression_test/tests/validation_guix_rich_text_view_scroll.c +++ b/test/guix_test/regression_test/tests/validation_guix_rich_text_view_scroll.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_root_window_focus_no_output.c b/test/guix_test/regression_test/tests/validation_guix_root_window_focus_no_output.c index 0a50bf56..ede82723 100644 --- a/test/guix_test/regression_test/tests/validation_guix_root_window_focus_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_root_window_focus_no_output.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_runtime_allocate_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_runtime_allocate_16bpp.c index b8a43598..c0523c38 100644 --- a/test/guix_test/regression_test/tests/validation_guix_runtime_allocate_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_runtime_allocate_16bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_screen_stack.c b/test/guix_test/regression_test/tests/validation_guix_screen_stack.c index d552328e..ff8252fc 100644 --- a/test/guix_test/regression_test/tests/validation_guix_screen_stack.c +++ b/test/guix_test/regression_test/tests/validation_guix_screen_stack.c @@ -36,7 +36,7 @@ VOID tx_application_define(void *first_unused_memory) /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -73,7 +73,7 @@ static GX_WIDGET *screen_list[]= char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG uinput) { diff --git a/test/guix_test/regression_test/tests/validation_guix_scroll_thumb_event_process.c b/test/guix_test/regression_test/tests/validation_guix_scroll_thumb_event_process.c index 889916cf..6fcd7bd3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_scroll_thumb_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_scroll_thumb_event_process.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the scrollbar drawing example. These operations simulate + on the scrollbar drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -80,7 +80,7 @@ TEST test_list[]= {0, 0, 0, ""} }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_scroll_wheel_callback_set_no_output.c b/test/guix_test/regression_test/tests/validation_guix_scroll_wheel_callback_set_no_output.c index 6dd9034a..e84af201 100644 --- a/test/guix_test/regression_test/tests/validation_guix_scroll_wheel_callback_set_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_scroll_wheel_callback_set_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_scroll_wheel_flick_event_process.c b/test/guix_test/regression_test/tests/validation_guix_scroll_wheel_flick_event_process.c index 79a0eb7a..d776bce6 100644 --- a/test/guix_test/regression_test/tests/validation_guix_scroll_wheel_flick_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_scroll_wheel_flick_event_process.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_scroll_wheel_gradient_create_no_output.c b/test/guix_test/regression_test/tests/validation_guix_scroll_wheel_gradient_create_no_output.c index 38e94936..4e5ede9b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_scroll_wheel_gradient_create_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_scroll_wheel_gradient_create_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_scroll_wheel_scroll.c b/test/guix_test/regression_test/tests/validation_guix_scroll_wheel_scroll.c index 05e410bd..c8bf29e4 100644 --- a/test/guix_test/regression_test/tests/validation_guix_scroll_wheel_scroll.c +++ b/test/guix_test/regression_test/tests/validation_guix_scroll_wheel_scroll.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_scroll_wheel_timer_event_process.c b/test/guix_test/regression_test/tests/validation_guix_scroll_wheel_timer_event_process.c index 21acf1a9..8275bdc1 100644 --- a/test/guix_test/regression_test/tests/validation_guix_scroll_wheel_timer_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_scroll_wheel_timer_event_process.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_scrollbar_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_scrollbar_24xrgb.c index 1eacbd71..470ad555 100644 --- a/test/guix_test/regression_test/tests/validation_guix_scrollbar_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_scrollbar_24xrgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the scrollbar drawing example. These operations simulate + on the scrollbar drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_scrollbar_event_process.c b/test/guix_test/regression_test/tests/validation_guix_scrollbar_event_process.c index 5a81a6c3..c8541a71 100644 --- a/test/guix_test/regression_test/tests/validation_guix_scrollbar_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_scrollbar_event_process.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_scrollbar_reset.c b/test/guix_test/regression_test/tests/validation_guix_scrollbar_reset.c index f0325ae9..d04f5244 100644 --- a/test/guix_test/regression_test/tests/validation_guix_scrollbar_reset.c +++ b/test/guix_test/regression_test/tests/validation_guix_scrollbar_reset.c @@ -33,7 +33,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_scrollbar_thumb_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_scrollbar_thumb_24xrgb.c index 41f93193..f5ed65fd 100644 --- a/test/guix_test/regression_test/tests/validation_guix_scrollbar_thumb_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_scrollbar_thumb_24xrgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the scrollbar drawing example. These operations simulate + on the scrollbar drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_scrollbar_value_calculate.c b/test/guix_test/regression_test/tests/validation_guix_scrollbar_value_calculate.c index 45ceca44..d39ee301 100644 --- a/test/guix_test/regression_test/tests/validation_guix_scrollbar_value_calculate.c +++ b/test/guix_test/regression_test/tests/validation_guix_scrollbar_value_calculate.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the scrollbar drawing example. These operations simulate + on the scrollbar drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_scrollbar_value_set.c b/test/guix_test/regression_test/tests/validation_guix_scrollbar_value_set.c index df5ee227..54360c2c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_scrollbar_value_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_scrollbar_value_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the scrollbar drawing example. These operations simulate + on the scrollbar drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -66,7 +66,7 @@ VOID tx_application_define(void *first_unused_memory) /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_shape_fill.c b/test/guix_test/regression_test/tests/validation_guix_shape_fill.c index 049597f3..88d1ccc3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_shape_fill.c +++ b/test/guix_test/regression_test/tests/validation_guix_shape_fill.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -109,7 +109,7 @@ ELLIPSE }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_single_line_partial_dirty_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_single_line_partial_dirty_24xrgb.c index 3d620e18..3a96a7f8 100644 --- a/test/guix_test/regression_test/tests/validation_guix_single_line_partial_dirty_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_single_line_partial_dirty_24xrgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ static USHORT key_value[] = {GX_KEY_DELETE, 'q', GX_KEY_LEFT_ARROW, GX_KEY_HOME} char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_16bpp_unicode.c b/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_16bpp_unicode.c index 331631a7..5a94f83c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_16bpp_unicode.c +++ b/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_16bpp_unicode.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ static USHORT input_buffer[] = { 0x6c49, 0x8bed, 0x662f, 0x4e16, 0x754c, 0x4e0a, char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_24xrgb.c index 1b2945bd..cb8b642a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_24xrgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -71,7 +71,7 @@ static USHORT key_value[] = {GX_KEY_HOME, GX_KEY_DELETE, GX_KEY_RIGHT_ARROW, GX_ char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_24xrgb_center_aligned.c b/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_24xrgb_center_aligned.c index d382ee08..08117b24 100644 --- a/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_24xrgb_center_aligned.c +++ b/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_24xrgb_center_aligned.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -71,7 +71,7 @@ static USHORT key_value[] = {GX_KEY_HOME, GX_KEY_DELETE, GX_KEY_RIGHT_ARROW, GX_ char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_buffer_clear.c b/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_buffer_clear.c index d97b1812..1776b50e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_buffer_clear.c +++ b/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_buffer_clear.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_clip_32xrgb.c b/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_clip_32xrgb.c index 92ff36a6..c46545fa 100644 --- a/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_clip_32xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_clip_32xrgb.c @@ -8,7 +8,7 @@ TEST_PARAM test_parameter = { "guix_single_line_text_input_clip_32xrgb", /* Test name */ 20, 25, 230, 200 /* Define the coordinates of the capture area. - In this test, we only need to capture the + In this test, we only need to capture the clip window and multi_line_text_view window drawing area. */ }; @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the canvas_text_view drawing example. These operations + on the canvas_text_view drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_create.c b/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_create.c index 3c182bcb..846c4123 100644 --- a/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_create.c +++ b/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_create.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ GX_RECTANGLE size[3] = { }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_fill_color_set.c b/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_fill_color_set.c index 56b1f93e..4208369c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_fill_color_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_fill_color_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_property_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_property_24xrgb.c index be8fbddd..d93218ee 100644 --- a/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_property_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_property_24xrgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_text_color_set.c b/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_text_color_set.c index 13b87519..e0a1a851 100644 --- a/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_text_color_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_text_color_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_text_select.c b/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_text_select.c index 52943604..2c458754 100644 --- a/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_text_select.c +++ b/test/guix_test/regression_test/tests/validation_guix_single_line_text_input_text_select.c @@ -36,7 +36,7 @@ VOID tx_application_define(void *first_unused_memory) /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ GX_CHAR test_string[]= "0 do you remember the day we used to be ABCDEFGHIJKLMN!@$@*^*%(*&($#1275384635098765"; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG uinput) { diff --git a/test/guix_test/regression_test/tests/validation_guix_sl_input_api_select.c b/test/guix_test/regression_test/tests/validation_guix_sl_input_api_select.c index 15be2bbd..b58ae9c9 100644 --- a/test/guix_test/regression_test/tests/validation_guix_sl_input_api_select.c +++ b/test/guix_test/regression_test/tests/validation_guix_sl_input_api_select.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -200,7 +200,7 @@ GX_STYLE_TEXT_CENTER }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_sl_input_backspace.c b/test/guix_test/regression_test/tests/validation_guix_sl_input_backspace.c index c284adf0..f6a52039 100644 --- a/test/guix_test/regression_test/tests/validation_guix_sl_input_backspace.c +++ b/test/guix_test/regression_test/tests/validation_guix_sl_input_backspace.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ static GX_CONST GX_UBYTE SINGLE_LINE_TEXT[] = "do you remember the day we used t static INT key_list[]={GX_KEY_HOME, GX_KEY_RIGHT_ARROW, GX_KEY_BACKSPACE, GX_KEY_RIGHT_ARROW, GX_KEY_BACKSPACE}; static GX_CHAR *test_comments[5] = {"home", "right arrow", "backspace", "right arrow", "backspace"}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_sl_input_cursor.c b/test/guix_test/regression_test/tests/validation_guix_sl_input_cursor.c index 54ec454d..10cdf46c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_sl_input_cursor.c +++ b/test/guix_test/regression_test/tests/validation_guix_sl_input_cursor.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -92,7 +92,7 @@ TEST test_list[]={ /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_sl_input_drag_select.c b/test/guix_test/regression_test/tests/validation_guix_sl_input_drag_select.c index e00b6b4a..eeaf0e23 100644 --- a/test/guix_test/regression_test/tests/validation_guix_sl_input_drag_select.c +++ b/test/guix_test/regression_test/tests/validation_guix_sl_input_drag_select.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -105,7 +105,7 @@ TEST test_list[]={ }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_sl_input_draw.c b/test/guix_test/regression_test/tests/validation_guix_sl_input_draw.c index 502d8db1..349c0ed1 100644 --- a/test/guix_test/regression_test/tests/validation_guix_sl_input_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_sl_input_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) static GX_CONST GX_UBYTE SINGLE_LINE_TEXT[] = "12345"; static char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ char test_string[]="ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789012345"; static VOID control_thread_entry(ULONG input) diff --git a/test/guix_test/regression_test/tests/validation_guix_sl_input_event_process.c b/test/guix_test/regression_test/tests/validation_guix_sl_input_event_process.c index f2dcd704..b3fe2af1 100644 --- a/test/guix_test/regression_test/tests/validation_guix_sl_input_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_sl_input_event_process.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -101,7 +101,7 @@ TEST test_list[]={ static char test_comments[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_sl_input_gain_lose_focus.c b/test/guix_test/regression_test/tests/validation_guix_sl_input_gain_lose_focus.c index f590010e..cde79b15 100644 --- a/test/guix_test/regression_test/tests/validation_guix_sl_input_gain_lose_focus.c +++ b/test/guix_test/regression_test/tests/validation_guix_sl_input_gain_lose_focus.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ static GX_CHAR english_text[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijk static GX_CHAR test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_sl_input_input_focus_release.c b/test/guix_test/regression_test/tests/validation_guix_sl_input_input_focus_release.c index b0da8ba0..d693e490 100644 --- a/test/guix_test/regression_test/tests/validation_guix_sl_input_input_focus_release.c +++ b/test/guix_test/regression_test/tests/validation_guix_sl_input_input_focus_release.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -57,7 +57,7 @@ VOID tx_application_define(void *first_unused_memory) #include "demo_guix_sl_text_input_16bpp.c" /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_sl_input_insert.c b/test/guix_test/regression_test/tests/validation_guix_sl_input_insert.c index 84aeb24f..fb5d95a5 100644 --- a/test/guix_test/regression_test/tests/validation_guix_sl_input_insert.c +++ b/test/guix_test/regression_test/tests/validation_guix_sl_input_insert.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -76,7 +76,7 @@ TEST test_list[]={ }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_sl_input_left_arrow.c b/test/guix_test/regression_test/tests/validation_guix_sl_input_left_arrow.c index 765a16fa..732b4f2d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_sl_input_left_arrow.c +++ b/test/guix_test/regression_test/tests/validation_guix_sl_input_left_arrow.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) static GX_CONST GX_UBYTE SINGLE_LINE_TEXT[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890123456789"; static char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_sl_input_mark_home.c b/test/guix_test/regression_test/tests/validation_guix_sl_input_mark_home.c index c95f5b7a..8c64ee8b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_sl_input_mark_home.c +++ b/test/guix_test/regression_test/tests/validation_guix_sl_input_mark_home.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ static GX_CONST GX_UBYTE SINGLE_LINE_TEXT[] = "right"; static char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_sl_input_no_output.c b/test/guix_test/regression_test/tests/validation_guix_sl_input_no_output.c index 3cb77311..fefabb60 100644 --- a/test/guix_test/regression_test/tests/validation_guix_sl_input_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_sl_input_no_output.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_sl_input_select_copy_paste.c b/test/guix_test/regression_test/tests/validation_guix_sl_input_select_copy_paste.c index 0bf3dbe1..579ce49d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_sl_input_select_copy_paste.c +++ b/test/guix_test/regression_test/tests/validation_guix_sl_input_select_copy_paste.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -133,7 +133,7 @@ ALIGNMENT alignment_style_list[]={ }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_sl_input_style_remove.c b/test/guix_test/regression_test/tests/validation_guix_sl_input_style_remove.c index 0ff321b9..5d32b25e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_sl_input_style_remove.c +++ b/test/guix_test/regression_test/tests/validation_guix_sl_input_style_remove.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) static char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_sl_input_text_select.c b/test/guix_test/regression_test/tests/validation_guix_sl_input_text_select.c index 094c68e6..10918c4d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_sl_input_text_select.c +++ b/test/guix_test/regression_test/tests/validation_guix_sl_input_text_select.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) static GX_CONST GX_UBYTE SINGLE_LINE_TEXT[] = "ABCDEFGHIJKLM"; static char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_sl_input_text_set.c b/test/guix_test/regression_test/tests/validation_guix_sl_input_text_set.c index 33f5e677..f5f725c6 100644 --- a/test/guix_test/regression_test/tests/validation_guix_sl_input_text_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_sl_input_text_set.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ static GX_CHAR test_comment[256]; static GX_CHAR input_buffer[3]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_sl_input_text_set_no_output.c b/test/guix_test/regression_test/tests/validation_guix_sl_input_text_set_no_output.c index 199ef4d4..a1da7c00 100644 --- a/test/guix_test/regression_test/tests/validation_guix_sl_input_text_set_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_sl_input_text_set_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_slider_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_slider_24xrgb.c index 60ca73a8..a4ce217e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_slider_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_slider_24xrgb.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ int increment[] = {5, 10}; int new_pos; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -144,7 +144,7 @@ GX_RECTANGLE new_size; { for(pos = slider_top; pos <= slider_bottom; pos += 20) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_slider_h_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_slider_h_24xrgb.c index f56f2cb8..70cfcf66 100644 --- a/test/guix_test/regression_test/tests/validation_guix_slider_h_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_slider_h_24xrgb.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ int increment[] = {5, 10}; int new_pos; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -147,7 +147,7 @@ GX_RECTANGLE new_size; { for(pos = slider_left; pos <= slider_right; pos += 20) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_slider_needle_position_get.c b/test/guix_test/regression_test/tests/validation_guix_slider_needle_position_get.c index 8cc523b0..fb03b54d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_slider_needle_position_get.c +++ b/test/guix_test/regression_test/tests/validation_guix_slider_needle_position_get.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_sprite.c b/test/guix_test/regression_test/tests/validation_guix_sprite.c index bc633997..a3b5042d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_sprite.c +++ b/test/guix_test/regression_test/tests/validation_guix_sprite.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_sprite_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_sprite_24xrgb.c index 732e0649..c25964c3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_sprite_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_sprite_24xrgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -57,7 +57,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_sprite_565rgb.c b/test/guix_test/regression_test/tests/validation_guix_sprite_565rgb.c index 2d6f95bd..f594a08e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_sprite_565rgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_sprite_565rgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_sprite_start.c b/test/guix_test/regression_test/tests/validation_guix_sprite_start.c index db98858d..76de4948 100644 --- a/test/guix_test/regression_test/tests/validation_guix_sprite_start.c +++ b/test/guix_test/regression_test/tests/validation_guix_sprite_start.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -86,7 +86,7 @@ GX_SPRITE_FRAME frame_list[3] = }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_standalone_binres_load_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_standalone_binres_load_16bpp.c index 8c69f67a..6ded6f34 100644 --- a/test/guix_test/regression_test/tests/validation_guix_standalone_binres_load_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_standalone_binres_load_16bpp.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -71,7 +71,7 @@ void ToggleScreen(GX_WINDOW *new_win, GX_WINDOW *old_win) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_standalone_binres_load_8bpp.c b/test/guix_test/regression_test/tests/validation_guix_standalone_binres_load_8bpp.c index 93cd7b89..d39e83a9 100644 --- a/test/guix_test/regression_test/tests/validation_guix_standalone_binres_load_8bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_standalone_binres_load_8bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -55,7 +55,7 @@ VOID tx_application_define(void *first_unused_memory) #include "demo_guix_standalone_binres_load_8bpp.c" /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_standalone_binres_load_extended_unicode_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_standalone_binres_load_extended_unicode_32bpp.c index 6575c7d8..6333ec7d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_standalone_binres_load_extended_unicode_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_standalone_binres_load_extended_unicode_32bpp.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -71,7 +71,7 @@ void ToggleScreen(GX_WINDOW *new_win, GX_WINDOW *old_win) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_string_scroll_wheel_create_no_output.c b/test/guix_test/regression_test/tests/validation_guix_string_scroll_wheel_create_no_output.c index 8944992d..3c6e873d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_string_scroll_wheel_create_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_string_scroll_wheel_create_no_output.c @@ -23,7 +23,7 @@ static VOID control_thread_entry(ULONG); VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_string_scroll_wheel_event_process_no_output.c b/test/guix_test/regression_test/tests/validation_guix_string_scroll_wheel_event_process_no_output.c index 2b00b789..b33f323d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_string_scroll_wheel_event_process_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_string_scroll_wheel_event_process_no_output.c @@ -23,7 +23,7 @@ static VOID control_thread_entry(ULONG); VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_string_scroll_wheel_string_list_set_ext.c b/test/guix_test/regression_test/tests/validation_guix_string_scroll_wheel_string_list_set_ext.c index 381db70d..23cab21c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_string_scroll_wheel_string_list_set_ext.c +++ b/test/guix_test/regression_test/tests/validation_guix_string_scroll_wheel_string_list_set_ext.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_string_scroll_wheel_string_list_set_no_output.c b/test/guix_test/regression_test/tests/validation_guix_string_scroll_wheel_string_list_set_no_output.c index 043ea775..2d9bf044 100644 --- a/test/guix_test/regression_test/tests/validation_guix_string_scroll_wheel_string_list_set_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_string_scroll_wheel_string_list_set_no_output.c @@ -22,7 +22,7 @@ static VOID control_thread_entry(ULONG); VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_string_scroll_wheel_text_get.c b/test/guix_test/regression_test/tests/validation_guix_string_scroll_wheel_text_get.c index 201561de..739cbd7d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_string_scroll_wheel_text_get.c +++ b/test/guix_test/regression_test/tests/validation_guix_string_scroll_wheel_text_get.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -98,7 +98,7 @@ GX_CHAR *month_wheel_value_format_4(GX_STRING_SCROLL_WHEEL *wheel, INT row) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_string_to_alphamap_no_output.c b/test/guix_test/regression_test/tests/validation_guix_string_to_alphamap_no_output.c index 3b1ff9c4..f12f9ec3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_string_to_alphamap_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_string_to_alphamap_no_output.c @@ -22,7 +22,7 @@ static VOID control_thread_entry(ULONG); VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_synergy_32argb.c b/test/guix_test/regression_test/tests/validation_guix_synergy_32argb.c index 91142e58..a9604553 100644 --- a/test/guix_test/regression_test/tests/validation_guix_synergy_32argb.c +++ b/test/guix_test/regression_test/tests/validation_guix_synergy_32argb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -68,7 +68,7 @@ static int compressed_value[] = {GX_TRUE, GX_FALSE}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -81,7 +81,7 @@ int frame_id = 1; { compressed = compressed_value[compressed_index]; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_synergy_32bpp_16bppdriver.c b/test/guix_test/regression_test/tests/validation_guix_synergy_32bpp_16bppdriver.c index f0a5c00e..3c900cb8 100644 --- a/test/guix_test/regression_test/tests/validation_guix_synergy_32bpp_16bppdriver.c +++ b/test/guix_test/regression_test/tests/validation_guix_synergy_32bpp_16bppdriver.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -62,7 +62,7 @@ static int compressed_value[] = {GX_TRUE, GX_FALSE}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -74,7 +74,7 @@ int frame_id = 1; for(compressed_index = 0; compressed_index <(int)(sizeof(compressed_value)/sizeof(int)); compressed_index++) { compressed = compressed_value[compressed_index]; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_synergy_4444argb_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_synergy_4444argb_16bpp.c index dee9712f..4c5874ab 100644 --- a/test/guix_test/regression_test/tests/validation_guix_synergy_4444argb_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_synergy_4444argb_16bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -69,7 +69,7 @@ static int format_value[] = {GX_TRUE, GX_FALSE}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -85,7 +85,7 @@ static VOID control_thread_entry(ULONG input) for(format_index = 0; format_index < (int)(sizeof(format_value)/sizeof(int)); format_index ++) { format = format_value[format_index]; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_synergy_4444argb_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_synergy_4444argb_32bpp.c index d648fd0c..74ae8f39 100644 --- a/test/guix_test/regression_test/tests/validation_guix_synergy_4444argb_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_synergy_4444argb_32bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -68,7 +68,7 @@ int format_value[4] = {GX_PIXELMAP_ID_RED_APPLE,GX_PIXELMAP_ID_ICON_FOOT_ALPHA,G char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -79,7 +79,7 @@ static VOID control_thread_entry(ULONG input) for(format_index = 0 ; format_index <(int)(sizeof(format_value)/sizeof(int)); format_index++) { format = format_value[format_index]; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_synergy_565rgb.c b/test/guix_test/regression_test/tests/validation_guix_synergy_565rgb.c index 33fae9fe..a69846f0 100644 --- a/test/guix_test/regression_test/tests/validation_guix_synergy_565rgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_synergy_565rgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -68,7 +68,7 @@ static int compressed_value[] = {GX_TRUE, GX_FALSE}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -81,7 +81,7 @@ static VOID control_thread_entry(ULONG input) { compressed = compressed_value[compressed_index]; - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_synergy_glyph_draw_16bpp.c b/test/guix_test/regression_test/tests/validation_guix_synergy_glyph_draw_16bpp.c index 9ae1019d..94aa6103 100644 --- a/test/guix_test/regression_test/tests/validation_guix_synergy_glyph_draw_16bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_synergy_glyph_draw_16bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -62,7 +62,7 @@ int ypos_value[]={0, 270, 330}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -83,7 +83,7 @@ GX_EVENT my_event; my_event.gx_event_type = GX_EVENT_PEN_UP; gx_system_event_send(&my_event); - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_synergy_glyph_draw_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_synergy_glyph_draw_32bpp.c index 1b2e7e93..b90e9a92 100644 --- a/test/guix_test/regression_test/tests/validation_guix_synergy_glyph_draw_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_synergy_glyph_draw_32bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -62,7 +62,7 @@ int ypos_value[]={0, 260, 320}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -83,7 +83,7 @@ GX_EVENT my_event; my_event.gx_event_type = GX_EVENT_PEN_UP; gx_system_event_send(&my_event); - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_synergy_text_rotation.c b/test/guix_test/regression_test/tests/validation_guix_synergy_text_rotation.c index 20115d76..398cec4b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_synergy_text_rotation.c +++ b/test/guix_test/regression_test/tests/validation_guix_synergy_text_rotation.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ extern INT text_angle; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -73,7 +73,7 @@ int frame_id = 1; for(text_angle = 0; text_angle < 360; text_angle++) { - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_system_canvas_refresh.c b/test/guix_test/regression_test/tests/validation_guix_system_canvas_refresh.c index 6f8f29f4..70d134b7 100644 --- a/test/guix_test/regression_test/tests/validation_guix_system_canvas_refresh.c +++ b/test/guix_test/regression_test/tests/validation_guix_system_canvas_refresh.c @@ -34,7 +34,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) static GX_CHAR test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_system_clipboard_put.c b/test/guix_test/regression_test/tests/validation_guix_system_clipboard_put.c index c86d8300..459576e8 100644 --- a/test/guix_test/regression_test/tests/validation_guix_system_clipboard_put.c +++ b/test/guix_test/regression_test/tests/validation_guix_system_clipboard_put.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -67,7 +67,7 @@ VOID test_memory_free(VOID *mem) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_system_dirty_list_remove.c b/test/guix_test/regression_test/tests/validation_guix_system_dirty_list_remove.c index bde0899a..7385924d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_system_dirty_list_remove.c +++ b/test/guix_test/regression_test/tests/validation_guix_system_dirty_list_remove.c @@ -34,7 +34,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ VOID tx_application_define(void *first_unused_memory) static GX_CHAR test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_system_event_dispatch_no_output.c b/test/guix_test/regression_test/tests/validation_guix_system_event_dispatch_no_output.c index 704e50ce..47e2bc2e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_system_event_dispatch_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_system_event_dispatch_no_output.c @@ -23,7 +23,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_system_event_fold_no_output.c b/test/guix_test/regression_test/tests/validation_guix_system_event_fold_no_output.c index 4d791c39..aa26cb16 100644 --- a/test/guix_test/regression_test/tests/validation_guix_system_event_fold_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_system_event_fold_no_output.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ static UINT test_event_process(GX_WINDOW *window, GX_EVENT* event_ptr) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_system_event_fold_pen_drag_no_output.c b/test/guix_test/regression_test/tests/validation_guix_system_event_fold_pen_drag_no_output.c index 9c8cc2de..d25ac298 100644 --- a/test/guix_test/regression_test/tests/validation_guix_system_event_fold_pen_drag_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_system_event_fold_pen_drag_no_output.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -55,7 +55,7 @@ static UINT test_event_process(GX_WINDOW *window, GX_EVENT* event_ptr) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_system_event_remove_no_output.c b/test/guix_test/regression_test/tests/validation_guix_system_event_remove_no_output.c index e79f6c4d..a24b0436 100644 --- a/test/guix_test/regression_test/tests/validation_guix_system_event_remove_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_system_event_remove_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_system_focus_claim_no_output.c b/test/guix_test/regression_test/tests/validation_guix_system_focus_claim_no_output.c index acff9912..fbdd22c8 100644 --- a/test/guix_test/regression_test/tests/validation_guix_system_focus_claim_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_system_focus_claim_no_output.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_system_free_view_get_no_output.c b/test/guix_test/regression_test/tests/validation_guix_system_free_view_get_no_output.c index 8d84b88d..69a9e096 100644 --- a/test/guix_test/regression_test/tests/validation_guix_system_free_view_get_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_system_free_view_get_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_system_lock_no_output.c b/test/guix_test/regression_test/tests/validation_guix_system_lock_no_output.c index 14cf04c2..802a1fc2 100644 --- a/test/guix_test/regression_test/tests/validation_guix_system_lock_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_system_lock_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_system_no_output.c b/test/guix_test/regression_test/tests/validation_guix_system_no_output.c index 17fb1edc..ab738b26 100644 --- a/test/guix_test/regression_test/tests/validation_guix_system_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_system_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_system_private_string.c b/test/guix_test/regression_test/tests/validation_guix_system_private_string.c index 9d162ddb..3d6394da 100644 --- a/test/guix_test/regression_test/tests/validation_guix_system_private_string.c +++ b/test/guix_test/regression_test/tests/validation_guix_system_private_string.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -63,7 +63,7 @@ char test_string[]="123456789012345678901234567890123456789012345678901234567890 GX_UBYTE test_memory[TEST_MEMORY_SIZE]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_system_private_string_copy_no_output.c b/test/guix_test/regression_test/tests/validation_guix_system_private_string_copy_no_output.c index e1afdfcf..baf5c1c8 100644 --- a/test/guix_test/regression_test/tests/validation_guix_system_private_string_copy_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_system_private_string_copy_no_output.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_system_private_string_delete_no_output.c b/test/guix_test/regression_test/tests/validation_guix_system_private_string_delete_no_output.c index 4f34c872..988f29f1 100644 --- a/test/guix_test/regression_test/tests/validation_guix_system_private_string_delete_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_system_private_string_delete_no_output.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_system_private_string_list_copy.c b/test/guix_test/regression_test/tests/validation_guix_system_private_string_list_copy.c index e2365ef1..bcc87c9a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_system_private_string_list_copy.c +++ b/test/guix_test/regression_test/tests/validation_guix_system_private_string_list_copy.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -93,7 +93,7 @@ const char *test_string_list_2[12]= GX_UBYTE test_memory[TEST_MEMORY_SIZE]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_system_screen_stack.c b/test/guix_test/regression_test/tests/validation_guix_system_screen_stack.c index 09a96822..7ea28a19 100644 --- a/test/guix_test/regression_test/tests/validation_guix_system_screen_stack.c +++ b/test/guix_test/regression_test/tests/validation_guix_system_screen_stack.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -89,7 +89,7 @@ TEST test_list[]={ }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_system_screen_stack_no_output.c b/test/guix_test/regression_test/tests/validation_guix_system_screen_stack_no_output.c index 2b806d64..5fbf2742 100644 --- a/test/guix_test/regression_test/tests/validation_guix_system_screen_stack_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_system_screen_stack_no_output.c @@ -23,7 +23,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_application_define(first_unused_memory); @@ -32,7 +32,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } @@ -46,7 +46,7 @@ VOID tx_application_define(void *first_unused_memory) /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ #define SCREEN_STACK_SIZE 2 diff --git a/test/guix_test/regression_test/tests/validation_guix_system_string_width_get_no_output.c b/test/guix_test/regression_test/tests/validation_guix_system_string_width_get_no_output.c index dc3a7e44..e7235151 100644 --- a/test/guix_test/regression_test/tests/validation_guix_system_string_width_get_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_system_string_width_get_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_system_thread_entry_no_output.c b/test/guix_test/regression_test/tests/validation_guix_system_thread_entry_no_output.c index 8244881f..424cd545 100644 --- a/test/guix_test/regression_test/tests/validation_guix_system_thread_entry_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_system_thread_entry_no_output.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_system_timer_update_no_output.c b/test/guix_test/regression_test/tests/validation_guix_system_timer_update_no_output.c index e19c2a37..a4cfb723 100644 --- a/test/guix_test/regression_test/tests/validation_guix_system_timer_update_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_system_timer_update_no_output.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_system_version_string_get_no_output.c b/test/guix_test/regression_test/tests/validation_guix_system_version_string_get_no_output.c index a8ebc350..de505c4a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_system_version_string_get_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_system_version_string_get_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_system_view_fold_no_output.c b/test/guix_test/regression_test/tests/validation_guix_system_view_fold_no_output.c index 86f0729e..f62a6d66 100644 --- a/test/guix_test/regression_test/tests/validation_guix_system_view_fold_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_system_view_fold_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -45,7 +45,7 @@ VOID tx_application_define(void *first_unused_memory) /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_template.c b/test/guix_test/regression_test/tests/validation_guix_template.c index fc0d932f..129e8294 100644 --- a/test/guix_test/regression_test/tests/validation_guix_template.c +++ b/test/guix_test/regression_test/tests/validation_guix_template.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -56,7 +56,7 @@ VOID tx_application_define(void *first_unused_memory) #include "demo_guix_template.c" /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_text_button_24xrgb.c b/test/guix_test/regression_test/tests/validation_guix_text_button_24xrgb.c index 78fb507f..019a8e2d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_text_button_24xrgb.c +++ b/test/guix_test/regression_test/tests/validation_guix_text_button_24xrgb.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ static char test_text[]="test text"; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_text_button_event_process_no_output.c b/test/guix_test/regression_test/tests/validation_guix_text_button_event_process_no_output.c index fd10c77d..4d485d97 100644 --- a/test/guix_test/regression_test/tests/validation_guix_text_button_event_process_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_text_button_event_process_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_text_button_text_get_no_output.c b/test/guix_test/regression_test/tests/validation_guix_text_button_text_get_no_output.c index 4aad2f6a..050e36d3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_text_button_text_get_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_text_button_text_get_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_text_button_text_set_no_output.c b/test/guix_test/regression_test/tests/validation_guix_text_button_text_set_no_output.c index f175bce0..3392378e 100644 --- a/test/guix_test/regression_test/tests/validation_guix_text_button_text_set_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_text_button_text_set_no_output.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_text_draw.c b/test/guix_test/regression_test/tests/validation_guix_text_draw.c index 381c87e4..6e497840 100644 --- a/test/guix_test/regression_test/tests/validation_guix_text_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_text_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_text_input_cursor_height_set.c b/test/guix_test/regression_test/tests/validation_guix_text_input_cursor_height_set.c index e67391d3..88de5ca4 100644 --- a/test/guix_test/regression_test/tests/validation_guix_text_input_cursor_height_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_text_input_cursor_height_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[255]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_text_rotation.c b/test/guix_test/regression_test/tests/validation_guix_text_rotation.c index a200402c..b122625d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_text_rotation.c +++ b/test/guix_test/regression_test/tests/validation_guix_text_rotation.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -65,7 +65,7 @@ char test_comment[256]; GX_CONST GX_UBYTE utf8_text[10] = {0xe5, 0xa4, 0x9a, 0xe8, 0xa1, 0x8c, 0 }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { @@ -97,7 +97,7 @@ GX_WINDOW_ROOT *window_root = NULL; text_angle = angle + 360; } - /* Inform the validation system + /* Inform the validation system (1) Frame ID, which identifies a specific test configuration; (2) Start recording frame on the next toggle operation. */ diff --git a/test/guix_test/regression_test/tests/validation_guix_text_scroll_wheel_callback_set.c b/test/guix_test/regression_test/tests/validation_guix_text_scroll_wheel_callback_set.c index 9b486346..79458e8d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_text_scroll_wheel_callback_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_text_scroll_wheel_callback_set.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_text_scroll_wheel_draw_with_alpha.c b/test/guix_test/regression_test/tests/validation_guix_text_scroll_wheel_draw_with_alpha.c index ac1967e7..81a51bb2 100644 --- a/test/guix_test/regression_test/tests/validation_guix_text_scroll_wheel_draw_with_alpha.c +++ b/test/guix_test/regression_test/tests/validation_guix_text_scroll_wheel_draw_with_alpha.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_text_scroll_wheel_event_process_no_output.c b/test/guix_test/regression_test/tests/validation_guix_text_scroll_wheel_event_process_no_output.c index 6cf1df52..4b462405 100644 --- a/test/guix_test/regression_test/tests/validation_guix_text_scroll_wheel_event_process_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_text_scroll_wheel_event_process_no_output.c @@ -23,7 +23,7 @@ static VOID control_thread_entry(ULONG); VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_text_scroll_wheel_flat_draw.c b/test/guix_test/regression_test/tests/validation_guix_text_scroll_wheel_flat_draw.c index 2ee84c39..edbe91ee 100644 --- a/test/guix_test/regression_test/tests/validation_guix_text_scroll_wheel_flat_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_text_scroll_wheel_flat_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_text_scroll_wheel_round_draw.c b/test/guix_test/regression_test/tests/validation_guix_text_scroll_wheel_round_draw.c index fc0e6a09..f1af014a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_text_scroll_wheel_round_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_text_scroll_wheel_round_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_thai_glyph_shaping.c b/test/guix_test/regression_test/tests/validation_guix_thai_glyph_shaping.c index 078b570f..b9587040 100644 --- a/test/guix_test/regression_test/tests/validation_guix_thai_glyph_shaping.c +++ b/test/guix_test/regression_test/tests/validation_guix_thai_glyph_shaping.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_thai_glyph_shaping_runtime.c b/test/guix_test/regression_test/tests/validation_guix_thai_glyph_shaping_runtime.c index bd3f1005..0bb98253 100644 --- a/test/guix_test/regression_test/tests/validation_guix_thai_glyph_shaping_runtime.c +++ b/test/guix_test/regression_test/tests/validation_guix_thai_glyph_shaping_runtime.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_tree_view_event_process.c b/test/guix_test/regression_test/tests/validation_guix_tree_view_event_process.c index 7b6e108e..e5266cd6 100644 --- a/test/guix_test/regression_test/tests/validation_guix_tree_view_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_tree_view_event_process.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_tree_view_position.c b/test/guix_test/regression_test/tests/validation_guix_tree_view_position.c index 90c92d47..bde07478 100644 --- a/test/guix_test/regression_test/tests/validation_guix_tree_view_position.c +++ b/test/guix_test/regression_test/tests/validation_guix_tree_view_position.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_tree_view_root_pixelmap_set.c b/test/guix_test/regression_test/tests/validation_guix_tree_view_root_pixelmap_set.c index e8223287..14c9ce34 100644 --- a/test/guix_test/regression_test/tests/validation_guix_tree_view_root_pixelmap_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_tree_view_root_pixelmap_set.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_tree_view_scroll.c b/test/guix_test/regression_test/tests/validation_guix_tree_view_scroll.c index 5c5bef54..44fd4b9a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_tree_view_scroll.c +++ b/test/guix_test/regression_test/tests/validation_guix_tree_view_scroll.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_tree_view_selected_set.c b/test/guix_test/regression_test/tests/validation_guix_tree_view_selected_set.c index ee0b044e..0630106f 100644 --- a/test/guix_test/regression_test/tests/validation_guix_tree_view_selected_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_tree_view_selected_set.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_tree_view_show_event_process.c b/test/guix_test/regression_test/tests/validation_guix_tree_view_show_event_process.c index f1cbf48b..b15ba841 100644 --- a/test/guix_test/regression_test/tests/validation_guix_tree_view_show_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_tree_view_show_event_process.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_1555xrgb_pixelmap_resize.c b/test/guix_test/regression_test/tests/validation_guix_utility_1555xrgb_pixelmap_resize.c index 97e8eb79..b9aaa50c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_1555xrgb_pixelmap_resize.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_1555xrgb_pixelmap_resize.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -76,7 +76,7 @@ GX_COLOR test_memory_20000[TEST_MEMORY_SIZE_20000]; GX_COLOR test_memory_31000[TEST_MEMORY_SIZE_31000]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_1555xrgb_pixelmap_rotate.c b/test/guix_test/regression_test/tests/validation_guix_utility_1555xrgb_pixelmap_rotate.c index aa47b5e8..42739fa4 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_1555xrgb_pixelmap_rotate.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_1555xrgb_pixelmap_rotate.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -105,7 +105,7 @@ GX_RECTANGLE win_size; } } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_16bpp_pixelmap_resize.c b/test/guix_test/regression_test/tests/validation_guix_utility_16bpp_pixelmap_resize.c index 0f3e8260..285f567d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_16bpp_pixelmap_resize.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_16bpp_pixelmap_resize.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -65,7 +65,7 @@ GX_COLOR test_memory_20000[TEST_MEMORY_SIZE_20000]; GX_COLOR test_memory_60000[TEST_MEMORY_SIZE_60000]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_16bpp_pixelmap_rotate.c b/test/guix_test/regression_test/tests/validation_guix_utility_16bpp_pixelmap_rotate.c index b575a08f..0c34c441 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_16bpp_pixelmap_rotate.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_16bpp_pixelmap_rotate.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -113,7 +113,7 @@ GX_RECTANGLE win_size; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_1bpp_pixelmap_resize.c b/test/guix_test/regression_test/tests/validation_guix_utility_1bpp_pixelmap_resize.c index 796cab32..1efa889d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_1bpp_pixelmap_resize.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_1bpp_pixelmap_resize.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -80,7 +80,7 @@ VOID test_free(VOID *mem) return; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_1bpp_pixelmap_rotate.c b/test/guix_test/regression_test/tests/validation_guix_utility_1bpp_pixelmap_rotate.c index f0179b09..46ca0370 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_1bpp_pixelmap_rotate.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_1bpp_pixelmap_rotate.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -105,7 +105,7 @@ GX_RECTANGLE win_size; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_1bpp_string_to_alphamap.c b/test/guix_test/regression_test/tests/validation_guix_utility_1bpp_string_to_alphamap.c index 9b04f8b8..3d712f27 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_1bpp_string_to_alphamap.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_1bpp_string_to_alphamap.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -80,7 +80,7 @@ int ypos; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_32argb_pixelmap_resize.c b/test/guix_test/regression_test/tests/validation_guix_utility_32argb_pixelmap_resize.c index b53c7967..56678712 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_32argb_pixelmap_resize.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_32argb_pixelmap_resize.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -68,7 +68,7 @@ VOID test_free(VOID *mem) return; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_32bpp_pixelmap_rotate.c b/test/guix_test/regression_test/tests/validation_guix_utility_32bpp_pixelmap_rotate.c index 1089d00e..15808b41 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_32bpp_pixelmap_rotate.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_32bpp_pixelmap_rotate.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -105,7 +105,7 @@ GX_RECTANGLE win_size; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_332rgb_pixelmap_resize.c b/test/guix_test/regression_test/tests/validation_guix_utility_332rgb_pixelmap_resize.c index c438adec..ba77aad6 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_332rgb_pixelmap_resize.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_332rgb_pixelmap_resize.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -77,7 +77,7 @@ extern float y_ratio; extern GX_RESOURCE_ID resize_pixelmap_id; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_332rgb_pixelmap_rotate.c b/test/guix_test/regression_test/tests/validation_guix_utility_332rgb_pixelmap_rotate.c index 7fec560f..e234549b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_332rgb_pixelmap_rotate.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_332rgb_pixelmap_rotate.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -107,7 +107,7 @@ GX_RECTANGLE win_size; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_4444argb_pixelmap_resize.c b/test/guix_test/regression_test/tests/validation_guix_utility_4444argb_pixelmap_resize.c index 910f6437..105f3486 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_4444argb_pixelmap_resize.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_4444argb_pixelmap_resize.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -80,7 +80,7 @@ extern float y_ratio; extern GX_RESOURCE_ID resize_pixelmap_id; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_4444argb_pixelmap_rotate.c b/test/guix_test/regression_test/tests/validation_guix_utility_4444argb_pixelmap_rotate.c index 409c7efc..9b2cfbd5 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_4444argb_pixelmap_rotate.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_4444argb_pixelmap_rotate.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -103,7 +103,7 @@ GX_RECTANGLE win_size; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_4bpp_pixelmap_resize.c b/test/guix_test/regression_test/tests/validation_guix_utility_4bpp_pixelmap_resize.c index 2571221d..b17e476d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_4bpp_pixelmap_resize.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_4bpp_pixelmap_resize.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -79,7 +79,7 @@ extern float y_ratio; extern GX_RESOURCE_ID resize_pixelmap_id; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_4bpp_pixelmap_rotate.c b/test/guix_test/regression_test/tests/validation_guix_utility_4bpp_pixelmap_rotate.c index 14f5ff95..cadf9c4c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_4bpp_pixelmap_rotate.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_4bpp_pixelmap_rotate.c @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -111,7 +111,7 @@ GX_RECTANGLE win_size; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_8bpp_pixelmap_rotate.c b/test/guix_test/regression_test/tests/validation_guix_utility_8bpp_pixelmap_rotate.c index 16686d94..502927f7 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_8bpp_pixelmap_rotate.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_8bpp_pixelmap_rotate.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -101,7 +101,7 @@ GX_RECTANGLE win_size; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_1555xrgb_no_output.c b/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_1555xrgb_no_output.c index 94827dca..f15a9bf9 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_1555xrgb_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_1555xrgb_no_output.c @@ -22,7 +22,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_application_define(first_unused_memory); @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } @@ -49,7 +49,7 @@ VOID tx_application_define(void *first_unused_memory) /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_16bpp_no_output.c b/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_16bpp_no_output.c index 78fe2bb2..52daf642 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_16bpp_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_16bpp_no_output.c @@ -22,7 +22,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_application_define(first_unused_memory); @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } @@ -49,7 +49,7 @@ VOID tx_application_define(void *first_unused_memory) /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_32bpp_no_output.c b/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_32bpp_no_output.c index a5c8bf93..a27be0aa 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_32bpp_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_32bpp_no_output.c @@ -22,7 +22,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_application_define(first_unused_memory); @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } @@ -49,7 +49,7 @@ VOID tx_application_define(void *first_unused_memory) /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_332rgb_no_output.c b/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_332rgb_no_output.c index c7896e81..4fff6d8b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_332rgb_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_332rgb_no_output.c @@ -22,7 +22,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_application_define(first_unused_memory); @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } @@ -50,7 +50,7 @@ VOID tx_application_define(void *first_unused_memory) /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_4444argb_no_output.c b/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_4444argb_no_output.c index 7cd5ca93..f134b553 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_4444argb_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_4444argb_no_output.c @@ -22,7 +22,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_application_define(first_unused_memory); @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } @@ -49,7 +49,7 @@ VOID tx_application_define(void *first_unused_memory) /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_4bpp_no_output.c b/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_4bpp_no_output.c index 9cb08859..65cbaa97 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_4bpp_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_4bpp_no_output.c @@ -22,7 +22,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_application_define(first_unused_memory); @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } @@ -49,7 +49,7 @@ VOID tx_application_define(void *first_unused_memory) /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_8bit_palette_no_output.c b/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_8bit_palette_no_output.c index 5a44a35f..ad5f9b32 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_8bit_palette_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_8bit_palette_no_output.c @@ -22,7 +22,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_application_define(first_unused_memory); @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -50,7 +50,7 @@ VOID tx_application_define(void *first_unused_memory) /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_monochrome_no_output.c b/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_monochrome_no_output.c index c071b752..153cf269 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_monochrome_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_canvas_to_bmp_monochrome_no_output.c @@ -22,7 +22,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_application_define(first_unused_memory); @@ -31,7 +31,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -51,7 +51,7 @@ VOID tx_application_define(void *first_unused_memory) /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_math_sqrt_no_output.c b/test/guix_test/regression_test/tests/validation_guix_utility_math_sqrt_no_output.c index d9aaaa7c..881e9442 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_math_sqrt_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_math_sqrt_no_output.c @@ -23,12 +23,12 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_application_define(first_unused_memory); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -43,7 +43,7 @@ VOID tx_application_define(void *first_unused_memory) /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_no_output.c b/test/guix_test/regression_test/tests/validation_guix_utility_no_output.c index 95def41a..da1e5f53 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_no_output.c @@ -23,7 +23,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_application_define(first_unused_memory); @@ -32,7 +32,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -46,7 +46,7 @@ VOID tx_application_define(void *first_unused_memory) #include "demo_guix_screenshot_to_bitmap_32bpp.c" /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ GX_CONST GX_CHAR text_short[] = "short"; diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_string_to_alphamap.c b/test/guix_test/regression_test/tests/validation_guix_utility_string_to_alphamap.c index addb3f55..91c1db23 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_string_to_alphamap.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_string_to_alphamap.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -80,7 +80,7 @@ void test_window_draw(GX_WINDOW *window) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_utility_utf8_string_character.c b/test/guix_test/regression_test/tests/validation_guix_utility_utf8_string_character.c index f55298b5..cd9522f2 100644 --- a/test/guix_test/regression_test/tests/validation_guix_utility_utf8_string_character.c +++ b/test/guix_test/regression_test/tests/validation_guix_utility_utf8_string_character.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -70,7 +70,7 @@ GX_CHAR **language_table[1] = }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_vertical_list_animation.c b/test/guix_test/regression_test/tests/validation_guix_vertical_list_animation.c index ce101594..ce743bd5 100644 --- a/test/guix_test/regression_test/tests/validation_guix_vertical_list_animation.c +++ b/test/guix_test/regression_test/tests/validation_guix_vertical_list_animation.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -113,7 +113,7 @@ GX_TIMER *found; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_vertical_list_child_height.c b/test/guix_test/regression_test/tests/validation_guix_vertical_list_child_height.c index 989b8ec6..1767e0ee 100644 --- a/test/guix_test/regression_test/tests/validation_guix_vertical_list_child_height.c +++ b/test/guix_test/regression_test/tests/validation_guix_vertical_list_child_height.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -57,7 +57,7 @@ VOID tx_application_define(void *first_unused_memory) #include "demo_guix_vertical_list_32bpp.c" /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_vertical_list_drag.c b/test/guix_test/regression_test/tests/validation_guix_vertical_list_drag.c index c826ccee..86d12819 100644 --- a/test/guix_test/regression_test/tests/validation_guix_vertical_list_drag.c +++ b/test/guix_test/regression_test/tests/validation_guix_vertical_list_drag.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ char test_comment[256]; #define YPOS_2 150 /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_vertical_list_event_process.c b/test/guix_test/regression_test/tests/validation_guix_vertical_list_event_process.c index 3f07e830..4b925eb1 100644 --- a/test/guix_test/regression_test/tests/validation_guix_vertical_list_event_process.c +++ b/test/guix_test/regression_test/tests/validation_guix_vertical_list_event_process.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_vertical_list_page_index_set.c b/test/guix_test/regression_test/tests/validation_guix_vertical_list_page_index_set.c index a3fcc7d8..5bec3538 100644 --- a/test/guix_test/regression_test/tests/validation_guix_vertical_list_page_index_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_vertical_list_page_index_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -61,7 +61,7 @@ int index_list[]={18,26,1,10,0,5,7,0,15,25,19}; char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_vertical_list_scroll.c b/test/guix_test/regression_test/tests/validation_guix_vertical_list_scroll.c index 860c5d39..cfe382d5 100644 --- a/test/guix_test/regression_test/tests/validation_guix_vertical_list_scroll.c +++ b/test/guix_test/regression_test/tests/validation_guix_vertical_list_scroll.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -78,7 +78,7 @@ TEST test_list[]={ char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_vertical_list_scroll_with_large_value.c b/test/guix_test/regression_test/tests/validation_guix_vertical_list_scroll_with_large_value.c index 9a2a57e0..18737ed5 100644 --- a/test/guix_test/regression_test/tests/validation_guix_vertical_list_scroll_with_large_value.c +++ b/test/guix_test/regression_test/tests/validation_guix_vertical_list_scroll_with_large_value.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -96,7 +96,7 @@ GX_EVENT my_event; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_vertical_list_select.c b/test/guix_test/regression_test/tests/validation_guix_vertical_list_select.c index 8e6a009c..a0338779 100644 --- a/test/guix_test/regression_test/tests/validation_guix_vertical_list_select.c +++ b/test/guix_test/regression_test/tests/validation_guix_vertical_list_select.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -64,7 +64,7 @@ char test_comment[256]; #define ITEM_3_Y 438 /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_vertical_list_selected_set.c b/test/guix_test/regression_test/tests/validation_guix_vertical_list_selected_set.c index bc781feb..2cd3089c 100644 --- a/test/guix_test/regression_test/tests/validation_guix_vertical_list_selected_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_vertical_list_selected_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -82,7 +82,7 @@ GX_EVENT my_event; } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_vertical_list_set_32bpp.c b/test/guix_test/regression_test/tests/validation_guix_vertical_list_set_32bpp.c index 32c9bc53..dece3580 100644 --- a/test/guix_test/regression_test/tests/validation_guix_vertical_list_set_32bpp.c +++ b/test/guix_test/regression_test/tests/validation_guix_vertical_list_set_32bpp.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -62,7 +62,7 @@ GX_POINT remove_button_point = {500, 395}; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_vertical_list_total_rows_set.c b/test/guix_test/regression_test/tests/validation_guix_vertical_list_total_rows_set.c index e2a47f13..146c7c69 100644 --- a/test/guix_test/regression_test/tests/validation_guix_vertical_list_total_rows_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_vertical_list_total_rows_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -80,7 +80,7 @@ static void select_row(int row) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_vertical_list_wrap.c b/test/guix_test/regression_test/tests/validation_guix_vertical_list_wrap.c index 091de6e7..fee64daf 100644 --- a/test/guix_test/regression_test/tests/validation_guix_vertical_list_wrap.c +++ b/test/guix_test/regression_test/tests/validation_guix_vertical_list_wrap.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_vertical_list_wrap_1.c b/test/guix_test/regression_test/tests/validation_guix_vertical_list_wrap_1.c index 8cf8a30d..ad038609 100644 --- a/test/guix_test/regression_test/tests/validation_guix_vertical_list_wrap_1.c +++ b/test/guix_test/regression_test/tests/validation_guix_vertical_list_wrap_1.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -60,7 +60,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_vertical_screen_drag_animation.c b/test/guix_test/regression_test/tests/validation_guix_vertical_screen_drag_animation.c index fd8263da..33b19f7a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_vertical_screen_drag_animation.c +++ b/test/guix_test/regression_test/tests/validation_guix_vertical_screen_drag_animation.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -99,7 +99,7 @@ TX_SEMAPHORE semaphore_memory; GX_CHAR test_comments[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_vertical_screen_drag_animation_with_block_move.c b/test/guix_test/regression_test/tests/validation_guix_vertical_screen_drag_animation_with_block_move.c index 955e9013..e4d5c369 100644 --- a/test/guix_test/regression_test/tests/validation_guix_vertical_screen_drag_animation_with_block_move.c +++ b/test/guix_test/regression_test/tests/validation_guix_vertical_screen_drag_animation_with_block_move.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -97,7 +97,7 @@ TX_SEMAPHORE semaphore_memory; GX_CHAR *test_comments[1]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_vertical_screen_drag_animation_with_canvas.c b/test/guix_test/regression_test/tests/validation_guix_vertical_screen_drag_animation_with_canvas.c index 59ef4204..3ec5943b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_vertical_screen_drag_animation_with_canvas.c +++ b/test/guix_test/regression_test/tests/validation_guix_vertical_screen_drag_animation_with_canvas.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -97,7 +97,7 @@ TX_SEMAPHORE semaphore_memory; GX_CHAR *test_comments[1]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_vertical_screen_drag_animation_with_easing_func.c b/test/guix_test/regression_test/tests/validation_guix_vertical_screen_drag_animation_with_easing_func.c index dee720a1..772cf3ec 100644 --- a/test/guix_test/regression_test/tests/validation_guix_vertical_screen_drag_animation_with_easing_func.c +++ b/test/guix_test/regression_test/tests/validation_guix_vertical_screen_drag_animation_with_easing_func.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -80,7 +80,7 @@ TX_SEMAPHORE semaphore_memory; GX_CHAR *test_comments[1]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_widget_back_attach.c b/test/guix_test/regression_test/tests/validation_guix_widget_back_attach.c index 3f4564c8..05a7688d 100644 --- a/test/guix_test/regression_test/tests/validation_guix_widget_back_attach.c +++ b/test/guix_test/regression_test/tests/validation_guix_widget_back_attach.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_widget_back_link.c b/test/guix_test/regression_test/tests/validation_guix_widget_back_link.c index 2e2bdbd9..7949ba44 100644 --- a/test/guix_test/regression_test/tests/validation_guix_widget_back_link.c +++ b/test/guix_test/regression_test/tests/validation_guix_widget_back_link.c @@ -36,7 +36,7 @@ VOID tx_application_define(void *first_unused_memory) /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ GX_WIDGET *list[] = }; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_widget_back_move.c b/test/guix_test/regression_test/tests/validation_guix_widget_back_move.c index a92234fa..a5b4c33a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_widget_back_move.c +++ b/test/guix_test/regression_test/tests/validation_guix_widget_back_move.c @@ -33,7 +33,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_widget_block_move.c b/test/guix_test/regression_test/tests/validation_guix_widget_block_move.c index 2592a669..8a169756 100644 --- a/test/guix_test/regression_test/tests/validation_guix_widget_block_move.c +++ b/test/guix_test/regression_test/tests/validation_guix_widget_block_move.c @@ -34,7 +34,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -58,7 +58,7 @@ VOID tx_application_define(void *first_unused_memory) static GX_CHAR test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_widget_border_draw.c b/test/guix_test/regression_test/tests/validation_guix_widget_border_draw.c index f39737a0..8cb7f9ca 100644 --- a/test/guix_test/regression_test/tests/validation_guix_widget_border_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_widget_border_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_widget_canvas_get_no_output.c b/test/guix_test/regression_test/tests/validation_guix_widget_canvas_get_no_output.c index d125eec6..dce7f0a7 100644 --- a/test/guix_test/regression_test/tests/validation_guix_widget_canvas_get_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_widget_canvas_get_no_output.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_widget_child_focus_assign_no_output.c b/test/guix_test/regression_test/tests/validation_guix_widget_child_focus_assign_no_output.c index d4350b17..bd667503 100644 --- a/test/guix_test/regression_test/tests/validation_guix_widget_child_focus_assign_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_widget_child_focus_assign_no_output.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_widget_children_draw.c b/test/guix_test/regression_test/tests/validation_guix_widget_children_draw.c index 5a26fc34..b5dca7a0 100644 --- a/test/guix_test/regression_test/tests/validation_guix_widget_children_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_widget_children_draw.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_widget_delete_no_output.c b/test/guix_test/regression_test/tests/validation_guix_widget_delete_no_output.c index 78789b4d..a00ed711 100644 --- a/test/guix_test/regression_test/tests/validation_guix_widget_delete_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_widget_delete_no_output.c @@ -24,7 +24,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_widget_find_demo_no_output.c b/test/guix_test/regression_test/tests/validation_guix_widget_find_demo_no_output.c index 15b6c8eb..f512c824 100644 --- a/test/guix_test/regression_test/tests/validation_guix_widget_find_demo_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_widget_find_demo_no_output.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_widget_find_no_output.c b/test/guix_test/regression_test/tests/validation_guix_widget_find_no_output.c index 4fa321e6..b8e3f09a 100644 --- a/test/guix_test/regression_test/tests/validation_guix_widget_find_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_widget_find_no_output.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_widget_font_get_no_output.c b/test/guix_test/regression_test/tests/validation_guix_widget_font_get_no_output.c index 70623c00..6f040f54 100644 --- a/test/guix_test/regression_test/tests/validation_guix_widget_font_get_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_widget_font_get_no_output.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_widget_link.c b/test/guix_test/regression_test/tests/validation_guix_widget_link.c index b928b415..522fc063 100644 --- a/test/guix_test/regression_test/tests/validation_guix_widget_link.c +++ b/test/guix_test/regression_test/tests/validation_guix_widget_link.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_widget_no_output.c b/test/guix_test/regression_test/tests/validation_guix_widget_no_output.c index 66fad267..91ebb37b 100644 --- a/test/guix_test/regression_test/tests/validation_guix_widget_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_widget_no_output.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_widget_pixelmap_get.c b/test/guix_test/regression_test/tests/validation_guix_widget_pixelmap_get.c index ba439017..c8bcb7e6 100644 --- a/test/guix_test/regression_test/tests/validation_guix_widget_pixelmap_get.c +++ b/test/guix_test/regression_test/tests/validation_guix_widget_pixelmap_get.c @@ -34,7 +34,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -72,7 +72,7 @@ VOID sprite_screen_draw(GX_WINDOW *window) static GX_CHAR test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_widget_scroll_shift.c b/test/guix_test/regression_test/tests/validation_guix_widget_scroll_shift.c index a70ab163..1da8d067 100644 --- a/test/guix_test/regression_test/tests/validation_guix_widget_scroll_shift.c +++ b/test/guix_test/regression_test/tests/validation_guix_widget_scroll_shift.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_widget_string_get_no_output.c b/test/guix_test/regression_test/tests/validation_guix_widget_string_get_no_output.c index 4b3948bf..0baf3c20 100644 --- a/test/guix_test/regression_test/tests/validation_guix_widget_string_get_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_widget_string_get_no_output.c @@ -28,7 +28,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_widget_style_set.c b/test/guix_test/regression_test/tests/validation_guix_widget_style_set.c index f5ddb0c5..265cda25 100644 --- a/test/guix_test/regression_test/tests/validation_guix_widget_style_set.c +++ b/test/guix_test/regression_test/tests/validation_guix_widget_style_set.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_widget_text_blend_no_output.c b/test/guix_test/regression_test/tests/validation_guix_widget_text_blend_no_output.c index 8c162435..a3e844dc 100644 --- a/test/guix_test/regression_test/tests/validation_guix_widget_text_blend_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_widget_text_blend_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_widget_text_draw.c b/test/guix_test/regression_test/tests/validation_guix_widget_text_draw.c index a6dfbf55..b5bb1e30 100644 --- a/test/guix_test/regression_test/tests/validation_guix_widget_text_draw.c +++ b/test/guix_test/regression_test/tests/validation_guix_widget_text_draw.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -90,7 +90,7 @@ static void test_widget_text_id_draw(GX_WINDOW *window) } /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_widget_transparent_pixelmap_detect_no_output.c b/test/guix_test/regression_test/tests/validation_guix_widget_transparent_pixelmap_detect_no_output.c index 2bdca944..52f5ba71 100644 --- a/test/guix_test/regression_test/tests/validation_guix_widget_transparent_pixelmap_detect_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_widget_transparent_pixelmap_detect_no_output.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_widgets_with_private_string.c b/test/guix_test/regression_test/tests/validation_guix_widgets_with_private_string.c index 175ff928..3ff5f3ea 100644 --- a/test/guix_test/regression_test/tests/validation_guix_widgets_with_private_string.c +++ b/test/guix_test/regression_test/tests/validation_guix_widgets_with_private_string.c @@ -33,7 +33,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_window_client_scroll.c b/test/guix_test/regression_test/tests/validation_guix_window_client_scroll.c index 5642bbf5..00d7c425 100644 --- a/test/guix_test/regression_test/tests/validation_guix_window_client_scroll.c +++ b/test/guix_test/regression_test/tests/validation_guix_window_client_scroll.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the scrollbar drawing example. These operations simulate + on the scrollbar drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -59,7 +59,7 @@ VOID tx_application_define(void *first_unused_memory) char test_comment[256]; /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_window_client_scroll_api.c b/test/guix_test/regression_test/tests/validation_guix_window_client_scroll_api.c index c9701b7a..6cc516c9 100644 --- a/test/guix_test/regression_test/tests/validation_guix_window_client_scroll_api.c +++ b/test/guix_test/regression_test/tests/validation_guix_window_client_scroll_api.c @@ -27,7 +27,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); @@ -56,7 +56,7 @@ VOID tx_application_define(void *first_unused_memory) #include "demo_guix_all_widgets.c" /* This thread simulates user input. Its priority is lower - than the GUIX thread, so that GUIX finishes an operation + than the GUIX thread, so that GUIX finishes an operation before this thread is able to issue the next command. */ static VOID control_thread_entry(ULONG input) { diff --git a/test/guix_test/regression_test/tests/validation_guix_window_event_process_no_output.c b/test/guix_test/regression_test/tests/validation_guix_window_event_process_no_output.c index 7888a212..5982de35 100644 --- a/test/guix_test/regression_test/tests/validation_guix_window_event_process_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_window_event_process_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/tests/validation_guix_window_execute.c b/test/guix_test/regression_test/tests/validation_guix_window_execute.c index fce59a25..003088b3 100644 --- a/test/guix_test/regression_test/tests/validation_guix_window_execute.c +++ b/test/guix_test/regression_test/tests/validation_guix_window_execute.c @@ -30,7 +30,7 @@ VOID tx_application_define(void *first_unused_memory) { /* Create a dedicated thread to perform various operations - on the line drawing example. These operations simulate + on the line drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); diff --git a/test/guix_test/regression_test/tests/validation_guix_window_no_output.c b/test/guix_test/regression_test/tests/validation_guix_window_no_output.c index e20e3bdc..7c1522b4 100644 --- a/test/guix_test/regression_test/tests/validation_guix_window_no_output.c +++ b/test/guix_test/regression_test/tests/validation_guix_window_no_output.c @@ -29,7 +29,7 @@ VOID tx_application_define(void *first_unused_memory) gx_validation_watchdog_create(100); /* Create a dedicated thread to perform various operations - on the pixelmap drawing example. These operations simulate + on the pixelmap drawing example. These operations simulate user input. */ gx_validation_control_thread_create(control_thread_entry); } diff --git a/test/guix_test/regression_test/utility/gx_validation_display_driver_16bpp.c b/test/guix_test/regression_test/utility/gx_validation_display_driver_16bpp.c index b2ba721d..86926043 100644 --- a/test/guix_test/regression_test/utility/gx_validation_display_driver_16bpp.c +++ b/test/guix_test/regression_test/utility/gx_validation_display_driver_16bpp.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/test/guix_test/regression_test/utility/gx_validation_display_driver_1bpp.c b/test/guix_test/regression_test/utility/gx_validation_display_driver_1bpp.c index f6b608e1..c2d7d36f 100644 --- a/test/guix_test/regression_test/utility/gx_validation_display_driver_1bpp.c +++ b/test/guix_test/regression_test/utility/gx_validation_display_driver_1bpp.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/test/guix_test/regression_test/utility/gx_validation_display_driver_32bpp.c b/test/guix_test/regression_test/utility/gx_validation_display_driver_32bpp.c index 2bb2848e..726676f6 100644 --- a/test/guix_test/regression_test/utility/gx_validation_display_driver_32bpp.c +++ b/test/guix_test/regression_test/utility/gx_validation_display_driver_32bpp.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/test/guix_test/regression_test/utility/gx_validation_display_driver_4bpp.c b/test/guix_test/regression_test/utility/gx_validation_display_driver_4bpp.c index 7564e7a7..7e942adf 100644 --- a/test/guix_test/regression_test/utility/gx_validation_display_driver_4bpp.c +++ b/test/guix_test/regression_test/utility/gx_validation_display_driver_4bpp.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/test/guix_test/regression_test/utility/gx_validation_display_driver_8bpp.c b/test/guix_test/regression_test/utility/gx_validation_display_driver_8bpp.c index b58b4a83..8cfbfb4e 100644 --- a/test/guix_test/regression_test/utility/gx_validation_display_driver_8bpp.c +++ b/test/guix_test/regression_test/utility/gx_validation_display_driver_8bpp.c @@ -1,10 +1,11 @@ /*************************************************************************** - * Copyright (c) 2024 Microsoft Corporation - * + * Copyright (c) 2024 Microsoft Corporation + * Copyright (c) 2026-present Eclipse ThreadX contributors + * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. - * + * * SPDX-License-Identifier: MIT **************************************************************************/ diff --git a/test/guix_test/regression_test/utility/gx_validation_utility.h b/test/guix_test/regression_test/utility/gx_validation_utility.h index b226f378..23f1b2df 100644 --- a/test/guix_test/regression_test/utility/gx_validation_utility.h +++ b/test/guix_test/regression_test/utility/gx_validation_utility.h @@ -31,7 +31,7 @@ VOID gx_validation_application_define(void *); void gx_validation_setup(int argc, char **argv); -/* gx_validation_create_output_file is called from the validation driver toggle routine +/* gx_validation_create_output_file is called from the validation driver toggle routine to create the output file, and to record the color depth, width, height */ int gx_validation_create_output_file(char *color_depth, int width, int height); @@ -42,7 +42,7 @@ int gx_validation_create_frame_buffer(int frame_size); /* gx_validation_write_frame_write is called from the validation driver toggle routine */ void gx_validation_write_frame_buffer(void); -/* gx_validation_validate_data_frame is called from the frame work to validate the output. +/* gx_validation_validate_data_frame is called from the frame work to validate the output. It also indicates the beginning of a frame. */ int gx_validation_validate_data_frame(char *golden_file, char *test_output); diff --git a/tutorials/demo_guix_binres/demo_guix_binres.c b/tutorials/demo_guix_binres/demo_guix_binres.c index a7dfbc04..12446a7c 100644 --- a/tutorials/demo_guix_binres/demo_guix_binres.c +++ b/tutorials/demo_guix_binres/demo_guix_binres.c @@ -75,7 +75,7 @@ UINT load_language_count(GX_UBYTE *root_address, GX_VALUE *put_count); #ifdef STM32F439xx /** * @brief System Clock Configuration - * The system Clock is configured as follow : + * The system Clock is configured as follow : * System Clock source = PLL (HSE) * SYSCLK(Hz) = 180000000 * HCLK(Hz) = 180000000 @@ -101,8 +101,8 @@ static void SystemClock_Config(void) /* Enable Power Control clock */ __HAL_RCC_PWR_CLK_ENABLE(); - /* The voltage scaling allows optimizing the power consumption when the device is - clocked below the maximum system frequency, to update the voltage scaling value + /* The voltage scaling allows optimizing the power consumption when the device is + clocked below the maximum system frequency, to update the voltage scaling value regarding system frequency refer to product datasheet. */ __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1); @@ -120,7 +120,7 @@ static void SystemClock_Config(void) /* Activate the Over-Drive mode */ HAL_PWREx_EnableOverDrive(); - /* Select PLL as system clock source and configure the HCLK, PCLK1 and PCLK2 + /* Select PLL as system clock source and configure the HCLK, PCLK1 and PCLK2 clocks dividers */ RCC_ClkInitStruct.ClockType = (RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2); RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK; @@ -304,9 +304,9 @@ VOID *load_binary_resource_data_to_ram() { UCHAR *address = GX_NULL; - /* If generated resource is stored in a FAT filesystem, it must be + /* If generated resource is stored in a FAT filesystem, it must be loaded into memory before it can be used. This memory could be - RAM or FLASH, but for the purpose of this example will simply + RAM or FLASH, but for the purpose of this example will simply read the file to RAM. */ FILE *p_file; size_t total_length; diff --git a/tutorials/demo_guix_runtime_bidi_text/demo_guix_runtime_bidi_text.c b/tutorials/demo_guix_runtime_bidi_text/demo_guix_runtime_bidi_text.c index 5ee44b8f..2c6bb48d 100644 --- a/tutorials/demo_guix_runtime_bidi_text/demo_guix_runtime_bidi_text.c +++ b/tutorials/demo_guix_runtime_bidi_text/demo_guix_runtime_bidi_text.c @@ -135,7 +135,7 @@ VOID window_draw(GX_WINDOW *window) { #if defined(GX_DYNAMIC_BIDI_TEXT_SUPPORT) /* This is an example to draw bidi text to canvas. - + If you are using a text widget for displaying bidi text, the following process is not needed, the text widget handles everything for you. */ diff --git a/tutorials/demo_guix_transitions/demo_guix_transitions.c b/tutorials/demo_guix_transitions/demo_guix_transitions.c index 8b673332..d46614f0 100644 --- a/tutorials/demo_guix_transitions/demo_guix_transitions.c +++ b/tutorials/demo_guix_transitions/demo_guix_transitions.c @@ -3,7 +3,7 @@ This demonstration illustrates how to implement slide and fade transtions when moving from screen to screen. - Actually, the work of doing most of the transitions can be done using just + Actually, the work of doing most of the transitions can be done using just the GUIX Studio screen flow diagram, which generates the logic to implement slide and fade screen transitions for you. However, for the purpose of a tutorial, we have implemented the slide-in slide-out animations of the settings window in the application logic, and change the slide @@ -215,7 +215,7 @@ GX_WIDGET *frame; } -/* Event handler for the background window. Initializes the photo-drag +/* Event handler for the background window. Initializes the photo-drag animation, and catches the "Settings" button push. */ UINT BackgroundWinEventProcess(GX_WINDOW *window, GX_EVENT *event_ptr) diff --git a/tutorials/demo_guix_widget_animation/demo_guix_widget_animation.c b/tutorials/demo_guix_widget_animation/demo_guix_widget_animation.c index a5dc76a1..9ea494b6 100644 --- a/tutorials/demo_guix_widget_animation/demo_guix_widget_animation.c +++ b/tutorials/demo_guix_widget_animation/demo_guix_widget_animation.c @@ -40,7 +40,7 @@ USHORT easing_function_id = 0; GX_BOOL animation_back = GX_FALSE; /* Define easing functions. */ -/* Would it be difficult to draw the easing function graphi instead of +/* Would it be difficult to draw the easing function graphi instead of using pre-defined pixelmaps for each shape? */ GX_CONST EASING_FUNCTION_DATA easing_function_list[] = { From 262702f19a0e52fe53b08156077275b900a8d06b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Desbiens?= Date: Fri, 6 Mar 2026 12:54:51 +0100 Subject: [PATCH 09/10] Updated ports copyright headers and version number --- ports/arc_em/metaware/inc/gx_port.h | 2 +- ports/arc_hs/metaware/inc/gx_port.h | 2 +- ports/arm9/ac5/inc/gx_port.h | 2 +- ports/arm9/gnu/inc/gx_port.h | 2 +- ports/arm9/iar/inc/gx_port.h | 2 +- ports/c667x/ccs/inc/gx_port.h | 2 +- ports/ccrx/inc/gx_port.h | 2 +- ports/cortex_a15/gnu/inc/gx_port.h | 2 +- ports/cortex_a5/ac5/inc/gx_port.h | 2 +- ports/cortex_a5/gnu/inc/gx_port.h | 2 +- ports/cortex_a5/iar/inc/gx_port.h | 2 +- ports/cortex_a5x/ac6/inc/gx_port.h | 2 +- ports/cortex_a7/ac5/inc/gx_port.h | 2 +- ports/cortex_a7/gnu/inc/gx_port.h | 2 +- ports/cortex_a7/iar/inc/gx_port.h | 2 +- ports/cortex_a8/ac5/inc/gx_port.h | 2 +- ports/cortex_a8/gnu/inc/gx_port.h | 2 +- ports/cortex_a8/iar/inc/gx_port.h | 2 +- ports/cortex_a9/ac5/inc/gx_port.h | 2 +- ports/cortex_a9/gnu/inc/gx_port.h | 2 +- ports/cortex_a9/iar/inc/gx_port.h | 2 +- ports/cortex_m0/ac5/inc/gx_port.h | 2 +- ports/cortex_m0/gnu/inc/gx_port.h | 2 +- ports/cortex_m0/iar/inc/gx_port.h | 2 +- ports/cortex_m3/ac5/inc/gx_port.h | 2 +- ports/cortex_m3/gnu/inc/gx_port.h | 2 +- ports/cortex_m3/iar/inc/gx_port.h | 2 +- ports/cortex_m3/keil/inc/gx_port.h | 2 +- ports/cortex_m4/ac5/inc/gx_port.h | 2 +- ports/cortex_m4/gnu/inc/gx_port.h | 2 +- ports/cortex_m4/iar/inc/gx_port.h | 2 +- ports/cortex_m4/keil/inc/gx_port.h | 2 +- ports/cortex_m7/ac5/inc/gx_port.h | 2 +- ports/cortex_m7/gnu/inc/gx_port.h | 2 +- ports/cortex_m7/iar/inc/gx_port.h | 2 +- ports/cortex_r4/ac5/inc/gx_port.h | 2 +- ports/cortex_r4/ac6/inc/gx_port.h | 2 +- ports/cortex_r4/gnu/inc/gx_port.h | 2 +- ports/cortex_r4/iar/inc/gx_port.h | 2 +- ports/cortex_r5/ac5/inc/gx_port.h | 2 +- ports/cortex_r5/gnu/inc/gx_port.h | 2 +- ports/cortex_r5/iar/inc/gx_port.h | 2 +- ports/generic/inc/gx_port.h | 2 +- ports/linux/gnu/inc/gx_port.h | 2 +- ports/win32/inc/gx_port.h | 2 +- ports/win32/vs_2019_standalone/inc/gx_port.h | 2 +- 46 files changed, 46 insertions(+), 46 deletions(-) diff --git a/ports/arc_em/metaware/inc/gx_port.h b/ports/arc_em/metaware/inc/gx_port.h index 2aacdca3..804c33b2 100644 --- a/ports/arc_em/metaware/inc/gx_port.h +++ b/ports/arc_em/metaware/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX ARCv2_EM/MetaWare Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX ARCv2_EM/MetaWare Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/arc_hs/metaware/inc/gx_port.h b/ports/arc_hs/metaware/inc/gx_port.h index fd7b9538..23c7b23b 100644 --- a/ports/arc_hs/metaware/inc/gx_port.h +++ b/ports/arc_hs/metaware/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX ARC_HS/MetaWare Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX ARC_HS/MetaWare Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/arm9/ac5/inc/gx_port.h b/ports/arm9/ac5/inc/gx_port.h index 19d1f61f..b2d7e655 100644 --- a/ports/arm9/ac5/inc/gx_port.h +++ b/ports/arm9/ac5/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX ARM9/AC5 Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX ARM9/AC5 Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/arm9/gnu/inc/gx_port.h b/ports/arm9/gnu/inc/gx_port.h index b629c2e3..d4bf7b01 100644 --- a/ports/arm9/gnu/inc/gx_port.h +++ b/ports/arm9/gnu/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX ARM9/GNU Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX ARM9/GNU Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/arm9/iar/inc/gx_port.h b/ports/arm9/iar/inc/gx_port.h index 8901da22..5887bb62 100644 --- a/ports/arm9/iar/inc/gx_port.h +++ b/ports/arm9/iar/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX ARM9/IAR Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX ARM9/IAR Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/c667x/ccs/inc/gx_port.h b/ports/c667x/ccs/inc/gx_port.h index 667c62a5..3136e0f8 100644 --- a/ports/c667x/ccs/inc/gx_port.h +++ b/ports/c667x/ccs/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX C6xxx/TI Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX C6xxx/TI Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/ccrx/inc/gx_port.h b/ports/ccrx/inc/gx_port.h index 0df99a17..753c74b4 100644 --- a/ports/ccrx/inc/gx_port.h +++ b/ports/ccrx/inc/gx_port.h @@ -140,7 +140,7 @@ typedef unsigned char GX_UCHAR; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a15/gnu/inc/gx_port.h b/ports/cortex_a15/gnu/inc/gx_port.h index 99d01553..7dbceb17 100644 --- a/ports/cortex_a15/gnu/inc/gx_port.h +++ b/ports/cortex_a15/gnu/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-A15/GNU Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-A15/GNU Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a5/ac5/inc/gx_port.h b/ports/cortex_a5/ac5/inc/gx_port.h index fb97572c..a30e5322 100644 --- a/ports/cortex_a5/ac5/inc/gx_port.h +++ b/ports/cortex_a5/ac5/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-A5/AC5 Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-A5/AC5 Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a5/gnu/inc/gx_port.h b/ports/cortex_a5/gnu/inc/gx_port.h index 9df7c2de..4c580f74 100644 --- a/ports/cortex_a5/gnu/inc/gx_port.h +++ b/ports/cortex_a5/gnu/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-A5/GNU Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-A5/GNU Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a5/iar/inc/gx_port.h b/ports/cortex_a5/iar/inc/gx_port.h index 09402b16..23141e07 100644 --- a/ports/cortex_a5/iar/inc/gx_port.h +++ b/ports/cortex_a5/iar/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-A5/IAR Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-A5/IAR Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a5x/ac6/inc/gx_port.h b/ports/cortex_a5x/ac6/inc/gx_port.h index a9575c0c..0875155a 100644 --- a/ports/cortex_a5x/ac6/inc/gx_port.h +++ b/ports/cortex_a5x/ac6/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-A5x/AC6 Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-A5x/AC6 Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a7/ac5/inc/gx_port.h b/ports/cortex_a7/ac5/inc/gx_port.h index 3f66626c..5683ae08 100644 --- a/ports/cortex_a7/ac5/inc/gx_port.h +++ b/ports/cortex_a7/ac5/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-A7/AC5 Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-A7/AC5 Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a7/gnu/inc/gx_port.h b/ports/cortex_a7/gnu/inc/gx_port.h index 41cb5a52..d84b619b 100644 --- a/ports/cortex_a7/gnu/inc/gx_port.h +++ b/ports/cortex_a7/gnu/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-A7/GNU Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-A7/GNU Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a7/iar/inc/gx_port.h b/ports/cortex_a7/iar/inc/gx_port.h index 467f28a3..a03d0abc 100644 --- a/ports/cortex_a7/iar/inc/gx_port.h +++ b/ports/cortex_a7/iar/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-A7/IAR Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-A7/IAR Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a8/ac5/inc/gx_port.h b/ports/cortex_a8/ac5/inc/gx_port.h index 9524c8c1..5b8ce092 100644 --- a/ports/cortex_a8/ac5/inc/gx_port.h +++ b/ports/cortex_a8/ac5/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-A8/AC5 Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-A8/AC5 Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a8/gnu/inc/gx_port.h b/ports/cortex_a8/gnu/inc/gx_port.h index 60f4e9b5..cbe78baa 100644 --- a/ports/cortex_a8/gnu/inc/gx_port.h +++ b/ports/cortex_a8/gnu/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-A8/GNU Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-A8/GNU Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a8/iar/inc/gx_port.h b/ports/cortex_a8/iar/inc/gx_port.h index 2475b28f..3e9275bc 100644 --- a/ports/cortex_a8/iar/inc/gx_port.h +++ b/ports/cortex_a8/iar/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-A8/IAR Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-A8/IAR Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a9/ac5/inc/gx_port.h b/ports/cortex_a9/ac5/inc/gx_port.h index 02e0da3e..d4d03a1a 100644 --- a/ports/cortex_a9/ac5/inc/gx_port.h +++ b/ports/cortex_a9/ac5/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-A9/AC5 Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-A9/AC5 Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a9/gnu/inc/gx_port.h b/ports/cortex_a9/gnu/inc/gx_port.h index 049a710e..842b1dcd 100644 --- a/ports/cortex_a9/gnu/inc/gx_port.h +++ b/ports/cortex_a9/gnu/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-A9/GNU Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-A9/GNU Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_a9/iar/inc/gx_port.h b/ports/cortex_a9/iar/inc/gx_port.h index 541ca90a..a722c6f7 100644 --- a/ports/cortex_a9/iar/inc/gx_port.h +++ b/ports/cortex_a9/iar/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-A9/IAR Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-A9/IAR Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m0/ac5/inc/gx_port.h b/ports/cortex_m0/ac5/inc/gx_port.h index 5327926f..1cc1be91 100644 --- a/ports/cortex_m0/ac5/inc/gx_port.h +++ b/ports/cortex_m0/ac5/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-M0/AC5 Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-M0/AC5 Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m0/gnu/inc/gx_port.h b/ports/cortex_m0/gnu/inc/gx_port.h index 041b6d74..e7e7dc2e 100644 --- a/ports/cortex_m0/gnu/inc/gx_port.h +++ b/ports/cortex_m0/gnu/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-M0/GNU Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-M0/GNU Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m0/iar/inc/gx_port.h b/ports/cortex_m0/iar/inc/gx_port.h index b279011f..65d96ebc 100644 --- a/ports/cortex_m0/iar/inc/gx_port.h +++ b/ports/cortex_m0/iar/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-M0/IAR Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-M0/IAR Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m3/ac5/inc/gx_port.h b/ports/cortex_m3/ac5/inc/gx_port.h index 69783ef1..dbcdf58b 100644 --- a/ports/cortex_m3/ac5/inc/gx_port.h +++ b/ports/cortex_m3/ac5/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-M3/AC5 Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-M3/AC5 Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m3/gnu/inc/gx_port.h b/ports/cortex_m3/gnu/inc/gx_port.h index d72f6a51..25cd7fc5 100644 --- a/ports/cortex_m3/gnu/inc/gx_port.h +++ b/ports/cortex_m3/gnu/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-M3/GNU Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-M3/GNU Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m3/iar/inc/gx_port.h b/ports/cortex_m3/iar/inc/gx_port.h index 66de3767..96c29015 100644 --- a/ports/cortex_m3/iar/inc/gx_port.h +++ b/ports/cortex_m3/iar/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-M3/IAR Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-M3/IAR Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m3/keil/inc/gx_port.h b/ports/cortex_m3/keil/inc/gx_port.h index 1562105d..ff179c64 100644 --- a/ports/cortex_m3/keil/inc/gx_port.h +++ b/ports/cortex_m3/keil/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-M3/KEIL Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-M3/KEIL Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m4/ac5/inc/gx_port.h b/ports/cortex_m4/ac5/inc/gx_port.h index 8f91e3f6..7f885bdb 100644 --- a/ports/cortex_m4/ac5/inc/gx_port.h +++ b/ports/cortex_m4/ac5/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-M4/AC5 Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-M4/AC5 Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m4/gnu/inc/gx_port.h b/ports/cortex_m4/gnu/inc/gx_port.h index 13863100..7134a45e 100644 --- a/ports/cortex_m4/gnu/inc/gx_port.h +++ b/ports/cortex_m4/gnu/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-M4/GNU Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-M4/GNU Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m4/iar/inc/gx_port.h b/ports/cortex_m4/iar/inc/gx_port.h index 0642e8cb..ac1e37f0 100644 --- a/ports/cortex_m4/iar/inc/gx_port.h +++ b/ports/cortex_m4/iar/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-M4/IAR Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-M4/IAR Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m4/keil/inc/gx_port.h b/ports/cortex_m4/keil/inc/gx_port.h index afa24b49..b228d496 100644 --- a/ports/cortex_m4/keil/inc/gx_port.h +++ b/ports/cortex_m4/keil/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-M4/KEIL Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-M4/KEIL Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m7/ac5/inc/gx_port.h b/ports/cortex_m7/ac5/inc/gx_port.h index e03f432a..c3876445 100644 --- a/ports/cortex_m7/ac5/inc/gx_port.h +++ b/ports/cortex_m7/ac5/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-M7/AC5 Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-M7/AC5 Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m7/gnu/inc/gx_port.h b/ports/cortex_m7/gnu/inc/gx_port.h index 3f400555..bccfa7c1 100644 --- a/ports/cortex_m7/gnu/inc/gx_port.h +++ b/ports/cortex_m7/gnu/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-M7/GNU Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-M7/GNU Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_m7/iar/inc/gx_port.h b/ports/cortex_m7/iar/inc/gx_port.h index e0443cb2..ee4ba115 100644 --- a/ports/cortex_m7/iar/inc/gx_port.h +++ b/ports/cortex_m7/iar/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-M7/IAR Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-M7/IAR Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_r4/ac5/inc/gx_port.h b/ports/cortex_r4/ac5/inc/gx_port.h index b266b681..ade9e046 100644 --- a/ports/cortex_r4/ac5/inc/gx_port.h +++ b/ports/cortex_r4/ac5/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-R4/AC5 Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-R4/AC5 Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_r4/ac6/inc/gx_port.h b/ports/cortex_r4/ac6/inc/gx_port.h index 463941f3..a71ccc31 100644 --- a/ports/cortex_r4/ac6/inc/gx_port.h +++ b/ports/cortex_r4/ac6/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-R4/AC6 Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-R4/AC6 Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_r4/gnu/inc/gx_port.h b/ports/cortex_r4/gnu/inc/gx_port.h index 8f9d5cad..b857bb98 100644 --- a/ports/cortex_r4/gnu/inc/gx_port.h +++ b/ports/cortex_r4/gnu/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-R4/GNU Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-R4/GNU Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_r4/iar/inc/gx_port.h b/ports/cortex_r4/iar/inc/gx_port.h index a427f933..c91acd69 100644 --- a/ports/cortex_r4/iar/inc/gx_port.h +++ b/ports/cortex_r4/iar/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-R4/IAR Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-R4/IAR Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_r5/ac5/inc/gx_port.h b/ports/cortex_r5/ac5/inc/gx_port.h index 40f2b764..c69748eb 100644 --- a/ports/cortex_r5/ac5/inc/gx_port.h +++ b/ports/cortex_r5/ac5/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-R5/AC5 Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-R5/AC5 Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_r5/gnu/inc/gx_port.h b/ports/cortex_r5/gnu/inc/gx_port.h index 57f287aa..9066d95f 100644 --- a/ports/cortex_r5/gnu/inc/gx_port.h +++ b/ports/cortex_r5/gnu/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-R5/GNU Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-R5/GNU Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/cortex_r5/iar/inc/gx_port.h b/ports/cortex_r5/iar/inc/gx_port.h index e6154b18..87231b57 100644 --- a/ports/cortex_r5/iar/inc/gx_port.h +++ b/ports/cortex_r5/iar/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Cortex-R5/IAR Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Cortex-R5/IAR Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/generic/inc/gx_port.h b/ports/generic/inc/gx_port.h index 1aa1674a..58679201 100644 --- a/ports/generic/inc/gx_port.h +++ b/ports/generic/inc/gx_port.h @@ -132,7 +132,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/linux/gnu/inc/gx_port.h b/ports/linux/gnu/inc/gx_port.h index c56aaa3a..d6f6e709 100644 --- a/ports/linux/gnu/inc/gx_port.h +++ b/ports/linux/gnu/inc/gx_port.h @@ -127,7 +127,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Linux/GNU Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Linux/GNU Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/win32/inc/gx_port.h b/ports/win32/inc/gx_port.h index 7d58359b..2c4ad3ef 100644 --- a/ports/win32/inc/gx_port.h +++ b/ports/win32/inc/gx_port.h @@ -147,7 +147,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Win32/Visual Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Win32/Visual Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif diff --git a/ports/win32/vs_2019_standalone/inc/gx_port.h b/ports/win32/vs_2019_standalone/inc/gx_port.h index f927edb4..db81a877 100644 --- a/ports/win32/vs_2019_standalone/inc/gx_port.h +++ b/ports/win32/vs_2019_standalone/inc/gx_port.h @@ -90,7 +90,7 @@ typedef SHORT GX_VALUE; #ifdef GX_SYSTEM_INIT CHAR _gx_version_id[] = - "Copyright (c) 2024 Microsoft Corporation. * GUIX Win32/Standalone/Visual Version 6.4.1 *"; + "(c) 2024 Microsoft Corp. (c) 2026-present Eclipse ThreadX Contributors. * GUIX Win32/Standalone/Visual Version 6.5.0.202601 *"; #else extern CHAR _gx_version_id[]; #endif From b0d9ea37b058d72b5224ef2ca9eb08ea4cb67806 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Desbiens?= Date: Fri, 6 Mar 2026 12:56:48 +0100 Subject: [PATCH 10/10] Updated version number constants --- common/inc/gx_api.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/inc/gx_api.h b/common/inc/gx_api.h index e168707a..fb0b99dc 100644 --- a/common/inc/gx_api.h +++ b/common/inc/gx_api.h @@ -58,9 +58,9 @@ extern "C" { #define AZURE_RTOS_GUIX #define GUIX_MAJOR_VERSION 6 -#define GUIX_MINOR_VERSION 4 -#define GUIX_PATCH_VERSION 5 -#define GUIX_BUILD_VERSION 202504 +#define GUIX_MINOR_VERSION 5 +#define GUIX_PATCH_VERSION 0 +#define GUIX_BUILD_VERSION 202601 #define GUIX_HOTFIX_VERSION ' ' /* The following symbols are defined for backward compatibility reasons.*/