sh_is_running method

int sh_is_running(
  1. Pointer<SelectionHook> hook
)

Check if the hook is currently running.

@param hook Valid SelectionHook instance. @return 1 if running, 0 if not running. @thread_safety Safe from any thread.

Implementation

int sh_is_running(ffi.Pointer<SelectionHook> hook) {
  return _sh_is_running(hook);
}