Move setting of ioready 'wait' earlier in call chain, to
[python/dscho.git] / Mac / Contrib / osam / ScriptRunner.h
blobdda7bbb0c1f6a171ebf7db7d8a0fa19121324ef2
1 /*
3 * This is a simple module to allow the
4 * user to compile and execute an applescript
5 * which is passed in as a text item.
7 * Sean Hummel <seanh@prognet.com>
8 * 1/20/98
9 * RealNetworks
11 * Jay Painter <jpaint@serv.net> <jpaint@gimp.org> <jpaint@real.com>
15 #pragma once
17 #include <OSA.h>
19 OSAError CompileAndExecute (const char *text,
20 AEDesc *result,
21 OSAActiveUPP proc);
23 OSAError CompileAndSave (const char *text,
24 const char *outfile,
25 OSAActiveUPP proc,
26 AEDesc *result);
28 OSAError ExecuteScriptFile (const char *theFile,
29 OSAActiveUPP proc,
30 AEDesc *result);