Phasor 3.3.0
Stack VM based Programming Language
Loading...
Searching...
No Matches
AppleScript.h
Go to the documentation of this file.
1#ifndef APPLESCRIPT_RUNNER_H
2#define APPLESCRIPT_RUNNER_H
3
4#include <stdlib.h>
5
6#ifdef __cplusplus
7extern "C"
8{
9#endif
10
11 typedef struct
12 {
14 char *output;
15 char *error;
18
19 AppleScriptResult executeAppleScript(const char *script);
21
22#ifdef __cplusplus
23}
24#endif
25
26#endif /* APPLESCRIPT_RUNNER_H */
AppleScriptResult executeAppleScript(const char *script)
Definition AppleScript.m:20
void freeAppleScriptResult(AppleScriptResult *result)
Definition AppleScript.m:54