home *** CD-ROM | disk | FTP | other *** search
-
- #include <intuition/intuition.h>
-
- #define TASKPRIO -2
-
- #define GUIGFX_VERSION 8
-
- #define DEFAULT_WINTITLE PROGNAME __VERSION__
-
- #define DEFAULT_MINWIDTH 100
- #define DEFAULT_MINHEIGHT 100
- #define DEFAULT_MAXWIDTH -1
- #define DEFAULT_MAXHEIGHT -1
-
- #define HISTOGRAMTYPE HSTYPE_12BIT_TURBO
-
-
- /*********************************************************************
- ----------------------------------------------------------------------
-
- structures
-
- ----------------------------------------------------------------------
- *********************************************************************/
-
- struct mvwindow
- {
- struct Screen *screen;
- struct Window *window;
-
- struct MsgPort *appmsgport;
- struct AppWindow *appwindow;
- ULONG appSignal;
- ULONG idcmpSignal;
-
- UWORD winleft, wintop;
- UWORD winwidth, winheight;
- UWORD innerwidth, innerheight;
- UWORD innerleft, innertop;
-
- WORD otherwinpos[4]; /* alternate window position x,y,w,h */
-
- };
-
-