diff options
| author | Alan Korr <alkorr@rockbox.org> | 2002-04-16 18:49:03 +0000 |
|---|---|---|
| committer | Alan Korr <alkorr@rockbox.org> | 2002-04-16 18:49:03 +0000 |
| commit | 41e6d5f98ab1bfd87be4424003aa94397748cc42 (patch) | |
| tree | 61df894b3544388019bbbf52ffb811b6b49eeee0 | |
| parent | 7dc59cffd501996e44659739340652692f0780db (diff) | |
| download | rockbox-41e6d5f98ab1bfd87be4424003aa94397748cc42.zip rockbox-41e6d5f98ab1bfd87be4424003aa94397748cc42.tar.gz rockbox-41e6d5f98ab1bfd87be4424003aa94397748cc42.tar.bz2 rockbox-41e6d5f98ab1bfd87be4424003aa94397748cc42.tar.xz | |
module fat and templates : just added templates files.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@108 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/test/fat/config.h | 26 | ||||
| -rw-r--r-- | firmware/test/fat/defines.h | 24 | ||||
| -rw-r--r-- | firmware/test/fat/fat.h | 27 | ||||
| -rw-r--r-- | firmware/test/fat/functions.h | 26 | ||||
| -rw-r--r-- | firmware/test/fat/inlines.h | 26 | ||||
| -rw-r--r-- | firmware/test/fat/makefile | 23 | ||||
| -rw-r--r-- | firmware/test/fat/return_values.h | 24 | ||||
| -rw-r--r-- | firmware/test/fat/types.h | 24 |
8 files changed, 200 insertions, 0 deletions
diff --git a/firmware/test/fat/config.h b/firmware/test/fat/config.h new file mode 100644 index 0000000..19777df --- /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 0000000..c1b824b --- /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 0000000..e840f3f --- /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 <fat/config.h> +# include <fat/defines.h> +# include <fat/types.h> +# include <fat/return_values.h> +# include <fat/inlines.h> +# include <fat/functions.h> +#endif diff --git a/firmware/test/fat/functions.h b/firmware/test/fat/functions.h new file mode 100644 index 0000000..5e8ff24 --- /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 0000000..02242bb --- /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 0000000..90a8964 --- /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 0000000..114a0ab --- /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 0000000..3a84aa3 --- /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 |