MiniGUI API Reference (MiniGUI-Standalone)  v3.2.0
A mature and proven cross-platform GUI system for embedded and smart IoT devices
Macros

Macros

#define _VERSION_CODE(major, minor, micro)   (((major)<<16) | ((minor)<<8) | (micro))
 A macro that returns the version code from major, minor and micro version number. More...
 
#define _MINIGUI_VERSION_CODE   ((MINIGUI_MAJOR_VERSION << 16) | (MINIGUI_MINOR_VERSION << 8) | MINIGUI_MICRO_VERSION)
 Version code of MiniGUI. More...
 

Detailed Description

Macro Definition Documentation

#define _MINIGUI_VERSION_CODE   ((MINIGUI_MAJOR_VERSION << 16) | (MINIGUI_MINOR_VERSION << 8) | MINIGUI_MICRO_VERSION)

Version code of MiniGUI.

See also
_VERSION_CODE

Definition at line 128 of file common.h.

#define _VERSION_CODE (   major,
  minor,
  micro 
)    (((major)<<16) | ((minor)<<8) | (micro))

A macro that returns the version code from major, minor and micro version number.

MiniGUI uses this macro to evaluate the version code of current MiniGUI library installed in your system, and define it to _MINIGUI_VERSION_CODE.

See also
_MINIGUI_VERSION_CODE

Definition at line 120 of file common.h.