]> code.delx.au - gnu-emacs/blobdiff - src/tparam.h
Make closing dbus buses actually work
[gnu-emacs] / src / tparam.h
index 11c9ae68aad7998ac90f32d9b6979f82fddcc8f3..3bef6c61aa39f546fe4d2f8826811e4427d185ab 100644 (file)
@@ -1,6 +1,6 @@
 /* Interface definitions for termcap entries.
 
-Copyright (C) 2011  Free Software Foundation, Inc.
+Copyright (C) 2011-2014 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
@@ -23,9 +23,13 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 
 void tputs (const char *, int, int (*) (int));
 int tgetent (char *, const char *);
-int tgetflag (char *id);
-int tgetnum (char *id);
-char *tgetstr (char *, char **);
+int tgetflag (const char *);
+int tgetnum (const char *);
+char *tgetstr (const char *, char **);
 char *tgoto (const char *, int, int);
 
 char *tparam (const char *, char *, int, int, int, int, int);
+
+extern char PC;
+extern char *BC;
+extern char *UP;