• Source
    1. /**
    2.   ******************************************************************************
    3.   * @file Form.h
    4.   * @author Neil Lab :: Left Radio
    5.   * @version v1.0.0
    6.   * @date 2015-12-06 03:02:46.443406
    7.   * @brief
    8.   ******************************************************************************
    9. **/
    10.  
    11. /* Define to prevent recursive inclusion -------------------------------------*/
    12. #ifndef __FORM_GREEDS_H
    13. #define __FORM_GREEDS_H
    14.  
    15. /* Includes ------------------------------------------------------------------*/
    16. #include "NGL.h"
    17.  
    18. /* Exported define -----------------------------------------------------------*/
    19. #define FORM_GREEDS_CNT 1
    20.  
    21. /* Exported macro ------------------------------------------------------------*/
    22.  
    23. /* Exported typedef ----------------------------------------------------------*/
    24.  
    25. /* Exported function ---------------------------------------------------------*/
    26.  
    27. /* Internal variables --------------------------------------------------------*/
    28.  
    29. /* Exported variables --------------------------------------------------------*/
    30. /* Form nglGreed item */
    31. NGL_Greed nglGreed = {
    32. 110,
    33. 80,
    34. 150,
    35. 150,
    36. ENABLE,
    37. 0xf800,
    38. 15,
    39. 15,
    40. 0x4208
    41. };
    42.  
    43.  
    44. static const NGL_Greed* form_greeds[FORM_GREEDS_CNT] = {&nglGreed, };
    45.  
    46.  
    47.  
    48. #endif /* __FORM_GREEDS_H */
    49. /*******************************************************************************
    50.   END FILE
    51. *******************************************************************************/