checkbox c++ fix
This commit is contained in:
parent
5c13e08e76
commit
bd68d6a00a
1 changed files with 8 additions and 0 deletions
|
@ -48,6 +48,10 @@ typedef struct GCheckboxObject {
|
||||||
#endif
|
#endif
|
||||||
} GCheckboxObject;
|
} GCheckboxObject;
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Create a checkbox window.
|
* @brief Create a checkbox window.
|
||||||
* @return NULL if there is no resultant drawing area, otherwise a window handle.
|
* @return NULL if there is no resultant drawing area, otherwise a window handle.
|
||||||
|
@ -111,6 +115,10 @@ void gwinCheckboxDraw_CheckOnLeft(GWidgetObject *gw, void *param);
|
||||||
void gwinCheckboxDraw_CheckOnRight(GWidgetObject *gw, void *param);
|
void gwinCheckboxDraw_CheckOnRight(GWidgetObject *gw, void *param);
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* _GWIN_CHECKBOX_H */
|
#endif /* _GWIN_CHECKBOX_H */
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue