diff options
author | vaxerski <[email protected]> | 2023-09-12 16:46:22 +0100 |
---|---|---|
committer | vaxerski <[email protected]> | 2023-09-12 16:50:10 +0100 |
commit | 2e34548aea5b4a0e131a365693227f8739c0af6d (patch) | |
tree | 755006c60ef5120a067715d45040406a33511815 /src/macros.hpp | |
parent | 5cc53c14d9d904fe9b97e72ed974bbea9d68eb64 (diff) | |
download | Hyprland-2e34548aea5b4a0e131a365693227f8739c0af6d.tar.gz Hyprland-2e34548aea5b4a0e131a365693227f8739c0af6d.zip |
varlist: move to a separate header, add join
Diffstat (limited to 'src/macros.hpp')
-rw-r--r-- | src/macros.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/macros.hpp b/src/macros.hpp index 53f77fdf..3f0a9ebc 100644 --- a/src/macros.hpp +++ b/src/macros.hpp @@ -37,6 +37,8 @@ #define PI 3.14159265358979 +#define STRVAL_EMPTY "[[EMPTY]]" + #define LISTENER(name) \ void listener_##name(wl_listener*, void*); \ inline wl_listener listen_##name = {.notify = listener_##name} |