2011-07-07 15:41:53 +02:00
|
|
|
/* Public Domain Curses */
|
|
|
|
|
|
|
|
#include <curspriv.h>
|
|
|
|
|
|
|
|
RCSID("$Id: deprec.c,v 1.6 2008/07/13 16:08:18 wmcbrine Exp $")
|
|
|
|
|
2011-10-31 20:54:00 +01:00
|
|
|
/* Deprecated functions. These should not be used, and will eventually
|
|
|
|
be removed. They're here solely for the benefit of applications that
|
2011-07-07 15:41:53 +02:00
|
|
|
linked to them in older versions of PDCurses. */
|
|
|
|
|
|
|
|
bool PDC_check_bios_key(void)
|
|
|
|
{
|
|
|
|
return PDC_check_key();
|
|
|
|
}
|
|
|
|
|
|
|
|
int PDC_get_bios_key(void)
|
|
|
|
{
|
|
|
|
return PDC_get_key();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PDC_get_ctrl_break(void)
|
|
|
|
{
|
|
|
|
return !SP->raw_inp;
|
|
|
|
}
|
|
|
|
|
|
|
|
int PDC_set_ctrl_break(bool setting)
|
|
|
|
{
|
|
|
|
return setting ? noraw() : raw();
|
|
|
|
}
|