$$QUERY Objects o:Saved object handle [e:SavedObjectSlot] qObjSavedHandle Saved object handle Returns the object handle saved in the specified slot Parameters: HandleSlot: the slot for which the object handle is returned $$END */
| 6459 | $$END |
| 6460 | */ |
| 6461 | int qObjSavedHandle(int slot) { |
| 6462 | if ((slot >= 0) && (slot < MAX_SAVED_OBJECT_HANDLES)) |
| 6463 | return Saved_object_handles[slot]; |
| 6464 | else |
| 6465 | return OBJECT_HANDLE_NONE; |
| 6466 | } |
| 6467 | |
| 6468 | /* |
| 6469 | $$QUERY |
no outgoing calls
no test coverage detected