mirror of
https://github.com/labwc/labwc.git
synced 2025-10-29 05:40:24 -04:00
14 lines
227 B
C
14 lines
227 B
C
|
|
/* 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;
|
||
|
|
};
|
||
|
|
|
||
|
|
struct action *action_create(const char *action_str);
|
||
|
|
|
||
|
|
#endif
|