mirror of
https://github.com/labwc/labwc.git
synced 2026-03-21 05:33:52 -04:00
Rewrite action handling to allow multiple actions at once
This commit is contained in:
parent
a54ce40e1c
commit
0b45cce648
12 changed files with 276 additions and 140 deletions
13
include/action.h
Normal file
13
include/action.h
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
/* 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue