Struct
DexStateTransition
Description [src]
struct DexStateTransition {
guint from;
guint to;
DexStateTransitionFunc func;
}
Describes one supported transition edge in a DexStateMachine.
Structure members
from:guintThe state this edge may start from.
to:guintThe state this edge transitions to.
func:DexStateTransitionFuncCallback used to execute the edge.