1#ifndef SEQUENCER_H2#define SEQUENCER_H34#define SEQ_DIR "sequencer"5#define SEQ_HEAD_FILE "sequencer/head"6#define SEQ_TODO_FILE "sequencer/todo"7#define SEQ_OPTS_FILE "sequencer/opts"89/* Removes SEQ_DIR. */10extern void remove_sequencer_state(void);1112#endif