📄 romfs.h
字号:
/**
* \addtogroup httpd
* @{
*/
/**
* \file romfs.h
* \brief Header File for ROM File System.
*/
#ifndef _ROMFS_H_
#define _ROMFS_H_
/*
* Copyright (C) 2001-2002 by egnite Software GmbH. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this
* software must display the following acknowledgement:
*
* This product includes software developed by egnite Software GmbH
* and its contributors.
*
* THIS SOFTWARE IS PROVIDED BY EGNITE SOFTWARE GMBH AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL EGNITE
* SOFTWARE GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* For additional information see http://www.ethernut.de/
*/
/*
* $Log: /T4/FS8610ESW_New/include/app/romfs.h $
*
* 4 07-03-08 15:17 Glyin
*
* 2 06-12-16 16:09 Lshen
* Merge "module_config.h" into "user_config.h"
*
* 1 06-12-15 10:51 Jgao
*
* 1 06-12-15 10:49 Jgao
*
* 1 06-12-04 11:38 Lshen
* FASP-8610 ESW Project
*
* 4 06-04-26 14:38 Xfrui
*
* 3 06-04-25 11:34 Lshen
* Using module configuration to include/exclude module
*
* 2 06-04-25 9:27 Xfrui
*
* 1 06-03-30 11:42 Xfrui
* Revision 1.5 2002/07/03 16:45:40 harald
* Using GCC 3.2
*
* Revision 1.4 2002/06/26 17:29:17 harald
* First pre-release with 2.4 stack
*
*/
#include "user_config.h"
#include "kernel/system.h"
#if INCLUDE_WEB_SERVER
typedef struct _ROMFILE ROMFILE;
/** The ROM File structure defination. */
struct _ROMFILE {
ROMFILE *romfl_next; /**< Link to next ROMFILE structure. */
UINT8 code *romfl_name; /**< Filename */
UINT16 romfl_size; /**< File size. */
UINT8 *romfl_data; /**< Pointer to File contents. */
};
extern ROMFILE* romfs_list; /**< Entry for ROM file list. */
#endif /* INCLUDE_WEB_SERVER */
#endif /* _ROMFS_H_ */
/** @} */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -