diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-11-22 15:29:17 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-11-22 15:29:17 -0500 |
commit | cb11364552213e3dbfce8f8b0e90ce562b4e4c1f (patch) | |
tree | 07d8e6ccf5aa61fd59135287f18f7d218c64cde1 /include/config.h | |
parent | 7bd82a26b00f2ad57563bee55a098f97c52421f3 (diff) | |
parent | a0c5a0bb30af3cc132715e60cf3d87a77f88a095 (diff) |
Merge pull request #247 from sce/handle_bindsym_duplicates
Handle bindsym duplicates
Diffstat (limited to 'include/config.h')
-rw-r--r-- | include/config.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h index 82aa71bf..3bdbdb7b 100644 --- a/include/config.h +++ b/include/config.h @@ -104,6 +104,10 @@ void free_output_config(struct output_config *oc); int workspace_output_cmp_workspace(const void *a, const void *b); +int sway_binding_cmp(const void *a, const void *b); +int sway_binding_cmp_keys(const void *a, const void *b); +void free_sway_binding(struct sway_binding *sb); + /** * Global config singleton. */ |