//
// TODO:
// * FindNCurses needs to remove the old probing code
// * Removal of that proxy code
// * Need to implement reading pointers with the new API
// * Can remove the manual Dlopen features
// * initscr() diagnostics based on DLL can be fixed
//
// binding.cs.in: Core binding for curses.
//
// This file attempts to call into ncurses without relying on Mono's
// dllmap, so it will work with .NET Core. This means that it needs
// two sets of bindings, one for "ncurses" which works on OSX, and one
// that works against "libncursesw.so.5" which is what you find on
// assorted Linux systems.
//
// Additionally, I do not want to rely on an external native library
// which is why all this pain to bind two separate ncurses is here.
//
// Authors:
// Miguel de Icaza (miguel.de.icaza@gmail.com)
//
// Copyright (C) 2007 Novell (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.Runtime.InteropServices;
namespace Unix.Terminal {
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
public partial class Curses {
//[StructLayout (LayoutKind.Sequential)]
//public struct winsize {
// public ushort ws_row;
// public ushort ws_col;
// public ushort ws_xpixel; /* unused */
// public ushort ws_ypixel; /* unused */
//};
[StructLayout (LayoutKind.Sequential)]
public struct MouseEvent {
public short ID;
public int X, Y, Z;
public Event ButtonState;
}
static int lines, cols;
static Window main_window;
static IntPtr curses_handle, curscr_ptr, lines_ptr, cols_ptr;
// If true, uses the DllImport into "ncurses", otherwise "libncursesw.so.5"
//static bool use_naked_driver;
static UnmanagedLibrary curses_library;
static NativeMethods methods;
[DllImport ("libc")]
public extern static int setlocale (int cate, [MarshalAs (UnmanagedType.LPStr)] string locale);
//[DllImport ("libc")]
//public extern static int ioctl (int fd, int cmd, out winsize argp);
static void LoadMethods ()
{
var libs = UnmanagedLibrary.IsMacOSPlatform ? new string [] { "libncurses.dylib" } : new string [] { "libncursesw.so.6", "libncursesw.so.5" };
curses_library = new UnmanagedLibrary (libs, false);
methods = new NativeMethods (curses_library);
}
static void FindNCurses ()
{
LoadMethods ();
curses_handle = methods.UnmanagedLibrary.NativeLibraryHandle;
stdscr = read_static_ptr ("stdscr");
curscr_ptr = get_ptr ("curscr");
lines_ptr = get_ptr ("LINES");
cols_ptr = get_ptr ("COLS");
}
static public string curses_version ()
{
var v = methods.curses_version ();
return $"{Marshal.PtrToStringAnsi (v)}, {curses_library.LibraryPath}";
}
static public Window initscr ()
{
setlocale (LC_ALL, "");
FindNCurses ();
// Prevents the terminal from being locked after exiting.
reset_shell_mode ();
main_window = new Window (methods.initscr ());
try {
console_sharp_get_dims (out lines, out cols);
} catch (DllNotFoundException) {
endwin ();
Console.Error.WriteLine ("Unable to find the @MONO_CURSES@ native library\n" +
"this is different than the managed mono-curses.dll\n\n" +
"Typically you need to install to a LD_LIBRARY_PATH directory\n" +
"or DYLD_LIBRARY_PATH directory or run /sbin/ldconfig");
Environment.Exit (1);
}
//Console.Error.WriteLine ($"using curses {Curses.curses_version ()}");
return main_window;
}
public static int Lines {
get {
return lines;
}
}
public static int Cols {
get {
return cols;
}
}
//
// Returns true if the window changed since the last invocation, as a
// side effect, the Lines and Cols properties are updated
//
public static bool CheckWinChange ()
{
int l, c;
console_sharp_get_dims (out l, out c);
if (l < 1) {
l = 1;
}
if (l != lines || c != cols) {
lines = l;
cols = c;
return true;
}
return false;
}
public static int addstr (string format, params object [] args)
{
var s = string.Format (format, args);
return addwstr (s);
}
static char [] r = new char [1];
//
// Have to wrap the native addch, as it can not
// display unicode characters, we have to use addstr
// for that. but we need addch to render special ACS
// characters
//
public static int addch (int ch)
{
if (ch < 127 || ch > 0xffff)
return methods.addch (ch);
char c = (char)ch;
return addwstr (new String (c, 1));
}
public static int mvaddch (int y, int x, int ch)
{
if (ch < 127 || ch > 0xffff)
return methods.mvaddch (y, x, ch);
char c = (char)ch;
return mvaddwstr (y, x, new String (c, 1));
}
static IntPtr stdscr;
static IntPtr get_ptr (string key)
{
var ptr = curses_library.LoadSymbol (key);
if (ptr == IntPtr.Zero)
throw new Exception ("Could not load the key " + key);
return ptr;
}
internal static IntPtr read_static_ptr (string key)
{
var ptr = get_ptr (key);
return Marshal.ReadIntPtr (ptr);
}
internal static IntPtr console_sharp_get_stdscr () => stdscr;
internal static IntPtr console_sharp_get_curscr ()
{
return Marshal.ReadIntPtr (curscr_ptr);
}
internal static void console_sharp_get_dims (out int lines, out int cols)
{
lines = Marshal.ReadInt32 (lines_ptr);
cols = Marshal.ReadInt32 (cols_ptr);
//int cmd;
//if (UnmanagedLibrary.IsMacOSPlatform) {
// cmd = TIOCGWINSZ_MAC;
//} else {
// cmd = TIOCGWINSZ;
//}
//if (ioctl (1, cmd, out winsize ws) == 0) {
// lines = ws.ws_row;
// cols = ws.ws_col;
// if (lines == Lines && cols == Cols) {
// return;
// }
// resizeterm (lines, cols);
//} else {
// lines = Lines;
// cols = Cols;
//}
}
public static Event mousemask (Event newmask, out Event oldmask)
{
IntPtr e;
var ret = (Event)(methods.mousemask ((IntPtr)newmask, out e));
oldmask = (Event)e;
return ret;
}
// We encode ESC + char (what Alt-char generates) as 0x2000 + char
public const int KeyAlt = 0x2000;
static public int IsAlt (int key)
{
if ((key & KeyAlt) != 0)
return key & ~KeyAlt;
return 0;
}
public static int StartColor () => methods.start_color ();
public static bool HasColors => methods.has_colors ();
///
/// The init_pair routine changes the definition of a color-pair.It takes
/// three arguments: the number of the color-pair to be changed, the fore-
/// ground color number, and the background color number.For portable ap-
/// plications:
///
/// o The first argument must be a legal color pair value.If default
/// colors are used (see use_default_colors(3x)) the upper limit is ad-
/// justed to allow for extra pairs which use a default color in fore-
/// ground and/or background.
///
/// o The second and third arguments must be legal color values.
///
/// If the color-pair was previously initialized, the screen is refreshed
/// and all occurrences of that color-pair are changed to the new defini-
/// tion.
///
/// As an extension, ncurses allows you to set color pair 0 via the as-
/// sume_default_colors (3x) routine, or to specify the use of default col-
/// ors (color number -1) if you first invoke the use_default_colors (3x)
/// routine.
///
///
///
///
///
public static int InitColorPair (short pair, short foreground, short background) => methods.init_pair (pair, foreground, background);
// TODO: Upgrade to ncurses 6.1 and use the extended version
//public static int InitExtendedPair (int pair, int foreground, int background) => methods.init_extended_pair (pair, foreground, background);
public static int UseDefaultColors () => methods.use_default_colors ();
public static int ColorPairs => methods.COLOR_PAIRS ();
//
// The proxy methods to call into each version
//
static public int endwin () => methods.endwin ();
static public bool isendwin () => methods.isendwin ();
static public int cbreak () => methods.cbreak ();
static public int nocbreak () => methods.nocbreak ();
static public int echo () => methods.echo ();
static public int noecho () => methods.noecho ();
static public int halfdelay (int t) => methods.halfdelay (t);
static public int raw () => methods.raw ();
static public int noraw () => methods.noraw ();
static public void noqiflush () => methods.noqiflush ();
static public void qiflush () => methods.qiflush ();
static public int typeahead (IntPtr fd) => methods.typeahead (fd);
static public int timeout (int delay) => methods.timeout (delay);
static public int wtimeout (IntPtr win, int delay) => methods.wtimeout (win, delay);
static public int notimeout (IntPtr win, bool bf) => methods.notimeout (win, bf);
static public int keypad (IntPtr win, bool bf) => methods.keypad (win, bf);
static public int meta (IntPtr win, bool bf) => methods.meta (win, bf);
static public int intrflush (IntPtr win, bool bf) => methods.intrflush (win, bf);
static public int clearok (IntPtr win, bool bf) => methods.clearok (win, bf);
static public int idlok (IntPtr win, bool bf) => methods.idlok (win, bf);
static public void idcok (IntPtr win, bool bf) => methods.idcok (win, bf);
static public void immedok (IntPtr win, bool bf) => methods.immedok (win, bf);
static public int leaveok (IntPtr win, bool bf) => methods.leaveok (win, bf);
static public int wsetscrreg (IntPtr win, int top, int bot) => methods.wsetscrreg (win, top, bot);
static public int scrollok (IntPtr win, bool bf) => methods.scrollok (win, bf);
static public int nl () => methods.nl ();
static public int nonl () => methods.nonl ();
static public int setscrreg (int top, int bot) => methods.setscrreg (top, bot);
static public int refresh () => methods.refresh ();
static public int doupdate () => methods.doupdate ();
static public int wrefresh (IntPtr win) => methods.wrefresh (win);
static public int redrawwin (IntPtr win) => methods.redrawwin (win);
//static public int wredrawwin (IntPtr win, int beg_line, int num_lines) => methods.wredrawwin (win, beg_line, num_lines);
static public int wnoutrefresh (IntPtr win) => methods.wnoutrefresh (win);
static public int move (int line, int col) => methods.move (line, col);
static public int curs_set (int visibility) => methods.curs_set (visibility);
//static public int addch (int ch) => methods.addch (ch);
static public int echochar (int ch) => methods.echochar (ch);
static public int addwstr (string s) => methods.addwstr (s);
static public int mvaddwstr (int y, int x, string s) => methods.mvaddwstr (y, x, s);
static public int wmove (IntPtr win, int line, int col) => methods.wmove (win, line, col);
static public int waddch (IntPtr win, int ch) => methods.waddch (win, ch);
//static public int wechochar (IntPtr win, int ch) => methods.wechochar (win, ch);
static public int attron (int attrs) => methods.attron (attrs);
static public int attroff (int attrs) => methods.attroff (attrs);
static public int attrset (int attrs) => methods.attrset (attrs);
static public int getch () => methods.getch ();
static public int get_wch (out int sequence) => methods.get_wch (out sequence);
static public int ungetch (int ch) => methods.ungetch (ch);
static public int mvgetch (int y, int x) => methods.mvgetch (y, x);
static public bool has_colors () => methods.has_colors ();
static public int start_color () => methods.start_color ();
static public int init_pair (short pair, short f, short b) => methods.init_pair (pair, f, b);
static public int use_default_colors () => methods.use_default_colors ();
static public int COLOR_PAIRS () => methods.COLOR_PAIRS ();
static public uint getmouse (out MouseEvent ev) => methods.getmouse (out ev);
static public uint ungetmouse (ref MouseEvent ev) => methods.ungetmouse (ref ev);
static public int mouseinterval (int interval) => methods.mouseinterval (interval);
static public bool is_term_resized (int lines, int columns) => methods.is_term_resized (lines, columns);
static public int resize_term (int lines, int columns) => methods.resize_term (lines, columns);
static public int resizeterm (int lines, int columns) => methods.resizeterm (lines, columns);
static public void use_env (bool f) => methods.use_env (f);
static public int flushinp () => methods.flushinp ();
static public int def_prog_mode () => methods.def_prog_mode ();
static public int def_shell_mode () => methods.def_shell_mode ();
static public int reset_prog_mode () => methods.reset_prog_mode ();
static public int reset_shell_mode () => methods.reset_shell_mode ();
static public int savetty () => methods.savetty ();
static public int resetty () => methods.resetty ();
static public int set_escdelay (int size) => methods.set_escdelay (size);
}
#pragma warning disable RCS1102 // Make class static.'
internal class Delegates {
#pragma warning restore RCS1102 // Make class static.
#pragma warning disable CS8981 // The type name only contains lower-cased ascii characters. Such names may become reserved for the language.
public delegate IntPtr initscr ();
public delegate int endwin ();
public delegate bool isendwin ();
public delegate int cbreak ();
public delegate int nocbreak ();
public delegate int echo ();
public delegate int noecho ();
public delegate int halfdelay (int t);
public delegate int raw ();
public delegate int noraw ();
public delegate void noqiflush ();
public delegate void qiflush ();
public delegate int typeahead (IntPtr fd);
public delegate int timeout (int delay);
public delegate int wtimeout (IntPtr win, int delay);
public delegate int notimeout (IntPtr win, bool bf);
public delegate int keypad (IntPtr win, bool bf);
public delegate int meta (IntPtr win, bool bf);
public delegate int intrflush (IntPtr win, bool bf);
public delegate int clearok (IntPtr win, bool bf);
public delegate int idlok (IntPtr win, bool bf);
public delegate void idcok (IntPtr win, bool bf);
public delegate void immedok (IntPtr win, bool bf);
public delegate int leaveok (IntPtr win, bool bf);
public delegate int wsetscrreg (IntPtr win, int top, int bot);
public delegate int scrollok (IntPtr win, bool bf);
public delegate int nl ();
public delegate int nonl ();
public delegate int setscrreg (int top, int bot);
public delegate int refresh ();
public delegate int doupdate ();
public delegate int wrefresh (IntPtr win);
public delegate int redrawwin (IntPtr win);
//public delegate int wredrawwin (IntPtr win, int beg_line, int num_lines);
public delegate int wnoutrefresh (IntPtr win);
public delegate int move (int line, int col);
public delegate int curs_set (int visibility);
public delegate int addch (int ch);
public delegate int echochar (int ch);
public delegate int mvaddch (int y, int x, int ch);
public delegate int addwstr ([MarshalAs (UnmanagedType.LPWStr)] string s);
public delegate int mvaddwstr (int y, int x, [MarshalAs (UnmanagedType.LPWStr)] string s);
public delegate int wmove (IntPtr win, int line, int col);
public delegate int waddch (IntPtr win, int ch);
public delegate int attron (int attrs);
public delegate int attroff (int attrs);
public delegate int attrset (int attrs);
public delegate int getch ();
public delegate int get_wch (out int sequence);
public delegate int ungetch (int ch);
public delegate int mvgetch (int y, int x);
public delegate bool has_colors ();
public delegate int start_color ();
public delegate int init_pair (short pair, short f, short b);
public delegate int use_default_colors ();
public delegate int COLOR_PAIRS ();
public delegate uint getmouse (out Curses.MouseEvent ev);
public delegate uint ungetmouse (ref Curses.MouseEvent ev);
public delegate int mouseinterval (int interval);
public delegate IntPtr mousemask (IntPtr newmask, out IntPtr oldMask);
public delegate bool is_term_resized (int lines, int columns);
public delegate int resize_term (int lines, int columns);
public delegate int resizeterm (int lines, int columns);
public delegate void use_env (bool f);
public delegate int flushinp ();
public delegate int def_prog_mode ();
public delegate int def_shell_mode ();
public delegate int reset_prog_mode ();
public delegate int reset_shell_mode ();
public delegate int savetty ();
public delegate int resetty ();
public delegate int set_escdelay (int size);
public delegate IntPtr curses_version ();
}
internal class NativeMethods {
public readonly Delegates.initscr initscr;
public readonly Delegates.endwin endwin;
public readonly Delegates.isendwin isendwin;
public readonly Delegates.cbreak cbreak;
public readonly Delegates.nocbreak nocbreak;
public readonly Delegates.echo echo;
public readonly Delegates.noecho noecho;
public readonly Delegates.halfdelay halfdelay;
public readonly Delegates.raw raw;
public readonly Delegates.noraw noraw;
public readonly Delegates.noqiflush noqiflush;
public readonly Delegates.qiflush qiflush;
public readonly Delegates.typeahead typeahead;
public readonly Delegates.timeout timeout;
public readonly Delegates.wtimeout wtimeout;
public readonly Delegates.notimeout notimeout;
public readonly Delegates.keypad keypad;
public readonly Delegates.meta meta;
public readonly Delegates.intrflush intrflush;
public readonly Delegates.clearok clearok;
public readonly Delegates.idlok idlok;
public readonly Delegates.idcok idcok;
public readonly Delegates.immedok immedok;
public readonly Delegates.leaveok leaveok;
public readonly Delegates.wsetscrreg wsetscrreg;
public readonly Delegates.scrollok scrollok;
public readonly Delegates.nl nl;
public readonly Delegates.nonl nonl;
public readonly Delegates.setscrreg setscrreg;
public readonly Delegates.refresh refresh;
public readonly Delegates.doupdate doupdate;
public readonly Delegates.wrefresh wrefresh;
public readonly Delegates.redrawwin redrawwin;
//public readonly Delegates.wredrawwin wredrawwin;
public readonly Delegates.wnoutrefresh wnoutrefresh;
public readonly Delegates.move move;
public readonly Delegates.curs_set curs_set;
public readonly Delegates.addch addch;
public readonly Delegates.echochar echochar;
public readonly Delegates.mvaddch mvaddch;
public readonly Delegates.addwstr addwstr;
public readonly Delegates.mvaddwstr mvaddwstr;
public readonly Delegates.wmove wmove;
public readonly Delegates.waddch waddch;
//public readonly Delegates.wechochar wechochar;
public readonly Delegates.attron attron;
public readonly Delegates.attroff attroff;
public readonly Delegates.attrset attrset;
public readonly Delegates.getch getch;
public readonly Delegates.get_wch get_wch;
public readonly Delegates.ungetch ungetch;
public readonly Delegates.mvgetch mvgetch;
public readonly Delegates.has_colors has_colors;
public readonly Delegates.start_color start_color;
public readonly Delegates.init_pair init_pair;
public readonly Delegates.use_default_colors use_default_colors;
public readonly Delegates.COLOR_PAIRS COLOR_PAIRS;
public readonly Delegates.getmouse getmouse;
public readonly Delegates.ungetmouse ungetmouse;
public readonly Delegates.mouseinterval mouseinterval;
public readonly Delegates.mousemask mousemask;
public readonly Delegates.is_term_resized is_term_resized;
public readonly Delegates.resize_term resize_term;
public readonly Delegates.resizeterm resizeterm;
public readonly Delegates.use_env use_env;
public readonly Delegates.flushinp flushinp;
public readonly Delegates.def_prog_mode def_prog_mode;
public readonly Delegates.def_shell_mode def_shell_mode;
public readonly Delegates.reset_prog_mode reset_prog_mode;
public readonly Delegates.reset_shell_mode reset_shell_mode;
public readonly Delegates.savetty savetty;
public readonly Delegates.resetty resetty;
public readonly Delegates.set_escdelay set_escdelay;
public readonly Delegates.curses_version curses_version;
public UnmanagedLibrary UnmanagedLibrary;
public NativeMethods (UnmanagedLibrary lib)
{
this.UnmanagedLibrary = lib;
initscr = lib.GetNativeMethodDelegate ("initscr");
endwin = lib.GetNativeMethodDelegate ("endwin");
isendwin = lib.GetNativeMethodDelegate ("isendwin");
cbreak = lib.GetNativeMethodDelegate ("cbreak");
nocbreak = lib.GetNativeMethodDelegate ("nocbreak");
echo = lib.GetNativeMethodDelegate ("echo");
noecho = lib.GetNativeMethodDelegate ("noecho");
halfdelay = lib.GetNativeMethodDelegate ("halfdelay");
raw = lib.GetNativeMethodDelegate ("raw");
noraw = lib.GetNativeMethodDelegate ("noraw");
noqiflush = lib.GetNativeMethodDelegate ("noqiflush");
qiflush = lib.GetNativeMethodDelegate ("qiflush");
typeahead = lib.GetNativeMethodDelegate ("typeahead");
timeout = lib.GetNativeMethodDelegate ("timeout");
wtimeout = lib.GetNativeMethodDelegate ("wtimeout");
notimeout = lib.GetNativeMethodDelegate ("notimeout");
keypad = lib.GetNativeMethodDelegate ("keypad");
meta = lib.GetNativeMethodDelegate ("meta");
intrflush = lib.GetNativeMethodDelegate ("intrflush");
clearok = lib.GetNativeMethodDelegate ("clearok");
idlok = lib.GetNativeMethodDelegate ("idlok");
idcok = lib.GetNativeMethodDelegate ("idcok");
immedok = lib.GetNativeMethodDelegate ("immedok");
leaveok = lib.GetNativeMethodDelegate ("leaveok");
wsetscrreg = lib.GetNativeMethodDelegate ("wsetscrreg");
scrollok = lib.GetNativeMethodDelegate ("scrollok");
nl = lib.GetNativeMethodDelegate ("nl");
nonl = lib.GetNativeMethodDelegate ("nonl");
setscrreg = lib.GetNativeMethodDelegate ("setscrreg");
refresh = lib.GetNativeMethodDelegate ("refresh");
doupdate = lib.GetNativeMethodDelegate ("doupdate");
wrefresh = lib.GetNativeMethodDelegate ("wrefresh");
redrawwin = lib.GetNativeMethodDelegate ("redrawwin");
//wredrawwin = lib.GetNativeMethodDelegate ("wredrawwin");
wnoutrefresh = lib.GetNativeMethodDelegate ("wnoutrefresh");
move = lib.GetNativeMethodDelegate ("move");
curs_set = lib.GetNativeMethodDelegate ("curs_set");
addch = lib.GetNativeMethodDelegate ("addch");
echochar = lib.GetNativeMethodDelegate ("echochar");
mvaddch = lib.GetNativeMethodDelegate ("mvaddch");
addwstr = lib.GetNativeMethodDelegate ("addwstr");
mvaddwstr = lib.GetNativeMethodDelegate ("mvaddwstr");
wmove = lib.GetNativeMethodDelegate ("wmove");
waddch = lib.GetNativeMethodDelegate ("waddch");
attron = lib.GetNativeMethodDelegate ("attron");
attroff = lib.GetNativeMethodDelegate ("attroff");
attrset = lib.GetNativeMethodDelegate ("attrset");
getch = lib.GetNativeMethodDelegate ("getch");
get_wch = lib.GetNativeMethodDelegate ("get_wch");
ungetch = lib.GetNativeMethodDelegate ("ungetch");
mvgetch = lib.GetNativeMethodDelegate ("mvgetch");
has_colors = lib.GetNativeMethodDelegate ("has_colors");
start_color = lib.GetNativeMethodDelegate ("start_color");
init_pair = lib.GetNativeMethodDelegate ("init_pair");
use_default_colors = lib.GetNativeMethodDelegate ("use_default_colors");
COLOR_PAIRS = lib.GetNativeMethodDelegate ("COLOR_PAIRS");
getmouse = lib.GetNativeMethodDelegate ("getmouse");
ungetmouse = lib.GetNativeMethodDelegate ("ungetmouse");
mouseinterval = lib.GetNativeMethodDelegate ("mouseinterval");
mousemask = lib.GetNativeMethodDelegate ("mousemask");
is_term_resized = lib.GetNativeMethodDelegate ("is_term_resized");
resize_term = lib.GetNativeMethodDelegate ("resize_term");
resizeterm = lib.GetNativeMethodDelegate ("resizeterm");
use_env = lib.GetNativeMethodDelegate ("use_env");
flushinp = lib.GetNativeMethodDelegate ("flushinp");
def_prog_mode = lib.GetNativeMethodDelegate ("def_prog_mode");
def_shell_mode = lib.GetNativeMethodDelegate ("def_shell_mode");
reset_prog_mode = lib.GetNativeMethodDelegate ("reset_prog_mode");
reset_shell_mode = lib.GetNativeMethodDelegate ("reset_shell_mode");
savetty = lib.GetNativeMethodDelegate ("savetty");
resetty = lib.GetNativeMethodDelegate ("resetty");
set_escdelay = lib.GetNativeMethodDelegate ("set_escdelay");
curses_version = lib.GetNativeMethodDelegate ("curses_version");
}
}
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member
#pragma warning restore CS8981 // The type name only contains lower-cased ascii characters. Such names may become reserved for the language.
}