1 /**************************************************************************/ 2 /* */ 3 /* Copyright (c) Microsoft Corporation. All rights reserved. */ 4 /* */ 5 /* This software is licensed under the Microsoft Software License */ 6 /* Terms for Microsoft Azure RTOS. Full text of the license can be */ 7 /* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ 8 /* and in the root directory of this software. */ 9 /* */ 10 /**************************************************************************/ 11 12 13 /**************************************************************************/ 14 /**************************************************************************/ 15 /** */ 16 /** GUIX Component */ 17 /** */ 18 /** User optional settings */ 19 /** */ 20 /**************************************************************************/ 21 /**************************************************************************/ 22 /**************************************************************************/ 23 /* */ 24 /* APPLICATION INTERFACE DEFINITION RELEASE */ 25 /* */ 26 /* gx_user.h PORTABLE C */ 27 /* 6.1.10 */ 28 /* AUTHOR */ 29 /* */ 30 /* Kenneth Maxwell, Microsoft Corporation */ 31 /* */ 32 /* DESCRIPTION */ 33 /* */ 34 /* This file contains optional settings. You can enable and disable */ 35 /* GUIX features by commenting out or including the definitions below */ 36 /* to the implementation of high-performance GUIX UI framework. */ 37 /* */ 38 /* RELEASE HISTORY */ 39 /* */ 40 /* DATE NAME DESCRIPTION */ 41 /* */ 42 /* 05-19-2020 Kenneth Maxwell Initial Version 6.0 */ 43 /* 09-30-2020 Kenneth Maxwell Modified comment(s), */ 44 /* resulting in version 6.1 */ 45 /* 01-31-2022 Kenneth Maxwell Modified comment(s), */ 46 /* fixed typo, */ 47 /* resulting in version 6.1.10 */ 48 /* */ 49 /**************************************************************************/ 50 51 #ifndef GX_USER_H 52 #define GX_USER_H 53 54 /* Should GUIX support multiple threads using the GUIX API simultaneously 55 If your application is organized such that only one thread utilizes the 56 GUI API services, comment out the definition below to reduce system 57 overhead. 58 */ 59 /* #define GX_DISABLE_MULTITHREAD_SUPPORT */ 60 61 /* Defined, GUIX disables UTF8 support. */ 62 /* #define GX_DISABLE_UTF8_SUPPORT */ 63 64 /* By default GUIX System Timer runs at 20ms. Modify the value below to 65 change GUIX System Timer value. */ 66 /* #define GX_SYSTEM_TIMER_MS 20 */ 67 68 /* This can be defined to insert an application specific data 69 field into the GX_WIDGET control block */ 70 /* #define GX_WIDGET_USER_DATA */ 71 #endif 72 73