aboutsummaryrefslogtreecommitdiff
path: root/engines/lab/labfun.h
diff options
context:
space:
mode:
authorEugene Sandulenko2014-12-26 00:32:42 +0100
committerEugene Sandulenko2015-12-15 00:05:02 +0100
commit58182bd77af8433e00b7b7475633bd1d6ddf13b0 (patch)
treeb24be1aa3a002e62a6c0acd1926774ae6d6a1a42 /engines/lab/labfun.h
parentfefb78457e8828c64aedb0d6aa9e595d342c0416 (diff)
downloadscummvm-rg350-58182bd77af8433e00b7b7475633bd1d6ddf13b0.tar.gz
scummvm-rg350-58182bd77af8433e00b7b7475633bd1d6ddf13b0.tar.bz2
scummvm-rg350-58182bd77af8433e00b7b7475633bd1d6ddf13b0.zip
LAB: Cleanup
Diffstat (limited to 'engines/lab/labfun.h')
-rw-r--r--engines/lab/labfun.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/lab/labfun.h b/engines/lab/labfun.h
index abb0871669..6f304d0f9b 100644
--- a/engines/lab/labfun.h
+++ b/engines/lab/labfun.h
@@ -52,6 +52,7 @@ typedef struct {
struct Image;
struct TextFont;
+struct Gadget;
/*----------------------------*/
/*------ From Audioi.c -------*/
@@ -101,7 +102,7 @@ uint32 flowText(void *font, /* the TextAttr pointer */
uint16 x1, /* Cords */
uint16 y1, uint16 x2, uint16 y2, const char *text); /* The text itself */
-uint32 flowTextToMem(struct Image *DestIm, void *font, /* the TextAttr pointer */
+uint32 flowTextToMem(Image *DestIm, void *font, /* the TextAttr pointer */
uint16 spacing, /* How much vertical spacing between the lines */
uint16 pencolor, /* pen number to use for text */
uint16 backpen, /* the background color */
@@ -136,7 +137,7 @@ void flipViews(void *scrPtr);
/*----- From Interface.c -----*/
/*----------------------------*/
-struct Gadget *addGadButton(uint16 x, uint16 y, void *UpImage, void *DownImage, uint16 id);
+Gadget *addGadButton(uint16 x, uint16 y, void *UpImage, void *DownImage, uint16 id);
void gadgetsOnOff(void *gptr, void *win, int32 num, bool on);