home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Magazin: Amiga-CD 2000 April & May
/
AMIGA_2000_04.iso
/
patches
/
guigfxlib
/
guigfxlib.lha..lha
/
GuiGFXLib
/
examples
/
ShadeBobs
/
source
/
misc.h
next >
Wrap
C/C++ Source or Header
|
1998-01-01
|
947b
|
45 lines
#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 */
};