Old Osiris functions converted to make porting easier
| 10780 | |
| 10781 | // Old Osiris functions converted to make porting easier |
| 10782 | int GetObjectParent(int object) { |
| 10783 | msafe_struct ms; |
| 10784 | ms.objhandle = object; |
| 10785 | |
| 10786 | MSafe_GetValue(MSAFE_OBJECT_PARENT, &ms); |
| 10787 | |
| 10788 | return ms.objhandle; |
| 10789 | } |
| 10790 | |
| 10791 | int GetObjectType(int object) { |
| 10792 | msafe_struct ms; |
no outgoing calls
no test coverage detected