diff options
| author | Tomas Chvatal (scarabeus) <tomas.chvatal@gmail.com> | 2008-10-23 00:09:21 +0200 |
|---|---|---|
| committer | Tomas Chvatal (scarabeus) <tomas.chvatal@gmail.com> | 2008-10-23 00:09:21 +0200 |
| commit | 6a0565944376426ded71849df09527da077dfc94 (patch) | |
| tree | 2f9e1f664febc298b61626a613366330dfe0bd6e /src/widget/widget.h | |
| parent | 130d45bfc935da1702a7b5c246a099ea3b4a0bdf (diff) | |
Ups forget to fix header files.
Diffstat (limited to 'src/widget/widget.h')
| -rw-r--r-- | src/widget/widget.h | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/src/widget/widget.h b/src/widget/widget.h index 0fcb86c..05fce33 100644 --- a/src/widget/widget.h +++ b/src/widget/widget.h @@ -17,17 +17,18 @@ typedef struct widget_struct { - int type; - int x, y; - int w, h; - void *private_data; + int type; + int x, y; + int w, h; + void *private_data; } widget_t; -extern widget_t* newWidget(int type, int x, int y, int w, int h, void *private_data); -extern void widgetSetLocation(widget_t *p, int x, int y); -extern void widgetGetLocation(widget_t *p, int *x, int *y); -extern void widgetSetSize(widget_t *p, int w, int h); -extern void widgetGetSize(widget_t *p, int *w, int *h); -extern void destroyWidget(widget_t *p); +extern widget_t *newWidget(int type, int x, int y, int w, int h, + void *private_data); +extern void widgetSetLocation(widget_t * p, int x, int y); +extern void widgetGetLocation(widget_t * p, int *x, int *y); +extern void widgetSetSize(widget_t * p, int w, int h); +extern void widgetGetSize(widget_t * p, int *w, int *h); +extern void destroyWidget(widget_t * p); #endif |