Struct

DexStateTransition

Description [src]

struct DexStateTransition {
  guint from;
  guint to;
  DexStateTransitionFunc func;
}

Describes one supported transition edge in a DexStateMachine.

Structure members
from: guint

The state this edge may start from.

to: guint

The state this edge transitions to.

func: DexStateTransitionFunc

Callback used to execute the edge.