summaryrefslogtreecommitdiff
path: root/gui/gdmcomm.h
blob: 5458db1d29182828267625c250396841e4262b84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 *  GDM - THe GNOME Display Manager
 *  Copyright (C) 2001 Queen of England, (c)2002 George Lebl
 *    
 *  GDMcommunication routines
 *
 *  This program 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.
 *   
 *  This program 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 this program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 * 
 */

#ifndef GDMCOMM_H
#define GDMCOMM_H

void		gdmcomm_set_debug (gboolean enable);
void		gdmcomm_set_quiet_errors (gboolean enable);
char *		gdmcomm_call_gdm (const char *command,
				  const char *auth_cookie,
				  const char *min_version,
				  int tries);
gboolean	gdmcomm_did_connection_fail (void);
void		gdmcomm_set_allow_sleep (gboolean val);
void		gdmcomm_comm_bulk_start (void);
void		gdmcomm_comm_bulk_stop (void);
const char *	gdmcomm_get_display (void);

/* This just gets a cookie of MIT-MAGIC-COOKIE-1 type */
char *		gdmcomm_get_a_cookie (gboolean binary);

/* get the gdm auth cookie */
char *		gdmcomm_get_auth_cookie (void);

gboolean	gdmcomm_check (gboolean show_dialog);
const char *	gdmcomm_get_error_message (const char *ret,
					   gboolean use_xnest);

#endif /* GDMCOMM_H */