$$ACTION Doors Stop door [d:Door] aDoorStop Stop door Stops the specified door if it's animating Parameters: Door: the object of the door to stop $$END */
| 1781 | $$END |
| 1782 | */ |
| 1783 | void aDoorStop(int objhandle) { |
| 1784 | msafe_struct mstruct; |
| 1785 | |
| 1786 | mstruct.objhandle = objhandle; |
| 1787 | |
| 1788 | MSafe_CallFunction(MSAFE_DOOR_STOP, &mstruct); |
| 1789 | } |
| 1790 | |
| 1791 | /* |
| 1792 | $$ACTION |
no outgoing calls
no test coverage detected