aboutsummaryrefslogtreecommitdiff
path: root/libmpio/defs.h
diff options
context:
space:
mode:
authorgermeier <germeier>2002-09-24 15:38:03 +0000
committergermeier <germeier>2002-09-24 15:38:03 +0000
commitd9ec7993f9705a100043fc890eaa050bcba05349 (patch)
treeb90d070abdf68018624f459cc602ad354bc7eb6e /libmpio/defs.h
parent0606ee0c8abd344763d6fa46519e8f6db485538e (diff)
downloadmpiosh-d9ec7993f9705a100043fc890eaa050bcba05349.tar.gz
mpiosh-d9ec7993f9705a100043fc890eaa050bcba05349.tar.bz2
mpiosh-d9ec7993f9705a100043fc890eaa050bcba05349.zip
fixed issues with 8.3 names in directory.c
actually use mpio_filetype_t to tag files during writing of internal memory writing of Config.dat does work now (though it needs some code in mpiosh)
Diffstat (limited to 'libmpio/defs.h')
-rw-r--r--libmpio/defs.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/libmpio/defs.h b/libmpio/defs.h
index a6422cd..68a87ca 100644
--- a/libmpio/defs.h
+++ b/libmpio/defs.h
@@ -1,7 +1,7 @@
/* -*- linux-c -*- */
/*
- * $Id: defs.h,v 1.9 2002/09/23 22:38:03 germeier Exp $
+ * $Id: defs.h,v 1.10 2002/09/24 15:38:03 germeier Exp $
*
* Library for USB MPIO-*
*
@@ -59,12 +59,13 @@ typedef enum { GET_VERSION = 0x01,
/* file types on internal memory */
/* found in the code of salmoon, are these needed? -mager */
-typedef enum { FTYPE_CONF = 'C',
+typedef enum { FTYPE_MUSIC = 0x01,
+ FTYPE_CONF = 'C',
FTYPE_FONT = 'F',
FTYPE_OTHER = 'H',
FTYPE_MEMO = 'M',
FTYPE_WAV = 'V',
- FTYPE_ENTRY = 'R' } mpio_file_t;
+ FTYPE_ENTRY = 'R' } mpio_filetype_t;
/* type of callback functions */
typedef BYTE (*mpio_callback_t)(int, int) ;