~profzoom/ubuntu/quantal/wmaker/bug-1079925

« back to all changes in this revision

Viewing changes to WINGs/Tests/mywidget.h

  • Committer: Bazaar Package Importer
  • Author(s): Marcelo E. Magallon
  • Date: 2004-11-10 14:05:30 UTC
  • Revision ID: james.westby@ubuntu.com-20041110140530-qpd66b5lm38x7apk
Tags: upstream-0.91.0
ImportĀ upstreamĀ versionĀ 0.91.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
/*
 
3
 * Header for demo widget.
 
4
 *
 
5
 */
 
6
 
 
7
typedef struct W_MyWidget MyWidget;
 
8
 
 
9
 
 
10
MyWidget *CreateMyWidget(WMWidget *parent);
 
11
 
 
12
void SetMyWidgetText(MyWidget *mPtr, char *text);
 
13
 
 
14
W_Class InitMyWidget(WMScreen *scr);
 
15