home *** CD-ROM | disk | FTP | other *** search
- #ifndef SRC_OOPEXAMPLE_OOPEXAMPLE_H
- #define SRC_OOPEXAMPLE_OOPEXAMPLE_H
-
-
-
- /***** IMPORTANT NOTE ****** IMPORTANT NOTE ****** IMPORTANT NOTE ******
-
-
- This source code uses the tag base TAGBASE_BLIZZY, which is defined as
- (TAG_USER | (1465UL << 16)).
-
- PLEASE *DO* *NOT* *USE* THIS TAG BASE IN YOUR OWN APPLICATIONS!!!!!!!!!!!!
- It is a personalized tag base!!!!!!!!!!
-
- If you need such a tag base for creating attributes and methods identifiers,
- you *MUST* write to mccreg@sasg.com and ask for a new tag base for you!!!!!
-
- This is really important!!!
-
-
- ****** IMPORTANT NOTE ****** IMPORTANT NOTE ****** IMPORTANT NOTE *****/
-
-
-
- /* copied from <blizzy/constants.h> */
- #include <utility/tagitem.h>
-
- #ifndef TAGBASE_BLIZZY
- #define TAGBASE_BLIZZY (TAG_USER | (1465UL << 16))
- #endif
-
-
- /* copied from <blizzy/macros.h> */
- #include <exec/types.h>
-
- #ifndef REG
- #ifdef _DCC
- #define REG(x) __ ## x
- #else
- #define REG(x) register __ ## x
- #endif
- #endif
-
- #ifndef ASM
- #if defined __MAXON__ || defined __STORM__ || defined _DCC
- #define ASM
- #else
- #define ASM __asm
- #endif
- #endif
-
- #ifndef SAVEDS
- #ifdef __MAXON__
- #define SAVEDS
- #endif
- #if defined __STORM__ || defined __SASC
- #define SAVEDS __saveds
- #endif
- #if defined _GCC || defined _DCC
- #define SAVEDS __geta4
- #endif
- #endif
-
- #ifndef MAKE_ID
- #define MAKE_ID(a,b,c,d) ((((ULONG) (a)) << 24) | (((ULONG) (b)) << 16) | (((ULONG) (c)) << 8) | ((ULONG) (d)))
- #endif
-
-
-
- #endif /* SRC_OOPEXAMPLE_OOPEXAMPLE_H */
-