summaryrefslogtreecommitdiffstats
path: root/tdm/kfrontend/tdm_greet.h
blob: 67fda9dfa6a8bc3437c397944a77eb6544a80603 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*

TDE Greeter module for xdm

Copyright (C) 2001-2003 Oswald Buddenhagen <ossi@kde.org>

This file contains code from the old xdm core,
Copyright 1988, 1998  Keith Packard, MIT X Consortium/The Open Group

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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

*/

#ifndef _TDM_GREET_H_
#define _TDM_GREET_H_

#include <greet.h> /* for the ATTR_ defines */
#include <config.ci> /* for the HAVE_VTS define */

#ifdef __cplusplus
extern "C" {
#endif

void GSet( int master );
void GSendInt( int val );
void GSendStr( const char *buf );
/*void GSendNStr( const char *buf, int len );*/
void GSendArr( int len, const char *buf );
int GRecvInt( void );
char *GRecvStr( void );
char **GRecvStrArr( int *len );
char *GRecvArr( int *len );

int GetCfgInt( int id );
char *GetCfgStr( int id );
char **GetCfgStrArr( int id, int *len );

typedef struct dpySpec {
	struct dpySpec *next;
	char *display, *from, *user, *session;
#ifdef HAVE_VTS
	int vt;
#endif
	int flags;
	int count;
} dpySpec;

dpySpec *fetchSessions( int flags );
void disposeSessions( dpySpec *sess );

void freeStrArr( char **arr );

void Debug( const char *fmt, ... );
void LogInfo( const char *fmt, ... );
void LogWarn( const char *fmt, ... );
void LogError( const char *fmt, ... );
void LogPanic( const char *fmt, ... ) ATTR_NORETURN;

struct _XDisplay;

void SecureDisplay( struct _XDisplay *dpy );
void UnsecureDisplay( struct _XDisplay *dpy );
int PingServer( struct _XDisplay *dpy );

void setup_modifiers( struct _XDisplay *mdpy, int numlock );
void restore_modifiers( void );

void setCursor( struct _XDisplay *mdpy, int window, int shape );


extern int rfd; /* for select() loops */

extern char *dname; /* d->name */

#ifdef __cplusplus
}
#endif

#endif /* _TDM_GREET_H_ */