home *** CD-ROM | disk | FTP | other *** search
- #pragma once
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- OSErr InitDraw(short); // done once at load time
- // resource id of system pict file
- void DoneDraw(void); // done once at last init windows (performs cleanup)
- void StartDraw( Rect *, PixMapHandle); // called to start animation
- // dest rect and pixmap handle
- void StopDraw(void); // called to stop animation
- void BlitImage( Rect *destRect, PixMapHandle destPixMap );
-
-
- #ifdef __cplusplus
- }
- #endif
-