📄 xm-winnt.h
字号:
/* Configuration for GNU compiler for processor running Windows NT 3.x. Copyright (C) 1993, 1995, 1997, 1999 Free Software Foundation, Inc. Contributed by Douglas B. Rupp (drupp@cs.washington.edu)This file is part of GNU CC.GNU CC is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU CC is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU CC; see the file COPYING. If not, write tothe Free Software Foundation, 59 Temple Place - Suite 330,Boston, MA 02111-1307, USA. */#include <stdlib.h>#ifndef USG#define USG 1#endif#ifndef ONLY_INT_FIELD#define ONLY_INT_FIELDS 1#endif#ifndef USE_PROTOTYPES#define USE_PROTOTYPES 1#endif#ifndef HAVE_PUTENV#define HAVE_PUTENV 1#endif#ifndef HAVE_VPRINTF#define HAVE_VPRINTF 1#endif#define NO_SYS_SIGLIST 1#define kill(a,b) raise(b)#define OBJECT_SUFFIX ".obj"#define EXECUTABLE_SUFFIX ".exe"#define PATH_SEPARATOR ';'#define DIR_SEPARATOR '\\'#define DIR_SEPARATOR_2 '/'/* Allows checks for drive names. */#define HAVE_DOS_BASED_FILE_SYSTEM#define S_IRUSR 0000400#define S_IWUSR 0000200#define S_IXUSR 0000100#define S_IRGRP 0000040#define S_IWGRP 0000020#define S_IXGRP 0000010#define S_IROTH 0000004#define S_IWOTH 0000002#define S_IXOTH 0000001#define S_IRWXU S_IRUSR | S_IWUSR | S_IXUSR#define S_ISREG(m) (((m)&S_IFMT) == S_IFREG)#define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -