diff options
Diffstat (limited to 'include/gwin/gwin.h')
-rw-r--r-- | include/gwin/gwin.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/gwin/gwin.h b/include/gwin/gwin.h index 37c2a4e8..a2c0d0a1 100644 --- a/include/gwin/gwin.h +++ b/include/gwin/gwin.h @@ -114,6 +114,8 @@ extern "C" { /** * @brief Get the default foreground color for all new GWIN windows * + * @return The current default color for all new GWIN windows + * * @api */ color_t gwinGetDefaultColor(void); @@ -130,6 +132,8 @@ extern "C" { /** * @brief Get the default background color for all new GWIN windows * + * @return The current default background color for all new GWIN windows + * * @api */ color_t gwinGetDefaultBgColor(void); @@ -191,9 +195,11 @@ extern "C" { * * @param[in] gh The window * + * @return A string describing the object class. + * * @api */ - const char *gwinGetClassName(GHandle gh); + const char* gwinGetClassName(GHandle gh); /** * @brief Get an ID that uniquely describes the class of the GHandle |