#pragma once
#include <stddef.h>
#include "gperf.h"
typedef enum
{
CMD_PLAY,
CMD_PAUSE,
CMD_TOGGLE_PLAY_PAUSE,
CMD_QUIT,
CMD_TRACK_NEXT,
CMD_TRACK_PREV,
CMD_TRACK_REWIND,
CMD_TRACK_FIRST,
CMD_STATUS
} Cmd_id;
/* gperf function */
const Gperf_match * cmd_match(register const char *str, register size_t len);