| 206 | } |
| 207 | |
| 208 | void RegisterScriptMathComplex(asIScriptEngine *engine) |
| 209 | { |
| 210 | if( strstr(asGetLibraryOptions(), "AS_MAX_PORTABILITY") ) |
| 211 | { |
| 212 | assert( false ); |
| 213 | // TODO: implement support for generic calling convention |
| 214 | // RegisterScriptMathComplex_Generic(engine); |
| 215 | } |
| 216 | else |
| 217 | RegisterScriptMathComplex_Native(engine); |
| 218 | } |
| 219 | |
| 220 | END_AS_NAMESPACE |
| 221 |