| 153 | return __nullcTypeList.size() - 1; |
| 154 | } |
| 155 | void __nullcRegisterMembers(unsigned id, unsigned count, ...) |
| 156 | { |
| 157 | if(__nullcTypeList[id].members || !count) |
| 158 | return; |
| 159 | va_list args; |
| 160 | va_start(args, count); |
| 161 | __nullcTypeList[id].members = __nullcTypePart.size(); |
| 162 | for(unsigned i = 0; i < count * 2; i++) |
| 163 | { |
| 164 | __nullcTypePart.push_back(va_arg(args, int)); |
| 165 | __nullcTypePart.push_back(va_arg(args, int)); |
| 166 | } |
| 167 | va_end(args); |
| 168 | } |
| 169 | |
| 170 | NULLCTypeInfo* __nullcGetTypeInfo(unsigned id) |
| 171 | { |
no test coverage detected