From 41e6d5f98ab1bfd87be4424003aa94397748cc42 Mon Sep 17 00:00:00 2001 From: Alan Korr Date: Tue, 16 Apr 2002 18:49:03 +0000 Subject: module fat and templates : just added templates files. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@108 a1c6a512-1295-4272-9138-f99709370657 --- firmware/test/fat/config.h | 26 ++++++++++++++++++++++++++ firmware/test/fat/defines.h | 24 ++++++++++++++++++++++++ firmware/test/fat/fat.h | 27 +++++++++++++++++++++++++++ firmware/test/fat/functions.h | 26 ++++++++++++++++++++++++++ firmware/test/fat/inlines.h | 26 ++++++++++++++++++++++++++ firmware/test/fat/makefile | 23 +++++++++++++++++++++++ firmware/test/fat/return_values.h | 24 ++++++++++++++++++++++++ firmware/test/fat/types.h | 24 ++++++++++++++++++++++++ 8 files changed, 200 insertions(+) create mode 100644 firmware/test/fat/config.h create mode 100644 firmware/test/fat/defines.h create mode 100644 firmware/test/fat/fat.h create mode 100644 firmware/test/fat/functions.h create mode 100644 firmware/test/fat/inlines.h create mode 100644 firmware/test/fat/makefile create mode 100644 firmware/test/fat/return_values.h create mode 100644 firmware/test/fat/types.h (limited to 'firmware') diff --git a/firmware/test/fat/config.h b/firmware/test/fat/config.h new file mode 100644 index 0000000000..19777df743 --- /dev/null +++ b/firmware/test/fat/config.h @@ -0,0 +1,26 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id: + * + * Copyright (C) 2002 by Alan Korr + * + * All files in this archive are subject to the GNU General Public License. + * See the file COPYING in the source tree root for full license agreement. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ +#ifndef __LIBRARY_FAT_H__ +# error "This header file must be included ONLY from fat.h." +#endif +#ifndef __LIBRARY_FAT_CONFIG_H__ +# define __LIBRARY_FAT_CONFIG_H__ +# define PACKAGE_NAME "fat" +# define PACKAGE_VERSION "0.0.0" +#endif \ No newline at end of file diff --git a/firmware/test/fat/defines.h b/firmware/test/fat/defines.h new file mode 100644 index 0000000000..c1b824b61c --- /dev/null +++ b/firmware/test/fat/defines.h @@ -0,0 +1,24 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id: + * + * Copyright (C) 2002 by Alan Korr + * + * All files in this archive are subject to the GNU General Public License. + * See the file COPYING in the source tree root for full license agreement. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ +#ifndef __LIBRARY_FAT_H__ +# error "This header file must be included ONLY from fat.h." +#endif +#ifndef __LIBRARY_FAT_DEFINES_H__ +# define __LIBRARY_FAT_DEFINES_H__ +#endif \ No newline at end of file diff --git a/firmware/test/fat/fat.h b/firmware/test/fat/fat.h new file mode 100644 index 0000000000..e840f3f862 --- /dev/null +++ b/firmware/test/fat/fat.h @@ -0,0 +1,27 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2002 by Alan Korr + * + * All files in this archive are subject to the GNU General Public License. + * See the file COPYING in the source tree root for full license agreement. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ +#ifndef __LIBRARY_FAT_H__ +# define __LIBRARY_FAT_H__ +# include +# include +# include +# include +# include +# include +#endif diff --git a/firmware/test/fat/functions.h b/firmware/test/fat/functions.h new file mode 100644 index 0000000000..5e8ff24149 --- /dev/null +++ b/firmware/test/fat/functions.h @@ -0,0 +1,26 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2002 by Alan Korr + * + * All files in this archive are subject to the GNU General Public License. + * See the file COPYING in the source tree root for full license agreement. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ +#ifndef __LIBRARY_FAT_H__ +# error "This header file must be included ONLY from fat.h." +#endif +# ifndef __LIBRARY_FAT_FUNCTIONS_H__ +# define __LIBRARY_FAT_FUNCTIONS_H__ +# ifdef TEST +# endif +#endif diff --git a/firmware/test/fat/inlines.h b/firmware/test/fat/inlines.h new file mode 100644 index 0000000000..02242bb4cb --- /dev/null +++ b/firmware/test/fat/inlines.h @@ -0,0 +1,26 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id: + * + * Copyright (C) 2002 by Alan Korr + * + * All files in this archive are subject to the GNU General Public License. + * See the file COPYING in the source tree root for full license agreement. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ +#ifndef __LIBRARY_FAT_H__ +# error "This header file must be included ONLY from fat.h." +#endif +# ifndef __LIBRARY_FAT_INLINES_H__ +#define __LIBRARY_FAT_INLINES_H__ + + +#endif \ No newline at end of file diff --git a/firmware/test/fat/makefile b/firmware/test/fat/makefile new file mode 100644 index 0000000000..90a8964d40 --- /dev/null +++ b/firmware/test/fat/makefile @@ -0,0 +1,23 @@ +############################################################################# +## __________ __ ___. +## Open \______ \ ____ ____ | | _\_ |__ _______ ___ +## Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / +## Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < +## Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ +## \/ \/ \/ \/ \/ +## Copyright Alan Korr, 2002. All rights reserved. +## +## Permission to use, copy, modify, and distribute this software for any +## purpose is hereby granted without fee, provided that this copyright and +## permissions notice appear in all copies and derivatives, and that no +## charge may be made for the software and its documentation except to cover +## cost of distribution. +## +## This software is provided "as is" without express or implied warranty. +############################################################################# +ARCH = test +PACKAGE = fat +VERSION = 0.0.0 +-include ../makefile-vars +-include ../makefile-rules + diff --git a/firmware/test/fat/return_values.h b/firmware/test/fat/return_values.h new file mode 100644 index 0000000000..114a0abb5f --- /dev/null +++ b/firmware/test/fat/return_values.h @@ -0,0 +1,24 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id: + * + * Copyright (C) 2002 by Alan Korr + * + * All files in this archive are subject to the GNU General Public License. + * See the file COPYING in the source tree root for full license agreement. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ +#ifndef __LIBRARY_FAT_H__ +# error "This header file must be included ONLY from fat.h." +#endif +#ifndef __LIBRARY_FAT_RETURN_VALUES_H__ +# define __LIBRARY_FAT_RETURN_VALUES_H__ +#endif \ No newline at end of file diff --git a/firmware/test/fat/types.h b/firmware/test/fat/types.h new file mode 100644 index 0000000000..3a84aa3e97 --- /dev/null +++ b/firmware/test/fat/types.h @@ -0,0 +1,24 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id: + * + * Copyright (C) 2002 by Alan Korr + * + * All files in this archive are subject to the GNU General Public License. + * See the file COPYING in the source tree root for full license agreement. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ +#ifndef __LIBRARY_FAT_H__ +# error "This header file must be included ONLY from fat.h." +#endif +#ifndef __LIBRARY_FAT_TYPES_H__ +# define __LIBRARY_FAT_TYPES_H__ +#endif \ No newline at end of file -- cgit v1.2.3