home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1998 / MacHack 1998.toast / The Hacks! / 3D No 'doz II / Source / Sources / Drawing.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-20  |  483 b   |  19 lines  |  [TEXT/CWIE]

  1. #pragma once
  2.  
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6.  
  7. OSErr InitDraw(short);                    // done once at load time 
  8.                                         // resource id of system pict file
  9. void DoneDraw(void);                    // done once at last init windows (performs cleanup)
  10. void StartDraw( Rect *, PixMapHandle);    // called to start animation
  11.                                         // dest rect and pixmap handle
  12. void StopDraw(void);                    // called to stop animation
  13. void BlitImage( Rect *destRect, PixMapHandle destPixMap );
  14.     
  15.  
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19.