home *** CD-ROM | disk | FTP | other *** search
- /*
- ** SmartWIN
- **
- ** © 1996 by Timo C. Nentwig
- ** All Rights Reserved !
- **
- ** Tcn@oxygen.in-berlin.de
- **
- */
-
- /// #include
-
- // System includes
-
- #include <dos/dos.h>
-
- #include <exec/types.h>
- #include <exec/memory.h>
-
- #include <libraries/commodities.h>
-
- #include <utility/tagitem.h>
-
- #include <tcn/macros.h>
- #include <tcn/register.h>
-
- #include <proto/commodities.h>
- #include <proto/dos.h>
- #include <proto/exec.h>
- #include <proto/icon.h>
- #include <proto/intuition.h>
- #include <proto/utility.h>
-
- // ANSI-C includes
-
- #include <stdlib.h>
- #include <string.h>
-
- ///
- /// #define
-
- // Constants
-
- #define PRG_AUTHOR "Timo C. Nentwig"
- #define PRG_TITLE "SmartWIN"
- #define PRG_VERSION "3.0"
- #define PRG_EMAIL "Tcn@oxygen.in-berlin.de"
- #define PRG_YEAR "1996"
- #define PRG_SHORT "Always SmartRefreshed windows"
-
- ///
-
- /// struct Settings
-
- struct Settings
- {
-
- struct
- {
-
- LONG Priority;
-
- } Cx;
-
- BOOL WBOnly;
-
- };
-
- ///
-
- // System libraries
-
- extern struct Library *CxBase;
- extern struct Library *IconBase;
- extern struct IntuitionBase *IntuitionBase;
- extern struct Library *UtilityBase;
-
- // Settings structure
-
- extern struct Settings *Set;
-
- // Commodity specifics
-
- extern struct MsgPort *CxPort;
- extern CxObj *Broker;
-
-