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

📄 files2.c

📁 μC/OSIIV2.5源代码
💻 C
字号:
/*-----------------------------------------------------------------------*
 * filename - files2.c
 *
 * function(s)
 *    none
 *----------------------------------------------------------------------*/

/*
 *      C/C++ Run Time Library - Version 5.0
 *
 *      Copyright (c) 1987, 1992 by Borland International
 *      All Rights Reserved.
 *
 */


#include <io.h>
#include <fcntl.h>
#include <_nfile.h>

unsigned _nfile = _NFILE_;

/*---------------------------------------------------------------------*

Name            _openfd

Usage           unsigned int _openfd[];

Prototype in    not prototyped.

Description     array of access modes for file/devices

*---------------------------------------------------------------------*/
unsigned int    _openfd[_NFILE_] =
{
    O_RDONLY | O_DEVICE | O_TEXT,
    O_WRONLY | O_DEVICE | O_TEXT,
    O_WRONLY | O_DEVICE | O_TEXT,
    O_RDWR   | O_DEVICE | O_BINARY,
    O_WRONLY | O_DEVICE | O_BINARY
};

⌨️ 快捷键说明

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