home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / OpenDoc / CreditNow! / CreditNow! Source / $Headers / AEPrint.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-23  |  448 b   |  23 lines  |  [TEXT/MPCC]

  1. /*
  2.  *    AEPrint.h                                        Copyright ©1991-1993 Apple Computer, Inc.
  3.  */
  4.  
  5. #ifdef THINK_C
  6. #pragma once                                        /* For THINK C users */
  7. #endif
  8.  
  9. #ifndef __AEPRINT__
  10. #define __AEPRINT__                                /* For poor MPW users :) */
  11.  
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15.  
  16. OSErr AEPrint( AEDesc *desc, char *bufStr, long bufSize );
  17. OSErr AEPrintSize( AEDesc *desc, long *stringLength );        // Just computes size (len+1) of string
  18.  
  19. #ifdef __cplusplus
  20. }
  21. #endif
  22.  
  23. #endif