home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / boopsi / dragclass / source / animtools.h next >
C/C++ Source or Header  |  1977-12-31  |  539b  |  22 lines

  1. typedef struct newBob {
  2. WORD       *nb_Image;
  3. SHORT        nb_WordWidth;
  4. SHORT        nb_LineHeight;
  5. SHORT        nb_ImageDepth;
  6. SHORT        nb_PlanePick;
  7. SHORT        nb_PlaneOnOff;
  8. SHORT        nb_BFlags;
  9. SHORT        nb_DBuf;
  10. SHORT        nb_RasDepth;
  11. SHORT        nb_X;
  12. SHORT        nb_Y;
  13. USHORT        nb_HitMask;
  14. USHORT        nb_MeMask;
  15. } NEWBOB ;
  16.  
  17. struct GelsInfo *setupGelSys(struct RastPort *rPort, BYTE reserved);
  18. VOID        cleanupGelSys(struct GelsInfo *gInfo, struct RastPort *rPort);
  19. struct Bob    *makeBob(NEWBOB *nBob);
  20. VOID        freeBob(struct Bob *bob, LONG rasdepth);
  21.  
  22.