mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-19 20:38:08 +01:00
Created Documentation, Examples and Tests subdirectories. Run update-autoconf after this update.
16 lines
212 B
C
16 lines
212 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);
|
|
|