home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 487.lha / CpuBlit_v0.96 / src / scroll.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-03-11  |  1020 b   |  23 lines

  1. /****************************************************************************
  2.  *
  3.  *        SCROLL.H
  4.  *
  5.  *        Declares functions and variables available in the assembly
  6.  *        file SCROLL.S.
  7.  * 
  8.  ***************************************************************************/
  9.  
  10. extern void NewBltBitMap();            /* Our replacement BltBitMap routine    */
  11. extern __fptr BltBitMapAddress;        /* Ptr to original BltBitMap()            */
  12.  
  13. extern long Friend1[];                /* Ptr to check fn for one active task    */
  14. extern long Friend2[];                /* Ptr to check fn for two active tasks    */
  15. extern long ShareBlit[];            /* Ptr to check fn to share CPU/blitter    */
  16. extern long StartBlit[];            /* Ptr to check fn that always uses CPU    */
  17. extern long ExitBlit[];                /* Ptr to check fn that never uses CPU    */
  18.  
  19. extern long *BlitFunc;                /* Holds Ptr to current check function    */
  20. extern long UsageCount;                /* No. of callers currently in CPU code    */
  21. extern long OnlySingle;                /* True if restricting blits to 1 bmap    */
  22. extern long Broken;                    /* True if handling broken software        */
  23.