1/* -*- mode: C; coding: macintosh; -*-
2 * ###################################################################
3 *  tclAE - AppleEvent extension for Tcl
4 *
5 *  FILE: "tclAE.h"
6 *                                    created: 8/20/1999 {9:31:41 PM}
7 *                                last update: 8/21/1999 {11:14:26 AM}
8 *  Author: Jonathan Guyer
9 *  E-mail: jguyer@his.com
10 *    mail: POMODORO no seisan
11 *     www: http://www.his.com/~jguyer/
12 *
13 * ========================================================================
14 *               Copyright � 1999 Jonathan Guyer
15 * ========================================================================
16 * Permission to use, copy, modify, and distribute this software and its
17 * documentation for any purpose and without fee is hereby granted,
18 * provided that the above copyright notice appear in all copies and that
19 * both that the copyright notice and warranty disclaimer appear in
20 * supporting documentation.
21 *
22 * Jonathan Guyer disclaims all warranties with regard to this software,
23 * including all implied warranties of merchantability and fitness.  In
24 * no event shall Jonathan Guyer be liable for any special, indirect or
25 * consequential damages or any damages whatsoever resulting from loss of
26 * use, data or profits, whether in an action of contract, negligence or
27 * other tortuous action, arising out of or in connection with the use or
28 * performance of this software.
29 * ========================================================================
30 *  Description:
31 *
32 *  History
33 *
34 *  modified   by  rev reason
35 *  ---------- --- --- -----------
36 *  8/20/1999  JEG 1.0 original
37 * ###################################################################
38 */
39
40#pragma once
41
42#ifndef _TCLAE
43#define _TCLAE
44
45#include "tclAEid.h"
46
47#ifdef __cplusplus
48extern "C" {
49#endif
50
51int Tclae_Init(Tcl_Interp *interp);
52
53#ifdef __cplusplus
54}
55#endif
56
57#endif /* _TCLAE */
58