| 20 | static asIScriptEngine *engine = 0; |
| 21 | |
| 22 | void Thread(void *) |
| 23 | { |
| 24 | asIScriptModule *mod = engine->GetModule(0); |
| 25 | asIScriptFunction *func = mod->GetFunctionByIndex(1); |
| 26 | const char *str = func->GetDeclaration(); |
| 27 | |
| 28 | // Give AngelScript a chance to cleanup some memory |
| 29 | asThreadCleanup(); |
| 30 | } |
| 31 | |
| 32 | bool Test() |
| 33 | { |
nothing calls this directly
no test coverage detected