ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/libptytty.h
(Generate patch)

Comparing rxvt-unicode/src/libptytty.h (file contents):
Revision 1.3 by root, Mon Jan 23 12:05:12 2006 UTC vs.
Revision 1.6 by root, Wed Jan 25 10:51:26 2006 UTC

41}; 41};
42 42
43#else 43#else
44 44
45// c api 45// c api
46int ptytty_pty (void *ptytty);
47int ptytty_tty (void *ptytty);
48void ptytty_delete (void *ptytty);
49int ptytty_get (void *ptytty);
50void ptytty_login (void *ptytty, int cmd_pid, bool login_shell, const char *hostname);
51 46
47typedef void *PTYTTY;
48
49int ptytty_pty (PTYTTY ptytty);
50int ptytty_tty (PTYTTY ptytty);
51void ptytty_delete (PTYTTY ptytty);
52int ptytty_get (PTYTTY ptytty);
53void ptytty_login (PTYTTY ptytty, int cmd_pid, int login_shell, const char *hostname);
54
52void ptytty_close_tty (void *ptytty); 55void ptytty_close_tty (PTYTTY ptytty);
53int ptytty_make_controlling_tty (void *ptytty); 56int ptytty_make_controlling_tty (PTYTTY ptytty);
54void ptytty_set_utf8_mode (void *ptytty, int on); 57void ptytty_set_utf8_mode (PTYTTY ptytty, int on);
55 58
56void ptytty_init (); 59void ptytty_init ();
57void *ptytty_create (); 60PTYTTY ptytty_create ();
58 61
59void ptytty_drop_privileges (); 62void ptytty_drop_privileges ();
60void ptytty_use_helper (); 63void ptytty_use_helper ();
61 64
62#endif 65#endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines