| 1873 | } |
| 1874 | |
| 1875 | void *hx::Object::_hx_getInterface(int inId) |
| 1876 | { |
| 1877 | void **vtable = __GetScriptVTable(); |
| 1878 | if (!vtable) |
| 1879 | return 0; |
| 1880 | CppiaClassInfo *info = ((CppiaClassInfo *)vtable[-1]); |
| 1881 | void *result = info->interfaceScriptTables[inId]; |
| 1882 | return info->interfaceScriptTables[inId]; |
| 1883 | } |
| 1884 | |
| 1885 | |
| 1886 | } // end namespace hx |
nothing calls this directly
no test coverage detected