home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 August / macformat-027.iso / mac / Shareware City / Developers / ShowInitIcon / ShowInitIcon.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-08  |  498 b   |  16 lines  |  [TEXT/MMCC]

  1. #pragma once
  2.  
  3. // Usage: pass the ID of your icon family (ICN#/icl4/icl8) to have it drawn in the right spot.
  4. // If 'advance' is true, the next INIT icon will be drawn to the right of your icon. If it is false, the next INIT icon will overwrite
  5. // yours. You can use it to create animation effects by calling ShowInitIcon several times with 'advance' set to false.
  6.  
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10.  
  11. pascal void ShowInitIcon (short iconFamilyID, Boolean advance);
  12.  
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16.