home *** CD-ROM | disk | FTP | other *** search
- #include <proto/datamaster.h>
-
- #define VERSION 1
- #define REVISION 1
-
- /* Objectheader
-
- Name: ANIM-IFF
- Author: SDI
- Distribution: PD
-
- 1.1 11.04.97 : first version
- */
-
- #ifdef __cplusplus
- extern "C"
- #endif
-
- #ifdef __MAXON__
- #define __asm
- #endif
-
- ULONG __asm CheckFunc(register __a0 STRPTR data, register __d0 ULONG size,
- register __a6 DatamasterBase)
- {
- if(dmCmpTextNC(data, "FORM"))
- return 1;
- return dmCmpTextNC(data+8, "ANIM");
- }
-
- struct TagItem HeaderTags[] = {
- {DMR_Check, (ULONG) CheckFunc},
- {DMR_Name, (ULONG) "ANIM-IFF"},
- {DMR_Descr, (ULONG) "Iff Animation"},
- {DMR_Flags, RECOF_CheckData},
- {DMR_Version, (VERSION<<16) + REVISION},
- {DMR_Class, DMCLASSF_ANIMATION},
- {TAG_END, 0},
- };
-
-