home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1998 / MacHack 1998.toast / The Hacks! / Interim Executive Decision / Outline Table Demo / sources / GetFileIcon.h < prev    next >
Encoding:
Text File  |  1998-06-21  |  607 b   |  31 lines  |  [TEXT/CWIE]

  1. // File Object Handler Utilities for the WASTE Text Engine
  2. // Part of the WASTE Object Handler Library by Michael Kamprath, kamprath@kagi.com
  3. // maintenance by John C. Daub
  4. //
  5.  
  6.  
  7. /* ------------------ GetFileIcon.h ------------------- */
  8.  
  9. #ifndef __GETFILEICON__
  10. #define __GETFILEICON__
  11.  
  12. #ifndef __ICONS__
  13. #include <Icons.h>
  14. #endif
  15. #ifndef __FINDER__
  16. #include <Finder.h>
  17. #endif
  18.  
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22.  
  23. pascal OSErr GetFileIcon( FSSpec *thing, IconSelectorValue iconSelector, Handle *theSuite);
  24. Boolean IsSuiteEmpty( Handle theSuite );
  25.  
  26. #ifdef __cplusplus
  27. }
  28. #endif
  29.  
  30. #endif // __GETFILEICON__
  31.