| 58 | |
| 59 | typedef void (CPPIA_CALL *StackExecute)(struct StackContext *ctx); |
| 60 | struct ScriptFunction |
| 61 | { |
| 62 | ScriptFunction(StackExecute inExe=0,const char *inSig=0) |
| 63 | : execute(inExe), signature(inSig) { } |
| 64 | StackExecute execute; |
| 65 | const char *signature; |
| 66 | }; |
| 67 | struct ScriptCallable; |
| 68 | |
| 69 | #endif |