mirror of
https://github.com/labwc/labwc.git
synced 2025-10-29 05:40:24 -04:00
11 lines
225 B
C
11 lines
225 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef LABWC_THREE_STATE_H
|
|
#define LABWC_THREE_STATE_H
|
|
|
|
enum three_state {
|
|
LAB_STATE_UNSPECIFIED = 0,
|
|
LAB_STATE_ENABLED,
|
|
LAB_STATE_DISABLED
|
|
};
|
|
|
|
#endif /* LABWC_THREE_STATE_H */
|