home *** CD-ROM | disk | FTP | other *** search
- /****************************************************************************
- *
- * Screen - Screen configurator (almost useless example of LoadRequest use)
- *
- * By Kevin Lee Clague
- * 408 Tortolla Way
- * San Jose, Ca 95033
- * 408-258-9891 work 408-737-5481
- *
- * Copyright (C) 1986. All rights reserved.
- *
- * This program is freely distributable as long as this copyright notice
- * is retained. It intended for personal, non-commercial use.
- *
- ***************************************************************************/
-
- #include <exec/types.h>
- #include <exec/tasks.h>
- #include <exec/libraries.h>
- #include <exec/devices.h>
- #include <exec/memory.h>
- #include <devices/keymap.h>
- #include <graphics/copper.h>
- #include <graphics/display.h>
- #include <graphics/gfxbase.h>
- #include <graphics/text.h>
- #include <graphics/view.h>
- #include <graphics/gels.h>
- #include <graphics/regions.h>
- #include <hardware/blit.h>
- #include <intuition/intuition.h>
- #include <intuition/intuitionbase.h>
- #include <stdio.h>
-
- #include <libraries/dos.h>
-
- #include <workbench/workbench.h>
-
-
- /* Menu Project's, Items */
- #define LOADITEM 0
- #define SAVEITEM 1
- #define USEITEM 2
- #define QUITITEM 3
-
- /* Menu: Edit, Item: ViewMode's, SubItems */
- #define HIRESSUB 0
- #define INTERLACESUB 1
- #define SPRITESSUB 2
- #define DUALPFSUB 3
- #define HAMSUB 4
-
- /* Menu: Edit, Item: Depth's, SubItems */
- #define BITPLANE1SUB 0
- #define BITPLANES2SUB 1
- #define BITPLANES3SUB 2
- #define BITPLANES4SUB 3
- #define BITPLANES5SUB 4
- #define BITPLANES6SUB 5
-
- /* Menu Edit's, Items */
- #define DEPTHITEM 0
- #define VIEWMODEITEM 1
-
- /* Menu Entries */
- #define PROJECTMENU 0
- #define EDITMENU 1
-
- #define TOGGLED11 0x0200
-