| 275 | int STDCALL SaveRestoreState(void *file_ptr, uint8_t saving_state) { return 0; } |
| 276 | |
| 277 | int GetObjectType(int object) { |
| 278 | msafe_struct ms; |
| 279 | ms.objhandle = object; |
| 280 | MSafe_GetValue(MSAFE_OBJECT_TYPE, &ms); |
| 281 | |
| 282 | return ms.type; |
| 283 | } |
| 284 | |
| 285 | int GetObjectID(int object) { |
| 286 | msafe_struct ms; |