| 296 | |
| 297 | |
| 298 | const hx::StaticInfo* Class_obj::GetStaticStorage(String inName) |
| 299 | { |
| 300 | if (mStaticStorageInfo) |
| 301 | { |
| 302 | for(const StaticInfo *s = mStaticStorageInfo; s->address; s++) |
| 303 | { |
| 304 | if (s->name == inName) |
| 305 | return s; |
| 306 | } |
| 307 | } |
| 308 | return 0; |
| 309 | } |
| 310 | |
| 311 | |
| 312 | #endif |