home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1997 January / macpower199701.bin / AMUG / Programming_10 / WASTE 1.3a1.sit / WASTE 1.3a1 Distribution / Extras / Experimental / WEExtras.h < prev   
Encoding:
C/C++ Source or Header  |  1996-08-23  |  605 b   |  33 lines  |  [TEXT/CWIE]

  1. /*
  2.  *    WEExtras.h
  3.  *
  4.  *    Routines for installing and removing various "extras"
  5.  *
  6.  */
  7.  
  8. #ifndef _WASTE_
  9. #include "WASTE.h"
  10. #endif
  11.  
  12. enum
  13. {
  14.     kInvisiblesColorRedGreenTag     =    'icRG' ,
  15.     kInvisiblesColorBlueTag            =    'icB_'
  16. } ;
  17.  
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21.  
  22. pascal OSErr WEInstallCrOnlyHook( WEReference we );
  23. pascal OSErr WERemoveCrOnlyHook( WEReference we );
  24. pascal Boolean WEIsCrOnly( WEReference we );
  25.  
  26. pascal OSErr WEInstallShowInvisiblesHook(WEReference we);
  27. pascal OSErr WERemoveShowInvisiblesHook( WEReference we );
  28. pascal Boolean WEIsShowInvisibles( WEReference we );
  29.  
  30. #ifdef __cplusplus
  31. }
  32. #endif
  33.