| 1035 | } |
| 1036 | |
| 1037 | void addConstant( const char *name, |
| 1038 | S32 type, |
| 1039 | const void *dptr, |
| 1040 | const char* usage ) |
| 1041 | { |
| 1042 | Dictionary::Entry* entry = gEvalState.globalVars.addVariable( name, type, const_cast< void* >( dptr ), usage ); |
| 1043 | entry->mIsConstant = true; |
| 1044 | } |
| 1045 | |
| 1046 | bool removeVariable(const char *name) |
| 1047 | { |
no test coverage detected