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

📄 vfsport.h

📁 在ARM7和UC/OSII的平台上实现了GPS自动报站的功能,涉及GPS模块LEA_4S的驱动,位置速寻算法,语音芯片ISD4004的录放音驱动,LED页面管理等等.从启动代码到操作系统的移植以及到业
💻 H
字号:
/*
 * FILENAME: vfsport.h
 *
 * Copyright 1997- 2000 By InterNiche Technologies Inc. All rights reserved
 *
 *
 * MODULE: VFS
 *
 *
 * PORTABLE: no
 */

/* Additional Copyrights: */

/* vfsport.h 
 * Portions Copyright 1996 by NetPort Software. All rights reserved. 
 */

#ifndef _VFSPORT_H_
#define  _VFSPORT_H_    1

#include "ipport.h"
#include "libport.h"
#include "vfsfiles.h"

/* the web server still makes heaviest use of the vfs. Includes it's
vfs setup here:*/
#ifdef WEBPORT
#include "webport.h"
#endif

/* Virtual File System related non-volatile parameters. Please see nvparms.h 
 * and nvparms.c regarding the usage of the following structure.
 */
#ifdef INCLUDE_NVPARMS
struct vfs_nvparam
{
   char     httppath[HTPATHMAX]; /* root path of http vfs files */
};

extern struct vfs_nvparam vfs_nvparms;
#endif   /* INCLUDE_NVPARMS */

#endif   /* _VFSPORT_H_ */

⌨️ 快捷键说明

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