mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-19 12:28:22 +01:00
16 lines
211 B
C
16 lines
211 B
C
|
|
/*
|
|
* Header for demo widget.
|
|
*
|
|
*/
|
|
|
|
typedef struct W_MyWidget MyWidget;
|
|
|
|
|
|
MyWidget *CreateMyWidget(WMWidget *parent);
|
|
|
|
void SetMyWidgetText(MyWidget *mPtr, char *text);
|
|
|
|
W_Class InitMyWidget(WMScreen *scr);
|
|
|