mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-15 12:26:00 +01:00
a945346064
* remove libsystemd dependency as per Lennart Poettering's advice: https://github.com/systemd/systemd/issues/32028#issuecomment-2031366922 * fix naming for systemd helper functions * rename vars according to code style * Nix: update meson patch --------- Co-authored-by: Mihai Fufezan <mihai@fufexan.net>
6 lines
120 B
C++
6 lines
120 B
C++
#pragma once
|
|
|
|
namespace Systemd {
|
|
int SdBooted(void);
|
|
int SdNotify(int unset_environment, const char* state);
|
|
}
|