1/* -*- mode: C; coding: macintosh; -*-
2 *
3 *	AEPrint.h
4 *
5 * 	Copyright �1991-1993 Apple Computer, Inc.
6 */
7
8#pragma once
9
10#ifndef __AEPRINT__
11#define __AEPRINT__
12
13#ifndef __APPLEEVENTS__
14#include <AppleEvents.h>
15#endif
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21OSErr AEPrint( const AEDesc *desc, char *bufStr, long bufSize );
22OSErr AEPrintSize( const AEDesc *desc, long *stringLength );		// Just computes size (len+1) of string
23
24#ifdef __cplusplus
25}
26#endif
27
28#endif
29