1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef MC__WIDGET_CHECK_H
- #define MC__WIDGET_CHECK_H
- #define CHECK(x) ((WCheck *)(x))
- #define C_BOOL 0x0001
- #define C_CHANGE 0x0002
- typedef struct WCheck
- {
- Widget widget;
- unsigned int state;
- hotkey_t text;
- } WCheck;
- WCheck *check_new (int y, int x, int state, const char *text);
- #endif
|