⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 init.h

📁 Mrxvt是一个小巧
💻 H
字号:
/*--------------------------------*-H-*---------------------------------* * File:	init.h *----------------------------------------------------------------------* * * All portions of code are copyright by their respective author/s. * Copyright (c) 1997-2001   Geoff Wing <gcw@pobox.com> * Copyright (c) 2004        Jingmin Zhou <jimmyzhou@users.sourceforge.net> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *----------------------------------------------------------------------*/#ifndef __INIT_H__#define __INIT_H__/* ways to deal with getting/setting termios structure */#ifdef HAVE_TERMIOS_H/* termios interface */# ifdef TCSANOW			/* POSIX */#  define GET_TERMIOS(fd,tios)	tcgetattr (fd, tios)#  define SET_TERMIOS(fd,tios)		\	cfsetospeed (tios, BAUDRATE),	\	cfsetispeed (tios, BAUDRATE),	\	tcsetattr (fd, TCSANOW, tios)# else#  ifdef TIOCSETA#   define GET_TERMIOS(fd,tios)	ioctl (fd, TIOCGETA, tios)#   define SET_TERMIOS(fd,tios)		\	tios->c_cflag |= BAUDRATE,	\	ioctl (fd, TIOCSETA, tios)#  else#   define GET_TERMIOS(fd,tios)	ioctl (fd, TCGETS, tios)#   define SET_TERMIOS(fd,tios)		\	tios->c_cflag |= BAUDRATE,	\	ioctl (fd, TCSETS, tios)#  endif# endif# define SET_TTYMODE(fd,tios)		SET_TERMIOS (fd, tios)#else/* sgtty interface */# define SET_TTYMODE(fd,tt)				\	tt->sg.sg_ispeed = tt->sg.sg_ospeed = BAUDRATE,	\	ioctl (fd, TIOCSETP, &(tt->sg)),		\	ioctl (fd, TIOCSETC, &(tt->tc)),		\	ioctl (fd, TIOCSLTC, &(tt->lc)),		\	ioctl (fd, TIOCSETD, &(tt->line)),		\	ioctl (fd, TIOCLSET, &(tt->local))#endif				/* HAVE_TERMIOS_H *//* use the fastest baud-rate */#ifdef B38400# define BAUDRATE	B38400#else# ifdef B19200#  define BAUDRATE	B19200# else#  define BAUDRATE	B9600# endif#endif/* Disable special character functions */#ifdef _POSIX_VDISABLE# define VDISABLE	_POSIX_VDISABLE#else# define VDISABLE	255#endif/*----------------------------------------------------------------------* * system default characters if defined and reasonable */#ifndef CINTR# define CINTR		'\003'	/* ^C */#endif#ifndef CQUIT# define CQUIT		'\034'	/* ^\ */#endif#ifndef CERASE# ifdef linux#  define CERASE	'\177'	/* ^? */# else#  define CERASE	'\010'	/* ^H */# endif#endif#ifndef CKILL# define CKILL		'\025'	/* ^U */#endif#ifndef CEOF# define CEOF		'\004'	/* ^D */#endif#ifndef CSTART# define CSTART		'\021'	/* ^Q */#endif#ifndef CSTOP# define CSTOP		'\023'	/* ^S */#endif#ifndef CSUSP# define CSUSP		'\032'	/* ^Z */#endif#ifndef CDSUSP# define CDSUSP		'\031'	/* ^Y */#endif#ifndef CRPRNT# define CRPRNT		'\022'	/* ^R */#endif#ifndef CFLUSH# define CFLUSH		'\017'	/* ^O */#endif#ifndef CWERASE# define CWERASE	'\027'	/* ^W */#endif#ifndef CLNEXT# define CLNEXT		'\026'	/* ^V */#endif#ifndef VDISCRD# ifdef VDISCARD#  define VDISCRD	VDISCARD# endif#endif#ifndef VWERSE# ifdef VWERASE#  define VWERSE	VWERASE# endif#endif#ifndef O_NOCTTY# define O_NOCTTY	0#endif#ifndef O_NDELAY# define O_NDELAY	O_NONBLOCK	/* QNX, at least */#endif#ifndef ONLCR# define ONLCR		0		/* QNX, at least */#endif#define CONSOLE		"/dev/console"	/* console device */#endif	/* __INIT_H__ *//*----------------------- end-of-file (H source) -----------------------*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -