got rid of some warnings
git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1389 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
@@ -42,7 +42,7 @@ extern bool fileExists2(uio_DirHandle *dir, const char *fileName);
|
|||||||
|
|
||||||
static const char* bufa_GetName (void);
|
static const char* bufa_GetName (void);
|
||||||
static bool bufa_InitModule (int flags, const TFB_DecoderFormats*);
|
static bool bufa_InitModule (int flags, const TFB_DecoderFormats*);
|
||||||
static void bufa_TermModule ();
|
static void bufa_TermModule (void);
|
||||||
static uint32 bufa_GetStructSize (void);
|
static uint32 bufa_GetStructSize (void);
|
||||||
static int bufa_GetError (THIS_PTR);
|
static int bufa_GetError (THIS_PTR);
|
||||||
static bool bufa_Init (THIS_PTR);
|
static bool bufa_Init (THIS_PTR);
|
||||||
@@ -85,7 +85,7 @@ typedef struct tfb_bufsounddecoder
|
|||||||
|
|
||||||
static const char* nula_GetName (void);
|
static const char* nula_GetName (void);
|
||||||
static bool nula_InitModule (int flags, const TFB_DecoderFormats*);
|
static bool nula_InitModule (int flags, const TFB_DecoderFormats*);
|
||||||
static void nula_TermModule ();
|
static void nula_TermModule (void);
|
||||||
static uint32 nula_GetStructSize (void);
|
static uint32 nula_GetStructSize (void);
|
||||||
static int nula_GetError (THIS_PTR);
|
static int nula_GetError (THIS_PTR);
|
||||||
static bool nula_Init (THIS_PTR);
|
static bool nula_Init (THIS_PTR);
|
||||||
@@ -692,7 +692,7 @@ bufa_InitModule (int flags, const TFB_DecoderFormats* fmts)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
bufa_TermModule ()
|
bufa_TermModule (void)
|
||||||
{
|
{
|
||||||
// this should never be called
|
// this should never be called
|
||||||
fprintf (stderr, "bufa_TermModule(): dead function called\n");
|
fprintf (stderr, "bufa_TermModule(): dead function called\n");
|
||||||
@@ -820,7 +820,7 @@ nula_InitModule (int flags, const TFB_DecoderFormats* fmts)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
nula_TermModule ()
|
nula_TermModule (void)
|
||||||
{
|
{
|
||||||
// this should never be called
|
// this should never be called
|
||||||
fprintf (stderr, "nula_TermModule(): dead function called\n");
|
fprintf (stderr, "nula_TermModule(): dead function called\n");
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ typedef struct
|
|||||||
|
|
||||||
static const char* wava_GetName (void);
|
static const char* wava_GetName (void);
|
||||||
static bool wava_InitModule (int flags, const TFB_DecoderFormats*);
|
static bool wava_InitModule (int flags, const TFB_DecoderFormats*);
|
||||||
static void wava_TermModule ();
|
static void wava_TermModule (void);
|
||||||
static uint32 wava_GetStructSize (void);
|
static uint32 wava_GetStructSize (void);
|
||||||
static int wava_GetError (THIS_PTR);
|
static int wava_GetError (THIS_PTR);
|
||||||
static bool wava_Init (THIS_PTR);
|
static bool wava_Init (THIS_PTR);
|
||||||
@@ -123,7 +123,7 @@ wava_InitModule (int flags, const TFB_DecoderFormats* fmts)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
wava_TermModule ()
|
wava_TermModule (void)
|
||||||
{
|
{
|
||||||
// no specific module term
|
// no specific module term
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user