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.
|
- module CHookActions
- use CIActionReference
- implicit none
- public
- procedure (ActionReal), pointer :: HookHeightPtr
- contains
-
- subroutine SubscribeHookHeight(a)
- !DEC$ ATTRIBUTES DLLEXPORT :: SubscribeHookHeight
- !DEC$ ATTRIBUTES ALIAS: 'SubscribeHookHeight' :: SubscribeHookHeight
- implicit none
- procedure (ActionReal) :: a
- HookHeightPtr => a
- end subroutine
-
- end module CHookActions
|