diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-04-11 18:50:16 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-04-11 20:39:03 +0200 |
commit | 6bb92a169e8a65e7def5545798001e0dbecc7d4f (patch) | |
tree | 5a7c6946959d62ee3bafb55f932a2e0f7e809c45 /src/spawn-ask-password-agent.h | |
parent | f25626edf4c39bb9409cb165e6ce9551dd130661 (diff) |
polkit: temporarily spawn of a polkit agent in terminals for possibly authenticated operations
Diffstat (limited to 'src/spawn-ask-password-agent.h')
-rw-r--r-- | src/spawn-ask-password-agent.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/spawn-ask-password-agent.h b/src/spawn-ask-password-agent.h new file mode 100644 index 0000000000..dae039ad05 --- /dev/null +++ b/src/spawn-ask-password-agent.h @@ -0,0 +1,28 @@ +/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ + +#ifndef foospawnaskpasswordagenthfoo +#define foospawnaskpasswordagenthfoo + +/*** + This file is part of systemd. + + Copyright 2011 Lennart Poettering + + systemd is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + systemd is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with systemd; If not, see <http://www.gnu.org/licenses/>. +***/ + +int ask_password_agent_open(void); +void ask_password_agent_close(void); + +#endif |