Simulation Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
449 B

  1. module CHookActions
  2. use CIActionReference
  3. implicit none
  4. public
  5. procedure (ActionReal), pointer :: HookHeightPtr
  6. contains
  7. subroutine SubscribeHookHeight(a)
  8. !DEC$ ATTRIBUTES DLLEXPORT :: SubscribeHookHeight
  9. !DEC$ ATTRIBUTES ALIAS: 'SubscribeHookHeight' :: SubscribeHookHeight
  10. implicit none
  11. procedure (ActionReal) :: a
  12. HookHeightPtr => a
  13. end subroutine
  14. end module CHookActions