|
RKH
|
Specifies the macros to identify file modules. More...

Go to the source code of this file.
Macros | |
| #define | RKH_MODULE_VERSION(__fname, __version) static RKHROM char *const m_version = # __version; |
| This macro appears at the top of each C/C++ source file defining the version string for that file (module). | |
| #define | RKH_MODULE_GET_VERSION() ((const char *)m_version); |
| Get the module version. | |
| #define | RKH_MODULE_DESC(__fname, __desc) static RKHROM char *const m_desc = __desc; |
| This macro appears at the top of each C/C++ source file defining the description string for that file (module). | |
| #define | RKH_MODULE_GET_DESC() ((const char *)m_desc) |
| Get the module description. | |
Specifies the macros to identify file modules.
Definition in file rkhfwk_module.h.
| #define RKH_MODULE_VERSION | ( | __fname, | |
| __version | |||
| ) | static RKHROM char *const m_version = # __version; |
This macro appears at the top of each C/C++ source file defining the version string for that file (module).
| [in] | __fname | file (module) name. |
| [in] | __version | file (module) version. |
Definition at line 73 of file rkhfwk_module.h.
| #define RKH_MODULE_DESC | ( | __fname, | |
| __desc | |||
| ) | static RKHROM char *const m_desc = __desc; |
This macro appears at the top of each C/C++ source file defining the description string for that file (module).
| [in] | __fname | file (module) name. |
| [in] | __desc | file (module) description. |
Definition at line 91 of file rkhfwk_module.h.