#include "defs.h"
#include "args.h"
Go to the source code of this file.
|
void | paula::printVersion () |
|
const Error * | paula::run (const char *code, const char **args, int numArgs) |
| Run a script with arguments and return error, or NO_ERROR, if everything went well.
|
|
const Error * | paula::run (const char *) |
| Run a script and return error, or NO_ERROR, if everything went well.
|
|
const Error * | paula::run (IInputStream &) |
| Run a script and return error, or NO_ERROR, if everything went well.
|
|
void | paula::runSafe (const char *) |
| Run a script. If an error occurs, print the error.
|
|
void | paula::runSafe (IInputStream &) |
| Run a script. If an error occurs, print the error.
|
|
Var | paula::get (const char *varName) |
| Get a variable by name. Return 'empty' if the variable is not found.
|
|
const Error * | paula::addCallback (const char *name, const Error *(*_action)(Args &)) |
| Add a callback to call from a Paula script.
|
|