$$ACTION Doors [e:Lock/Unlock] door [d:DoorName] aDoorLockUnlock Lock/Unlock door Locks or unlocks the specified door Parameters: DoorName: the object name of the door to be locked or unlocked $$END */
| 1718 | $$END |
| 1719 | */ |
| 1720 | void aDoorLockUnlock(int state, int objref) { |
| 1721 | msafe_struct mstruct; |
| 1722 | |
| 1723 | mstruct.objhandle = objref; |
| 1724 | mstruct.state = state; |
| 1725 | |
| 1726 | MSafe_CallFunction(MSAFE_DOOR_LOCK_STATE, &mstruct); |
| 1727 | } |
| 1728 | |
| 1729 | /* |
| 1730 | $$ACTION |
no outgoing calls
no test coverage detected