summaryrefslogtreecommitdiff
path: root/firmware/test/fat
diff options
context:
space:
mode:
authorAlan Korr <alkorr@rockbox.org>2002-04-16 18:49:03 +0000
committerAlan Korr <alkorr@rockbox.org>2002-04-16 18:49:03 +0000
commit41e6d5f98ab1bfd87be4424003aa94397748cc42 (patch)
tree61df894b3544388019bbbf52ffb811b6b49eeee0 /firmware/test/fat
parent7dc59cffd501996e44659739340652692f0780db (diff)
downloadrockbox-41e6d5f98ab1bfd87be4424003aa94397748cc42.tar.gz
rockbox-41e6d5f98ab1bfd87be4424003aa94397748cc42.zip
module fat and templates : just added templates files.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@108 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/test/fat')
-rw-r--r--firmware/test/fat/config.h26
-rw-r--r--firmware/test/fat/defines.h24
-rw-r--r--firmware/test/fat/fat.h27
-rw-r--r--firmware/test/fat/functions.h26
-rw-r--r--firmware/test/fat/inlines.h26
-rw-r--r--firmware/test/fat/makefile23
-rw-r--r--firmware/test/fat/return_values.h24
-rw-r--r--firmware/test/fat/types.h24
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 0000000000..19777df743
--- /dev/null
+++ b/firmware/test/fat/config.h
@@ -0,0 +1,26 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id:
9 *
10 * Copyright (C) 2002 by Alan Korr
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19#ifndef __LIBRARY_FAT_H__
20# error "This header file must be included ONLY from fat.h."
21#endif
22#ifndef __LIBRARY_FAT_CONFIG_H__
23# define __LIBRARY_FAT_CONFIG_H__
24# define PACKAGE_NAME "fat"
25# define PACKAGE_VERSION "0.0.0"
26#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 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id:
9 *
10 * Copyright (C) 2002 by Alan Korr
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19#ifndef __LIBRARY_FAT_H__
20# error "This header file must be included ONLY from fat.h."
21#endif
22#ifndef __LIBRARY_FAT_DEFINES_H__
23# define __LIBRARY_FAT_DEFINES_H__
24#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 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 by Alan Korr
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19#ifndef __LIBRARY_FAT_H__
20# define __LIBRARY_FAT_H__
21# include <fat/config.h>
22# include <fat/defines.h>
23# include <fat/types.h>
24# include <fat/return_values.h>
25# include <fat/inlines.h>
26# include <fat/functions.h>
27#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 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 by Alan Korr
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19#ifndef __LIBRARY_FAT_H__
20# error "This header file must be included ONLY from fat.h."
21#endif
22# ifndef __LIBRARY_FAT_FUNCTIONS_H__
23# define __LIBRARY_FAT_FUNCTIONS_H__
24# ifdef TEST
25# endif
26#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 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id:
9 *
10 * Copyright (C) 2002 by Alan Korr
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19#ifndef __LIBRARY_FAT_H__
20# error "This header file must be included ONLY from fat.h."
21#endif
22# ifndef __LIBRARY_FAT_INLINES_H__
23#define __LIBRARY_FAT_INLINES_H__
24
25
26#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 @@
1#############################################################################
2## __________ __ ___.
3## Open \______ \ ____ ____ | | _\_ |__ _______ ___
4## Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5## Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6## Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7## \/ \/ \/ \/ \/
8## Copyright Alan Korr, 2002. All rights reserved.
9##
10## Permission to use, copy, modify, and distribute this software for any
11## purpose is hereby granted without fee, provided that this copyright and
12## permissions notice appear in all copies and derivatives, and that no
13## charge may be made for the software and its documentation except to cover
14## cost of distribution.
15##
16## This software is provided "as is" without express or implied warranty.
17#############################################################################
18ARCH = test
19PACKAGE = fat
20VERSION = 0.0.0
21-include ../makefile-vars
22-include ../makefile-rules
23
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 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id:
9 *
10 * Copyright (C) 2002 by Alan Korr
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19#ifndef __LIBRARY_FAT_H__
20# error "This header file must be included ONLY from fat.h."
21#endif
22#ifndef __LIBRARY_FAT_RETURN_VALUES_H__
23# define __LIBRARY_FAT_RETURN_VALUES_H__
24#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 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id:
9 *
10 * Copyright (C) 2002 by Alan Korr
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19#ifndef __LIBRARY_FAT_H__
20# error "This header file must be included ONLY from fat.h."
21#endif
22#ifndef __LIBRARY_FAT_TYPES_H__
23# define __LIBRARY_FAT_TYPES_H__
24#endif \ No newline at end of file