~ubuntu-branches/ubuntu/maverick/kdebase-workspace/maverick-proposed

« back to all changes in this revision

Viewing changes to kdm/kfrontend/kdm_greet.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2010-07-08 01:11:52 UTC
  • mfrom: (1.1.43 upstream)
  • Revision ID: james.westby@ubuntu.com-20100708011152-z0h26httnjr91mmy
Tags: 4:4.4.92-0ubuntu1
* New upstream rc release:
  - Bump kde-sc-dev-latest to 4.4.92
  - Refresh patches
  - Update symbols
  - plasma-widgets-workspace replaces/conflicts plasma-widget-logout

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
extern "C" {
33
33
#endif
34
34
 
35
 
void gSet( int master );
36
 
void gSendInt( int val );
37
 
void gSendStr( const char *buf );
38
 
/*void gSendNStr( const char *buf, int len );*/
39
 
void gSendArr( int len, const char *buf );
40
 
int gRecvInt( void );
41
 
char *gRecvStr( void );
42
 
char **gRecvStrArr( int *len );
43
 
char *gRecvArr( int *len );
44
 
 
45
 
int getCfgInt( int id );
46
 
char *getCfgStr( int id );
47
 
char **getCfgStrArr( int id, int *len );
48
 
 
49
 
void freeStrArr( char **arr );
 
35
void gSet(int master);
 
36
void gSendInt(int val);
 
37
void gSendStr(const char *buf);
 
38
/*void gSendNStr(const char *buf, int len);*/
 
39
void gSendArr(int len, const char *buf);
 
40
int gRecvInt(void);
 
41
char *gRecvStr(void);
 
42
char **gRecvStrArr(int *len);
 
43
char *gRecvArr(int *len);
 
44
 
 
45
int getCfgInt(int id);
 
46
char *getCfgStr(int id);
 
47
char **getCfgStrArr(int id, int *len);
 
48
 
 
49
void freeStrArr(char **arr);
50
50
 
51
51
extern int debugLevel;
52
 
void debug( const char *fmt, ... );
53
 
void logInfo( const char *fmt, ... );
54
 
void logWarn( const char *fmt, ... );
55
 
void logError( const char *fmt, ... );
56
 
void logPanic( const char *fmt, ... ) ATTR_NORETURN;
 
52
void debug(const char *fmt, ...);
 
53
void logInfo(const char *fmt, ...);
 
54
void logWarn(const char *fmt, ...);
 
55
void logError(const char *fmt, ...);
 
56
void logPanic(const char *fmt, ...) ATTR_NORETURN;
57
57
 
58
58
struct _XDisplay;
59
59
 
60
 
void secureKeyboard( struct _XDisplay *dpy );
61
 
void securePointer( struct _XDisplay *dpy );
62
 
void secureInputs( struct _XDisplay *dpy );
63
 
void unsecureInputs( struct _XDisplay *dpy );
64
 
void secureDisplay( struct _XDisplay *dpy );
65
 
void unsecureDisplay( struct _XDisplay *dpy );
66
 
int pingServer( struct _XDisplay *dpy );
67
 
 
68
 
void setupModifiers( struct _XDisplay *mdpy, int numlock );
69
 
void restoreModifiers( void );
70
 
 
71
 
void setCursor( struct _XDisplay *mdpy, int window, int shape );
 
60
void secureKeyboard(struct _XDisplay *dpy);
 
61
void securePointer(struct _XDisplay *dpy);
 
62
void secureInputs(struct _XDisplay *dpy);
 
63
void unsecureInputs(struct _XDisplay *dpy);
 
64
void secureDisplay(struct _XDisplay *dpy);
 
65
void unsecureDisplay(struct _XDisplay *dpy);
 
66
int pingServer(struct _XDisplay *dpy);
 
67
 
 
68
void setupModifiers(struct _XDisplay *mdpy, int numlock);
 
69
void restoreModifiers(void);
 
70
 
 
71
void setCursor(struct _XDisplay *mdpy, int window, int shape);
72
72
 
73
73
 
74
74
extern int rfd; /* for select() loops */