1998-09-29 22:36:29 +00:00
|
|
|
|
|
|
|
|
/*
|
1999-03-19 22:07:19 +00:00
|
|
|
* Header for demo widget.
|
2004-10-12 21:28:27 +00:00
|
|
|
*
|
1998-09-29 22:36:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
typedef struct W_MyWidget MyWidget;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
MyWidget *CreateMyWidget(WMWidget *parent);
|
|
|
|
|
|
|
|
|
|
void SetMyWidgetText(MyWidget *mPtr, char *text);
|
|
|
|
|
|
|
|
|
|
W_Class InitMyWidget(WMScreen *scr);
|
|
|
|
|
|