mirror of
https://github.com/Kbz-8/Pulse.git
synced 2026-01-10 15:03:34 +00:00
17 lines
389 B
C
17 lines
389 B
C
// Copyright (C) 2025 kbz_8
|
|
// This file is part of "Pulse"
|
|
// For conditions of distribution and use, see copyright notice in LICENSE
|
|
|
|
#ifndef PULSE_ENUMS_H_
|
|
#define PULSE_ENUMS_H_
|
|
|
|
typedef enum PulseCommandListState
|
|
{
|
|
PULSE_COMMAND_LIST_STATE_INVALID,
|
|
PULSE_COMMAND_LIST_STATE_RECORDING,
|
|
PULSE_COMMAND_LIST_STATE_READY,
|
|
PULSE_COMMAND_LIST_STATE_SENT
|
|
} PulseCommandListState;
|
|
|
|
#endif
|