Revision 11669,
443 bytes
checked in by rbasch, 26 years ago
(diff) |
Clear console port utmp entry at end of console session.
|
Line | |
---|
1 | #ifndef _DPY_H_ |
---|
2 | #define _DPY_H_ |
---|
3 | |
---|
4 | #define DPY_NONE 1 |
---|
5 | #define DPY_X 2 |
---|
6 | #define DPY_CONS 3 |
---|
7 | |
---|
8 | #if !defined(_DPY_IRIX_H_) |
---|
9 | typedef struct _dpy_state dpy_state; |
---|
10 | #endif |
---|
11 | |
---|
12 | dpy_state * dpy_init(void); |
---|
13 | int dpy_startX(dpy_state *); |
---|
14 | int dpy_stopX(dpy_state *); |
---|
15 | int dpy_startCons(dpy_state *); |
---|
16 | int dpy_stopCons(dpy_state *); |
---|
17 | int dpy_status(dpy_state *); |
---|
18 | int dpy_child(dpy_state *, pid_t, void *); |
---|
19 | char * dpy_consline(dpy_state *); |
---|
20 | |
---|
21 | #endif /* _DPY_H_ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.