| 1087 | } |
| 1088 | |
| 1089 | void addConstant( const char *name, |
| 1090 | S32 type, |
| 1091 | const void *dptr, |
| 1092 | const char* usage ) |
| 1093 | { |
| 1094 | Dictionary::Entry* entry = gEvalState.globalVars.addVariable( name, type, const_cast< void* >( dptr ), usage ); |
| 1095 | entry->mIsConstant = true; |
| 1096 | } |
| 1097 | |
| 1098 | bool removeVariable(const char *name) |
| 1099 | { |
no test coverage detected