interface
| 5218 | |
| 5219 | // interface |
| 5220 | const char *asCScriptEngine::GetTypeDeclaration(int typeId, bool includeNamespace) const |
| 5221 | { |
| 5222 | asCDataType dt = GetDataTypeFromTypeId(typeId); |
| 5223 | |
| 5224 | asCString str = dt.Format(defaultNamespace, includeNamespace); |
| 5225 | |
| 5226 | asCString *tempString = &asCThreadManager::GetLocalData()->string; |
| 5227 | *tempString = str; |
| 5228 | return tempString->AddressOf(); |
| 5229 | } |
| 5230 | |
| 5231 | // interface |
| 5232 | int asCScriptEngine::GetSizeOfPrimitiveType(int typeId) const |