labwc/include/action.h

14 lines
228 B
C
Raw Normal View History

/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef __LABWC_ACTION_H
#define __LABWC_ACTION_H
struct action {
uint32_t type;
char *arg;
struct wl_list link;
};
2022-01-05 21:23:01 +00:00
struct action *action_create(const char *action_name);
#endif