IdaJS
    Preparing search index...

    Variable pauseCoroutine

    pauseCoroutine: (objectId: number, name?: string) => void

    Pauses the currently running coroutine for the given object ID. The coroutine can be resumed later using unpauseCoroutine.

    Type Declaration

      • (objectId: number, name?: string): void
      • Parameters

        • objectId: number

          The object ID whose coroutine to pause

        • Optionalname: string

          Optional name to verify the expected coroutine is being paused (will be verified to match the currently running coroutine)

        Returns void