vdagentd: rename client message handling functions for clarity
[vd_agent/hramrach.git] / console-kit.h
blobf041f86fd8cecc8e37451c2e1fac0832cf713d76
1 /* console-kit.h vdagentd ConsoleKit integration code - header
3 Copyright 2010 Red Hat, Inc.
5 Red Hat Authors:
6 Hans de Goede <hdegoede@redhat.com>
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #ifndef __CONSOLE_KIT_H
23 #define __CONSOLE_KIT_H
25 #include <stdio.h>
26 #include <stdint.h>
28 struct console_kit;
30 struct console_kit *console_kit_create(FILE *errfile);
31 void console_kit_destroy(struct console_kit *ck);
33 int console_kit_get_fd(struct console_kit *ck);
35 const char *console_kit_get_active_session(struct console_kit *ck);
36 /* Note result must be free()-ed by caller */
37 char *console_kit_session_for_pid(struct console_kit *ck, uint32_t pid);
39 #endif