summaryrefslogtreecommitdiffstats
path: root/ext/mikmod/mikmod_types.c
diff options
context:
space:
mode:
authorBenjamin Otte <otte@gnome.org>2002-04-06 18:14:31 +0000
committerBenjamin Otte <otte@gnome.org>2002-04-06 18:14:31 +0000
commit49794999b3296ce2fd9466cda5471f266787c197 (patch)
tree0a0867e91ae0eb83d48c4c791195bbc804478d21 /ext/mikmod/mikmod_types.c
parent31375b100c3037d0003282b944c918799ec26113 (diff)
fixed warnings in /ext added mikmod_types.h to get it done
Original commit message from CVS: fixed warnings in /ext added mikmod_types.h to get it done
Diffstat (limited to 'ext/mikmod/mikmod_types.c')
-rw-r--r--ext/mikmod/mikmod_types.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/ext/mikmod/mikmod_types.c b/ext/mikmod/mikmod_types.c
index c319cbb3..8c4045d8 100644
--- a/ext/mikmod/mikmod_types.c
+++ b/ext/mikmod/mikmod_types.c
@@ -18,6 +18,9 @@
*/
#include <gst/gst.h>
+#include "mikmod_types.h"
+#include <string.h> /* memcmp */
+#include <ctype.h> /* isdigit */
#define MODULEHEADERSIZE 0x438
@@ -140,15 +143,15 @@ gchar *data;
data = GST_BUFFER_DATA( buf );
if( ! memcmp( data, "IMPM", 4 ))
- return TRUE ;
+ return TRUE;
return FALSE;
}
gboolean M15_CheckType( GstBuffer *buf )
{
+ /* FIXME: M15 CheckType to do */
return FALSE;
-#warning M15 CheckType to do
}
gboolean Med_CheckType( GstBuffer *buf )