1 /* SPDX-License-Identifier: LGPL-2.1-or-later */ 2 #pragma once 3 4 #include <stdbool.h> 5 6 #include "bus-util.h" 7 8 int polkit_agent_open(void); 9 void polkit_agent_close(void); 10 11 int polkit_agent_open_if_enabled(BusTransport transport, bool ask_password); 12